Mercurial > hg > vamp-build-and-test
annotate DEPENDENCIES/generic/include/boost/predef/os/bsd/dragonfly.h @ 133:4acb5d8d80b6 tip
Don't fail environmental check if README.md exists (but .txt and no-suffix don't)
author | Chris Cannam |
---|---|
date | Tue, 30 Jul 2019 12:25:44 +0100 |
parents | c530137014c0 |
children |
rev | line source |
---|---|
Chris@16 | 1 /* |
Chris@101 | 2 Copyright Rene Rivera 2012-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_BSD_DRAGONFLY_H |
Chris@16 | 9 #define BOOST_PREDEF_OS_BSD_DRAGONFLY_H |
Chris@16 | 10 |
Chris@16 | 11 #include <boost/predef/os/bsd.h> |
Chris@16 | 12 |
Chris@16 | 13 /*` |
Chris@16 | 14 [heading `BOOST_OS_BSD_DRAGONFLY`] |
Chris@16 | 15 |
Chris@16 | 16 [@http://en.wikipedia.org/wiki/DragonFly_BSD DragonFly BSD] operating system. |
Chris@16 | 17 |
Chris@16 | 18 [table |
Chris@16 | 19 [[__predef_symbol__] [__predef_version__]] |
Chris@16 | 20 |
Chris@16 | 21 [[`__DragonFly__`] [__predef_detection__]] |
Chris@16 | 22 ] |
Chris@16 | 23 */ |
Chris@16 | 24 |
Chris@16 | 25 #define BOOST_OS_BSD_DRAGONFLY BOOST_VERSION_NUMBER_NOT_AVAILABLE |
Chris@16 | 26 |
Chris@101 | 27 #if !defined(BOOST_PREDEF_DETAIL_OS_DETECTED) && ( \ |
Chris@16 | 28 defined(__DragonFly__) \ |
Chris@16 | 29 ) |
Chris@16 | 30 # ifndef BOOST_OS_BSD_AVAILABLE |
Chris@16 | 31 # define BOOST_OS_BSD BOOST_VERSION_NUMBER_AVAILABLE |
Chris@16 | 32 # define BOOST_OS_BSD_AVAILABLE |
Chris@16 | 33 # endif |
Chris@16 | 34 # undef BOOST_OS_BSD_DRAGONFLY |
Chris@16 | 35 # if defined(__DragonFly__) |
Chris@16 | 36 # define BOOST_OS_DRAGONFLY_BSD BOOST_VERSION_NUMBER_AVAILABLE |
Chris@16 | 37 # endif |
Chris@16 | 38 #endif |
Chris@16 | 39 |
Chris@16 | 40 #if BOOST_OS_BSD_DRAGONFLY |
Chris@16 | 41 # define BOOST_OS_BSD_DRAGONFLY_AVAILABLE |
Chris@16 | 42 # include <boost/predef/detail/os_detected.h> |
Chris@16 | 43 #endif |
Chris@16 | 44 |
Chris@16 | 45 #define BOOST_OS_BSD_DRAGONFLY_NAME "DragonFly BSD" |
Chris@16 | 46 |
Chris@16 | 47 #include <boost/predef/detail/test.h> |
Chris@16 | 48 BOOST_PREDEF_DECLARE_TEST(BOOST_OS_BSD_DRAGONFLY,BOOST_OS_BSD_DRAGONFLY_NAME) |
Chris@16 | 49 |
Chris@16 | 50 #endif |