mirror of
https://git.zap.org.au/git/trader.git
synced 2024-12-04 14:46:45 -05:00
Use a better check for Solaris (SunOS 5.x)
The __sun__ macro is not always defined by Oracle Solaris Studio, but __sun is, as it is in GCC and Clang. By itself, __sun__ also matches the very obsolete SunOS 4.x BSD-based operating system, hence the need for __SVR4 as well. See https://web.archive.org/web/20180221212835/http://nadeausoftware.com/articles/2012/01/c_c_tip_how_use_compiler_predefined_macros_detect_operating_system for more information on operating system macro checks.
This commit is contained in:
parent
2d6a339fb1
commit
192b749018
@ -45,11 +45,11 @@
|
|||||||
|
|
||||||
#if ! defined(_XOPEN_SOURCE) || _XOPEN_SOURCE < 700
|
#if ! defined(_XOPEN_SOURCE) || _XOPEN_SOURCE < 700
|
||||||
# undef _XOPEN_SOURCE
|
# undef _XOPEN_SOURCE
|
||||||
# if ! defined(__sun__)
|
# if defined(__sun) && defined(__SVR4)
|
||||||
# define _XOPEN_SOURCE 700 // Use SUSv4 where possible
|
# define _XOPEN_SOURCE 600 // Use SUSv3 on SunOS 5.x
|
||||||
|
# define __EXTENSIONS__ 1 // ... with Solaris extensions
|
||||||
# else
|
# else
|
||||||
# define _XOPEN_SOURCE 600 // Except on SunOS 5.x
|
# define _XOPEN_SOURCE 700 // Use SUSv4 everywhere else
|
||||||
# define __EXTENSIONS__ 1 // ... but use Solaris extensions
|
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user