diff options
author | Gary V. Vaughan <git@mlists.thewrittenword.com> | 2010-06-01 20:55:36 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-06-02 10:03:53 -0700 |
commit | 761a889a97a33d277f8a6607a4696164391f9d5d (patch) | |
tree | da804f30d6063b18d6a7cd81a9df8dd75160621b /git-compat-util.h | |
parent | 873c3472052e3d0385be4ece7b70cfdf573c051e (diff) | |
download | git-761a889a97a33d277f8a6607a4696164391f9d5d.tar.gz |
git-compat-util.h: use apparently more common __sgi macro to detect SGI IRIX
IRIX 6.5.26m does not define the 'sgi' macro, but it does define an '__sgi'
macro. Since later IRIX versions (6.5.29m) define both macros, and since
an underscore prefixed macro is preferred anyway, use '__sgi' to detect
compilation on SGI IRIX.
Signed-off-by: Brandon Casey <casey@nrlssc.navy.mil>
Signed-off-by: Gary V. Vaughan <gary@thewrittenword.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-compat-util.h')
-rw-r--r-- | git-compat-util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-compat-util.h b/git-compat-util.h index 7e62b55270..b96912b5d3 100644 --- a/git-compat-util.h +++ b/git-compat-util.h @@ -56,7 +56,7 @@ # define _XOPEN_SOURCE 500 # endif #elif !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__USLC__) && \ - !defined(_M_UNIX) && !defined(sgi) && !defined(__DragonFly__) + !defined(_M_UNIX) && !defined(__sgi) && !defined(__DragonFly__) #define _XOPEN_SOURCE 600 /* glibc2 and AIX 5.3L need 500, OpenBSD needs 600 for S_ISLNK() */ #define _XOPEN_SOURCE_EXTENDED 1 /* AIX 5.3L needs this */ #endif |