Hi, On Fri, 9 Nov 2007, Ren? Scharfe wrote: > diff --git a/Makefile b/Makefile > index 0d5590f..578c999 100644 > --- a/Makefile > +++ b/Makefile > @@ -30,6 +30,8 @@ all:: > # > # Define NO_MEMMEM if you don't have memmem. > # > +# Define NO_STRCHRNUL if you don't have strchrnul. > +# > # Define NO_STRLCPY if you don't have strlcpy. > # > # Define NO_STRTOUMAX if you don't have strtoumax in the C library. > @@ -406,6 +408,7 @@ ifeq ($(uname_S),Darwin) > OLD_ICONV = UnfortunatelyYes > NO_STRLCPY = YesPlease > NO_MEMMEM = YesPlease > + NO_STRCHRNUL = YesPlease > endif > ifeq ($(uname_S),SunOS) > NEEDS_SOCKET = YesPlease > @@ -413,6 +416,7 @@ ifeq ($(uname_S),SunOS) > SHELL_PATH = /bin/bash > NO_STRCASESTR = YesPlease > NO_MEMMEM = YesPlease > + NO_STRCHRNUL = YesPlease > NO_HSTRERROR = YesPlease > ifeq ($(uname_R),5.8) > NEEDS_LIBICONV = YesPlease > @@ -438,6 +442,7 @@ ifeq ($(uname_O),Cygwin) > NO_D_INO_IN_DIRENT = YesPlease > NO_STRCASESTR = YesPlease > NO_MEMMEM = YesPlease > + NO_STRCHRNUL = YesPlease > NO_SYMLINK_HEAD = YesPlease > NEEDS_LIBICONV = YesPlease > NO_FAST_WORKING_DIRECTORY = UnfortunatelyYes > @@ -452,12 +457,14 @@ endif > ifeq ($(uname_S),FreeBSD) > NEEDS_LIBICONV = YesPlease > NO_MEMMEM = YesPlease > + NO_STRCHRNUL = YesPlease > BASIC_CFLAGS += -I/usr/local/include > BASIC_LDFLAGS += -L/usr/local/lib > endif > ifeq ($(uname_S),OpenBSD) > NO_STRCASESTR = YesPlease > NO_MEMMEM = YesPlease > + NO_STRCHRNUL = YesPlease > NEEDS_LIBICONV = YesPlease > BASIC_CFLAGS += -I/usr/local/include > BASIC_LDFLAGS += -L/usr/local/lib > @@ -473,6 +480,7 @@ endif > ifeq ($(uname_S),AIX) > NO_STRCASESTR=YesPlease > NO_MEMMEM = YesPlease > + NO_STRCHRNUL = YesPlease > NO_STRLCPY = YesPlease > NEEDS_LIBICONV=YesPlease > endif > @@ -485,6 +493,7 @@ ifeq ($(uname_S),IRIX64) > NO_SETENV=YesPlease > NO_STRCASESTR=YesPlease > NO_MEMMEM = YesPlease > + NO_STRCHRNUL = YesPlease > NO_STRLCPY = YesPlease > NO_SOCKADDR_STORAGE=YesPlease > SHELL_PATH=/usr/gnu/bin/bash Might be easier to define HAVE_STRCHRNUL ;-) > diff --git a/compat/strchrnul.c b/compat/strchrnul.c > new file mode 100644 > index 0000000..51839fe > --- /dev/null > +++ b/compat/strchrnul.c > @@ -0,0 +1,8 @@ > +#include "../git-compat-util.h" > + > +char *gitstrchrnul(const char *s, int c) > +{ > + while (*s && *s != c) > + s++; > + return (char *)s; > +} This is so short, I think it is even better to inline it. Ciao, Dscho - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html