From: Junio C Hamano Date: Sat, 23 Dec 2006 06:46:11 +0000 (-0800) Subject: Really fix headers for __FreeBSD__ X-Git-Tag: v1.5.0-rc0~34 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=95ca1c6cb76ae01528f70c5ed437a79887a60775;p=git-core%2Fgit.git Really fix headers for __FreeBSD__ The symbol to detect FreeBSD is __FreeBSD__, not __FreeBSD. Signed-off-by: Junio C Hamano --- diff --git a/git-compat-util.h b/git-compat-util.h index a55b92389..f79365b36 100644 --- a/git-compat-util.h +++ b/git-compat-util.h @@ -11,7 +11,7 @@ #define ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0])) -#if !defined(__APPLE__) && !defined(__FreeBSD) +#if !defined(__APPLE__) && !defined(__FreeBSD__) #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