mirror of git://sourceware.org/git/glibc.git
conformtest: Use correct feature test macros for XPG4.
This commit is contained in:
parent
39c33b6cbc
commit
73c5ebe344
|
@ -1,5 +1,8 @@
|
|||
2012-05-01 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
* conform/conformtest.pl: Define _XOPEN_SOURCE as well as
|
||||
_XOPEN_SOURCE_EXTENDED for XPG4.
|
||||
|
||||
* conform/conformtest.pl: Handle "symbol" lines for allow-header.
|
||||
|
||||
* Makeconfig (localtime): Remove variable.
|
||||
|
|
|
@ -37,7 +37,7 @@ $CFLAGS{"ISO99"} = "-std=c99";
|
|||
$CFLAGS{"ISO11"} = "-std=c1x -D_ISOC11_SOURCE";
|
||||
$CFLAGS{"POSIX"} = "-D_POSIX_C_SOURCE=199912 -ansi";
|
||||
$CFLAGS{"XPG3"} = "-D_XOPEN_SOURCE";
|
||||
$CFLAGS{"XPG4"} = "-D_XOPEN_SOURCE_EXTENDED";
|
||||
$CFLAGS{"XPG4"} = "-D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED";
|
||||
$CFLAGS{"UNIX98"} = "-D_XOPEN_SOURCE=500";
|
||||
$CFLAGS{"XOPEN2K"} = "-D_XOPEN_SOURCE=600";
|
||||
$CFLAGS{"XOPEN2K8"} = "-std=c99 -D_XOPEN_SOURCE=700";
|
||||
|
|
Loading…
Reference in New Issue