OSDN Git Service

Fix preprocessor logic that determines the availablity of strchrnul().
authorJohannes Sixt <j.sixt@viscovery.net>
Mon, 12 Nov 2007 10:09:05 +0000 (11:09 +0100)
committerJunio C Hamano <gitster@pobox.com>
Tue, 13 Nov 2007 02:16:34 +0000 (18:16 -0800)
Apart from the error in the condition (&& should actually be ||), the
construct

    #if !defined(A) || !A

leads to a syntax error in the C preprocessor if A is indeed not defined.

Tested-by: David Symonds <dsymonds@gmail.com>
Signed-off-by: Johannes Sixt <johannes.sixt@telecom.at>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-compat-util.h

index 92d7967..ede9408 100644 (file)
@@ -183,7 +183,13 @@ void *gitmemmem(const void *haystack, size_t haystacklen,
                 const void *needle, size_t needlelen);
 #endif
 
-#if !defined(__GLIBC_PREREQ) && !__GLIBC_PREREQ(2, 1)
+#ifdef __GLIBC_PREREQ
+#if __GLIBC_PREREQ(2, 1)
+#define HAVE_STRCHRNUL
+#endif
+#endif
+
+#ifndef HAVE_STRCHRNUL
 #define strchrnul gitstrchrnul
 static inline char *gitstrchrnul(const char *s, int c)
 {