Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2006-01-05 | AIX compile fix for repo-config.c | Amos Waterland | 1 | -8/+8 | |
AIX 5 has a /usr/include/regex.h containing this code: #ifdef _NO_PROTO extern char *regex(); extern char *regcmp(); #else /* _NO_PROTO */ extern char *regex(const char *, const char *, ...); extern char *regcmp(const char *, ...); #endif /* _NO_PROTO */ This means that repo-config.c is trying to redefine the `regex' symbol. Here is a simple patch that just uses `regexp' as the symbol name instead. Signed-off-by: Amos Waterland <apw@us.ibm.com> Signed-off-by: Junio C Hamano <junkio@cox.net> | |||||
2005-11-24 | Rename git-config-set to git-repo-config | Johannes Schindelin | 1 | -0/+116 | |
... and adjust all references. Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de> Signed-off-by: Junio C Hamano <junkio@cox.net> |