Mercurial > hg > vamp-build-and-test
annotate DEPENDENCIES/generic/include/boost/predef/os/solaris.h @ 118:770eb830ec19 emscripten
Typo fix
| author | Chris Cannam |
|---|---|
| date | Wed, 18 May 2016 16:14:08 +0100 |
| parents | c530137014c0 |
| children |
| rev | line source |
|---|---|
| Chris@16 | 1 /* |
| Chris@101 | 2 Copyright Rene Rivera 2008-2013 |
| Chris@16 | 3 Distributed under the Boost Software License, Version 1.0. |
| Chris@16 | 4 (See accompanying file LICENSE_1_0.txt or copy at |
| Chris@16 | 5 http://www.boost.org/LICENSE_1_0.txt) |
| Chris@16 | 6 */ |
| Chris@16 | 7 |
| Chris@16 | 8 #ifndef BOOST_PREDEF_OS_SOLARIS_H |
| Chris@16 | 9 #define BOOST_PREDEF_OS_SOLARIS_H |
| Chris@16 | 10 |
| Chris@16 | 11 #include <boost/predef/version_number.h> |
| Chris@16 | 12 #include <boost/predef/make.h> |
| Chris@16 | 13 |
| Chris@16 | 14 /*` |
| Chris@16 | 15 [heading `BOOST_OS_SOLARIS`] |
| Chris@16 | 16 |
| Chris@16 | 17 [@http://en.wikipedia.org/wiki/Solaris_Operating_Environment Solaris] operating system. |
| Chris@16 | 18 |
| Chris@16 | 19 [table |
| Chris@16 | 20 [[__predef_symbol__] [__predef_version__]] |
| Chris@16 | 21 |
| Chris@16 | 22 [[`sun`] [__predef_detection__]] |
| Chris@16 | 23 [[`__sun`] [__predef_detection__]] |
| Chris@16 | 24 ] |
| Chris@16 | 25 */ |
| Chris@16 | 26 |
| Chris@16 | 27 #define BOOST_OS_SOLARIS BOOST_VERSION_NUMBER_NOT_AVAILABLE |
| Chris@16 | 28 |
| Chris@101 | 29 #if !defined(BOOST_PREDEF_DETAIL_OS_DETECTED) && ( \ |
| Chris@16 | 30 defined(sun) || defined(__sun) \ |
| Chris@16 | 31 ) |
| Chris@16 | 32 # undef BOOST_OS_SOLARIS |
| Chris@16 | 33 # define BOOST_OS_SOLARIS BOOST_VERSION_NUMBER_AVAILABLE |
| Chris@16 | 34 #endif |
| Chris@16 | 35 |
| Chris@16 | 36 #if BOOST_OS_SOLARIS |
| Chris@16 | 37 # define BOOST_OS_SOLARIS_AVAILABLE |
| Chris@16 | 38 # include <boost/predef/detail/os_detected.h> |
| Chris@16 | 39 #endif |
| Chris@16 | 40 |
| Chris@16 | 41 #define BOOST_OS_SOLARIS_NAME "Solaris" |
| Chris@16 | 42 |
| Chris@16 | 43 #include <boost/predef/detail/test.h> |
| Chris@16 | 44 BOOST_PREDEF_DECLARE_TEST(BOOST_OS_SOLARIS,BOOST_OS_SOLARIS_NAME) |
| Chris@16 | 45 |
| Chris@16 | 46 |
| Chris@16 | 47 #endif |
