We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c6e7393 + a0c0be9 commit 714cdcdCopy full SHA for 714cdcd
2 files changed
Makefile
@@ -702,7 +702,9 @@ ifeq ($(uname_S),SunOS)
702
NO_MEMMEM = YesPlease
703
NO_HSTRERROR = YesPlease
704
NO_MKDTEMP = YesPlease
705
- OLD_ICONV = UnfortunatelyYes
+ ifneq ($(uname_R),5.11)
706
+ OLD_ICONV = UnfortunatelyYes
707
+ endif
708
ifeq ($(uname_R),5.8)
709
NO_UNSETENV = YesPlease
710
NO_SETENV = YesPlease
git-compat-util.h
@@ -41,8 +41,10 @@
41
42
#if !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__USLC__) && !defined(_M_UNIX)
43
#define _XOPEN_SOURCE 600 /* glibc2 and AIX 5.3L need 500, OpenBSD needs 600 for S_ISLNK() */
44
+#ifndef __sun__
45
#define _XOPEN_SOURCE_EXTENDED 1 /* AIX 5.3L needs this */
46
#endif
47
+#endif
48
#define _ALL_SOURCE 1
49
#define _GNU_SOURCE 1
50
#define _BSD_SOURCE 1
0 commit comments