From 3c433659912d4b1e6cc4ad1a0f50b60c8b5c925d Mon Sep 17 00:00:00 2001 From: rfm Date: Sun, 13 Sep 2009 11:51:27 +0000 Subject: [PATCH] Use _XOPEN_SOURCE rather than _XOPEN_VERSION --- GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GNUmakefile b/GNUmakefile index acd2caf..dda1f35 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -53,7 +53,7 @@ libobjc_HEADER_FILES = \ # Deprecated functions are only deprecated for external use, not for us because # we are special, precious, little flowers. -libobjc_CPPFLAGS += -D__OBJC_RUNTIME_INTERNAL__=1 -D_XOPEN_VERSION=500 +libobjc_CPPFLAGS += -D__OBJC_RUNTIME_INTERNAL__=1 -D_XOPEN_SOURCE=500 # Note to Riccardo. Please do not 'fix' C99isms in this. The new ABI is only # useful on compilers that support C99 (currently only clang), so there is no # benefit from supporting platforms with no C99 compiler.