summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 9ebfda1)
raw | patch | inline | side by side (parent: 9ebfda1)
author | Brandon Casey <drafnel@gmail.com> | |
Thu, 20 Aug 2009 01:27:08 +0000 (20:27 -0500) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Thu, 20 Aug 2009 04:04:56 +0000 (21:04 -0700) |
This 'ifndef' macro is entered only when __sun__ is not defined. This test
will never fail since it is located inside of the 'else' branch of an 'if'
macro which tests whether __sun__ is defined. It has had no effect since
the merge at 436f66b7.
Signed-off-by: Brandon Casey <casey@nrlssc.navy.mil>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
will never fail since it is located inside of the 'else' branch of an 'if'
macro which tests whether __sun__ is defined. It has had no effect since
the merge at 436f66b7.
Signed-off-by: Brandon Casey <casey@nrlssc.navy.mil>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-compat-util.h | patch | blob | history |
diff --git a/git-compat-util.h b/git-compat-util.h
index 9f941e42b16d927f738b4911b41344dd2f3ed0da..71b5acb6fa2a0de36325cb8c2c6d56b458dfc7e5 100644 (file)
--- a/git-compat-util.h
+++ b/git-compat-util.h
# endif
#elif !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__USLC__) && !defined(_M_UNIX) && !defined(sgi)
#define _XOPEN_SOURCE 600 /* glibc2 and AIX 5.3L need 500, OpenBSD needs 600 for S_ISLNK() */
-#ifndef __sun__
#define _XOPEN_SOURCE_EXTENDED 1 /* AIX 5.3L needs this */
#endif
-#endif
#define _ALL_SOURCE 1
#define _GNU_SOURCE 1
#define _BSD_SOURCE 1