Re: Compile fix for SCO OPenServer
From: Junio C Hamano <hidden>
Date: 2016-06-15 22:45:05
Aidan Van Dyk [off-list ref] writes:
SCO OpenServer also hides the definitions of (at least) u_short and friends if _XOPEN_SOURCE is defined.
I thought that was covered by 457bb45 (Port to 12 other Platforms., 2008-06-08).
--- Same patch as last time, updated for current master.
Sign-off? Boyd, does this make any of the earlier symbols you added redundant?
quoted hunk
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 cf89cdf..42e3e0b 100644 --- a/git-compat-util.h +++ b/git-compat-util.h@@ -39,7 +39,7 @@ /* Approximation of the length of the decimal representation of this type. */ #define decimal_length(x) ((int)(sizeof(x) * 2.56 + 0.5) + 1) -#if !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__USLC__) && !defined(_M_UNIX) +#if !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__USLC__) && !defined(_M_UNIX) && !defined(__OPENSERVER__) #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 --1.6.0.rc1.dirty