diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-10-08 20:42:42 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-10-08 20:42:42 +0900 |
commit | c485764cd4d94f272538d7228373fb039f427265 (patch) | |
tree | 09553f478c1b2d73ab180db1e34751318c195923 /mkspecs/linux-icc/qplatformdefs.h | |
parent | 230ed5e400ea4276d927570a7781cfcb5c7a534a (diff) | |
download | qt3-c485764cd4d94f272538d7228373fb039f427265.tar.gz qt3-c485764cd4d94f272538d7228373fb039f427265.zip |
Replaced _BSD_SOURCE, _SVID_SOURCE, _GNU_SOURCE with _DEFAULT_SOURCE.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'mkspecs/linux-icc/qplatformdefs.h')
-rw-r--r-- | mkspecs/linux-icc/qplatformdefs.h | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/mkspecs/linux-icc/qplatformdefs.h b/mkspecs/linux-icc/qplatformdefs.h index e25bc1e..2bf855b 100644 --- a/mkspecs/linux-icc/qplatformdefs.h +++ b/mkspecs/linux-icc/qplatformdefs.h @@ -5,22 +5,8 @@ #include "qglobal.h" -// Set any POSIX/XOPEN defines at the top of this file to turn on specific APIs - -// DNS system header files are a mess! -// <resolv.h> includes <arpa/nameser.h>. <arpa/nameser.h> is using -// 'u_char' and includes <sys/types.h>. Now the problem is that -// <sys/types.h> defines 'u_char' only if __USE_BSD is defined. -// __USE_BSD is defined in <features.h> if _BSD_SOURCE is defined. -#ifndef _BSD_SOURCE -# define _BSD_SOURCE -#endif - -// 1) need to reset default environment if _BSD_SOURCE is defined -// 2) need to specify POSIX thread interfaces explicitly in glibc 2.0 -// 3) it seems older glibc need this to include the X/Open stuff -#ifndef _GNU_SOURCE -# define _GNU_SOURCE +#ifndef _DEFAULT_SOURCE +# define _DEFAULT_SOURCE #endif #include <unistd.h> |