mirror of
https://github.com/boostorg/predef.git
synced 2025-07-29 11:37:13 +02:00
Merge pull request #14 from boostorg/develop
Merge to master for 1.56 release.
This commit is contained in:
@ -32,7 +32,7 @@ Version number available as major, minor, and patch.
|
||||
|
||||
#define BOOST_OS_AIX BOOST_VERSION_NUMBER_NOT_AVAILABLE
|
||||
|
||||
#if !BOOST_PREDEF_DETAIL_OS_DETECTED && ( \
|
||||
#if !defined(BOOST_PREDEF_DETAIL_OS_DETECTED) && ( \
|
||||
defined(_AIX) || defined(__TOS_AIX__) \
|
||||
)
|
||||
# undef BOOST_OS_AIX
|
||||
|
@ -26,7 +26,7 @@ http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
#define BOOST_OS_AMIGAOS BOOST_VERSION_NUMBER_NOT_AVAILABLE
|
||||
|
||||
#if !BOOST_PREDEF_DETAIL_OS_DETECTED && ( \
|
||||
#if !defined(BOOST_PREDEF_DETAIL_OS_DETECTED) && ( \
|
||||
defined(AMIGA) || defined(__amigaos__) \
|
||||
)
|
||||
# undef BOOST_OS_AMIGAOS
|
||||
|
@ -25,7 +25,7 @@ http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
#define BOOST_OS_ANDROID BOOST_VERSION_NUMBER_NOT_AVAILABLE
|
||||
|
||||
#if !BOOST_PREDEF_DETAIL_OS_DETECTED && ( \
|
||||
#if !defined(BOOST_PREDEF_DETAIL_OS_DETECTED) && ( \
|
||||
defined(__ANDROID__) \
|
||||
)
|
||||
# undef BOOST_OS_ANDROID
|
||||
|
@ -25,7 +25,7 @@ http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
#define BOOST_OS_BEOS BOOST_VERSION_NUMBER_NOT_AVAILABLE
|
||||
|
||||
#if !BOOST_PREDEF_DETAIL_OS_DETECTED && ( \
|
||||
#if !defined(BOOST_PREDEF_DETAIL_OS_DETECTED) && ( \
|
||||
defined(__BEOS__) \
|
||||
)
|
||||
# undef BOOST_OS_BEOS
|
||||
|
@ -59,7 +59,7 @@ of BSD. If the above variants is detected the corresponding macro is also set.]
|
||||
#define BOOST_OS_BSD BOOST_VERSION_NUMBER_NOT_AVAILABLE
|
||||
#endif
|
||||
|
||||
#if !BOOST_PREDEF_DETAIL_OS_DETECTED && ( \
|
||||
#if !defined(BOOST_PREDEF_DETAIL_OS_DETECTED) && ( \
|
||||
defined(BSD) || \
|
||||
defined(_SYSTYPE_BSD) \
|
||||
)
|
||||
|
@ -24,7 +24,7 @@ http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
#define BOOST_OS_BSD_BSDI BOOST_VERSION_NUMBER_NOT_AVAILABLE
|
||||
|
||||
#if !BOOST_PREDEF_DETAIL_OS_DETECTED && ( \
|
||||
#if !defined(BOOST_PREDEF_DETAIL_OS_DETECTED) && ( \
|
||||
defined(__bsdi__) \
|
||||
)
|
||||
# ifndef BOOST_OS_BSD_AVAILABLE
|
||||
|
@ -24,7 +24,7 @@ http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
#define BOOST_OS_BSD_DRAGONFLY BOOST_VERSION_NUMBER_NOT_AVAILABLE
|
||||
|
||||
#if !BOOST_PREDEF_DETAIL_OS_DETECTED && ( \
|
||||
#if !defined(BOOST_PREDEF_DETAIL_OS_DETECTED) && ( \
|
||||
defined(__DragonFly__) \
|
||||
)
|
||||
# ifndef BOOST_OS_BSD_AVAILABLE
|
||||
|
@ -26,7 +26,7 @@ http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
#define BOOST_OS_BSD_FREE BOOST_VERSION_NUMBER_NOT_AVAILABLE
|
||||
|
||||
#if !BOOST_PREDEF_DETAIL_OS_DETECTED && ( \
|
||||
#if !defined(BOOST_PREDEF_DETAIL_OS_DETECTED) && ( \
|
||||
defined(__FreeBSD__) \
|
||||
)
|
||||
# ifndef BOOST_OS_BSD_AVAILABLE
|
||||
|
@ -31,7 +31,7 @@ http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
#define BOOST_OS_BSD_NET BOOST_VERSION_NUMBER_NOT_AVAILABLE
|
||||
|
||||
#if !BOOST_PREDEF_DETAIL_OS_DETECTED && ( \
|
||||
#if !defined(BOOST_PREDEF_DETAIL_OS_DETECTED) && ( \
|
||||
defined(__NETBSD__) || defined(__NetBSD__) \
|
||||
)
|
||||
# ifndef BOOST_OS_BSD_AVAILABLE
|
||||
|
@ -55,7 +55,7 @@ http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
#define BOOST_OS_BSD_OPEN BOOST_VERSION_NUMBER_NOT_AVAILABLE
|
||||
|
||||
#if !BOOST_PREDEF_DETAIL_OS_DETECTED && ( \
|
||||
#if !defined(BOOST_PREDEF_DETAIL_OS_DETECTED) && ( \
|
||||
defined(__OpenBSD__) \
|
||||
)
|
||||
# ifndef BOOST_OS_BSD_AVAILABLE
|
||||
|
@ -25,7 +25,7 @@ http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
#define BOOST_OS_CYGWIN BOOST_VERSION_NUMBER_NOT_AVAILABLE
|
||||
|
||||
#if !BOOST_PREDEF_DETAIL_OS_DETECTED && ( \
|
||||
#if !defined(BOOST_PREDEF_DETAIL_OS_DETECTED) && ( \
|
||||
defined(__CYGWIN__) \
|
||||
)
|
||||
# undef BOOST_OS_CYGWIN
|
||||
|
@ -27,7 +27,7 @@ http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
#define BOOST_OS_HPUX BOOST_VERSION_NUMBER_NOT_AVAILABLE
|
||||
|
||||
#if !BOOST_PREDEF_DETAIL_OS_DETECTED && ( \
|
||||
#if !defined(BOOST_PREDEF_DETAIL_OS_DETECTED) && ( \
|
||||
defined(hpux) || defined(_hpux) || defined(__hpux) \
|
||||
)
|
||||
# undef BOOST_OS_HPUX
|
||||
|
@ -29,7 +29,7 @@ http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
#define BOOST_OS_IOS BOOST_VERSION_NUMBER_NOT_AVAILABLE
|
||||
|
||||
#if !BOOST_PREDEF_DETAIL_OS_DETECTED && ( \
|
||||
#if !defined(BOOST_PREDEF_DETAIL_OS_DETECTED) && ( \
|
||||
defined(__APPLE__) && defined(__MACH__) && \
|
||||
defined(__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__) \
|
||||
)
|
||||
|
@ -26,7 +26,7 @@ http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
#define BOOST_OS_IRIX BOOST_VERSION_NUMBER_NOT_AVAILABLE
|
||||
|
||||
#if !BOOST_PREDEF_DETAIL_OS_DETECTED && ( \
|
||||
#if !defined(BOOST_PREDEF_DETAIL_OS_DETECTED) && ( \
|
||||
defined(sgi) || defined(__sgi) \
|
||||
)
|
||||
# undef BOOST_OS_IRIX
|
||||
|
@ -26,7 +26,7 @@ http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
#define BOOST_OS_LINUX BOOST_VERSION_NUMBER_NOT_AVAILABLE
|
||||
|
||||
#if !BOOST_PREDEF_DETAIL_OS_DETECTED && ( \
|
||||
#if !defined(BOOST_PREDEF_DETAIL_OS_DETECTED) && ( \
|
||||
defined(linux) || defined(__linux) \
|
||||
)
|
||||
# undef BOOST_OS_LINUX
|
||||
|
@ -39,7 +39,7 @@ http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
#define BOOST_OS_MACOS BOOST_VERSION_NUMBER_NOT_AVAILABLE
|
||||
|
||||
#if !BOOST_PREDEF_DETAIL_OS_DETECTED && ( \
|
||||
#if !defined(BOOST_PREDEF_DETAIL_OS_DETECTED) && ( \
|
||||
defined(macintosh) || defined(Macintosh) || \
|
||||
(defined(__APPLE__) && defined(__MACH__)) \
|
||||
)
|
||||
|
@ -25,7 +25,7 @@ http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
#define BOOST_OS_OS400 BOOST_VERSION_NUMBER_NOT_AVAILABLE
|
||||
|
||||
#if !BOOST_PREDEF_DETAIL_OS_DETECTED && ( \
|
||||
#if !defined(BOOST_PREDEF_DETAIL_OS_DETECTED) && ( \
|
||||
defined(__OS400__) \
|
||||
)
|
||||
# undef BOOST_OS_OS400
|
||||
|
@ -31,7 +31,7 @@ version 4 is specifically detected.
|
||||
|
||||
#define BOOST_OS_QNX BOOST_VERSION_NUMBER_NOT_AVAILABLE
|
||||
|
||||
#if !BOOST_PREDEF_DETAIL_OS_DETECTED && ( \
|
||||
#if !defined(BOOST_PREDEF_DETAIL_OS_DETECTED) && ( \
|
||||
defined(__QNX__) || defined(__QNXNTO__) \
|
||||
)
|
||||
# undef BOOST_OS_QNX
|
||||
|
@ -26,7 +26,7 @@ http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
#define BOOST_OS_SOLARIS BOOST_VERSION_NUMBER_NOT_AVAILABLE
|
||||
|
||||
#if !BOOST_PREDEF_DETAIL_OS_DETECTED && ( \
|
||||
#if !defined(BOOST_PREDEF_DETAIL_OS_DETECTED) && ( \
|
||||
defined(sun) || defined(__sun) \
|
||||
)
|
||||
# undef BOOST_OS_SOLARIS
|
||||
|
@ -28,17 +28,14 @@ http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
#define BOOST_OS_UNIX BOOST_VERSION_NUMBER_NOT_AVAILABLE
|
||||
|
||||
#if !BOOST_PREDEF_DETAIL_OS_DETECTED && ( \
|
||||
defined(unix) || defined(__unix) || \
|
||||
defined(_XOPEN_SOURCE) || defined(_POSIX_SOURCE) \
|
||||
)
|
||||
#if defined(unix) || defined(__unix) || \
|
||||
defined(_XOPEN_SOURCE) || defined(_POSIX_SOURCE)
|
||||
# undef BOOST_OS_UNIX
|
||||
# define BOOST_OS_UNIX BOOST_VERSION_NUMBER_AVAILABLE
|
||||
#endif
|
||||
|
||||
#if BOOST_OS_UNIX
|
||||
# define BOOST_OS_UNIX_AVAILABLE
|
||||
# include <boost/predef/detail/os_detected.h>
|
||||
#endif
|
||||
|
||||
#define BOOST_OS_UNIX_NAME "Unix Environment"
|
||||
@ -66,8 +63,8 @@ http://www.boost.org/LICENSE_1_0.txt)
|
||||
# define BOOST_OS_SVR4 BOOST_VERSION_NUMBER_AVAILABLE
|
||||
#endif
|
||||
|
||||
#if BOOST_ARCH_ALPHA
|
||||
# define _AVAILABLE
|
||||
#if BOOST_OS_SVR4
|
||||
# define BOOST_OS_SVR4_AVAILABLE
|
||||
#endif
|
||||
|
||||
#define BOOST_OS_SVR4_NAME "SVR4 Environment"
|
||||
|
@ -28,7 +28,7 @@ http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
#define BOOST_OS_VMS BOOST_VERSION_NUMBER_NOT_AVAILABLE
|
||||
|
||||
#if !BOOST_PREDEF_DETAIL_OS_DETECTED && ( \
|
||||
#if !defined(BOOST_PREDEF_DETAIL_OS_DETECTED) && ( \
|
||||
defined(VMS) || defined(__VMS) \
|
||||
)
|
||||
# undef BOOST_OS_VMS
|
||||
|
@ -29,7 +29,7 @@ http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
#define BOOST_OS_WINDOWS BOOST_VERSION_NUMBER_NOT_AVAILABLE
|
||||
|
||||
#if !BOOST_PREDEF_DETAIL_OS_DETECTED && ( \
|
||||
#if !defined(BOOST_PREDEF_DETAIL_OS_DETECTED) && ( \
|
||||
defined(_WIN32) || defined(_WIN64) || \
|
||||
defined(__WIN32__) || defined(__TOS_WIN__) || \
|
||||
defined(__WINDOWS__) \
|
||||
|
Reference in New Issue
Block a user