Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:48:06

0001 /*
0002 Copyright Rene Rivera 2008-2015
0003 Distributed under the Boost Software License, Version 1.0.
0004 (See accompanying file LICENSE_1_0.txt or copy at
0005 http://www.boost.org/LICENSE_1_0.txt)
0006 */
0007 
0008 #ifndef BOOST_PREDEF_OS_AIX_H
0009 #define BOOST_PREDEF_OS_AIX_H
0010 
0011 #include <boost/predef/version_number.h>
0012 #include <boost/predef/make.h>
0013 
0014 /* tag::reference[]
0015 = `BOOST_OS_AIX`
0016 
0017 http://en.wikipedia.org/wiki/AIX_operating_system[IBM AIX] operating system.
0018 Version number available as major, minor, and patch.
0019 
0020 [options="header"]
0021 |===
0022 | {predef_symbol} | {predef_version}
0023 
0024 | `+_AIX+` | {predef_detection}
0025 | `+__TOS_AIX__+` | {predef_detection}
0026 
0027 | `+_AIX43+` | 4.3.0
0028 | `+_AIX41+` | 4.1.0
0029 | `+_AIX32+` | 3.2.0
0030 | `+_AIX3+` | 3.0.0
0031 |===
0032 */ // end::reference[]
0033 
0034 #define BOOST_OS_AIX BOOST_VERSION_NUMBER_NOT_AVAILABLE
0035 
0036 #if !defined(BOOST_PREDEF_DETAIL_OS_DETECTED) && ( \
0037     defined(_AIX) || defined(__TOS_AIX__) \
0038     )
0039 #   undef BOOST_OS_AIX
0040 #   if !defined(BOOST_OS_AIX) && defined(_AIX43)
0041 #       define BOOST_OS_AIX BOOST_VERSION_NUMBER(4,3,0)
0042 #   endif
0043 #   if !defined(BOOST_OS_AIX) && defined(_AIX41)
0044 #       define BOOST_OS_AIX BOOST_VERSION_NUMBER(4,1,0)
0045 #   endif
0046 #   if !defined(BOOST_OS_AIX) && defined(_AIX32)
0047 #       define BOOST_OS_AIX BOOST_VERSION_NUMBER(3,2,0)
0048 #   endif
0049 #   if !defined(BOOST_OS_AIX) && defined(_AIX3)
0050 #       define BOOST_OS_AIX BOOST_VERSION_NUMBER(3,0,0)
0051 #   endif
0052 #   if !defined(BOOST_OS_AIX)
0053 #       define BOOST_OS_AIX BOOST_VERSION_NUMBER_AVAILABLE
0054 #   endif
0055 #endif
0056 
0057 #if BOOST_OS_AIX
0058 #   define BOOST_OS_AIX_AVAILABLE
0059 #   include <boost/predef/detail/os_detected.h>
0060 #endif
0061 
0062 #define BOOST_OS_AIX_NAME "IBM AIX"
0063 
0064 #endif
0065 
0066 #include <boost/predef/detail/test.h>
0067 BOOST_PREDEF_DECLARE_TEST(BOOST_OS_AIX,BOOST_OS_AIX_NAME)