Chris@16: /* Chris@101: Copyright Rene Rivera 2012-2013 Chris@16: Distributed under the Boost Software License, Version 1.0. Chris@16: (See accompanying file LICENSE_1_0.txt or copy at Chris@16: http://www.boost.org/LICENSE_1_0.txt) Chris@16: */ Chris@16: Chris@16: #ifndef BOOST_PREDEF_OS_BSD_DRAGONFLY_H Chris@16: #define BOOST_PREDEF_OS_BSD_DRAGONFLY_H Chris@16: Chris@16: #include Chris@16: Chris@16: /*` Chris@16: [heading `BOOST_OS_BSD_DRAGONFLY`] Chris@16: Chris@16: [@http://en.wikipedia.org/wiki/DragonFly_BSD DragonFly BSD] operating system. Chris@16: Chris@16: [table Chris@16: [[__predef_symbol__] [__predef_version__]] Chris@16: Chris@16: [[`__DragonFly__`] [__predef_detection__]] Chris@16: ] Chris@16: */ Chris@16: Chris@16: #define BOOST_OS_BSD_DRAGONFLY BOOST_VERSION_NUMBER_NOT_AVAILABLE Chris@16: Chris@101: #if !defined(BOOST_PREDEF_DETAIL_OS_DETECTED) && ( \ Chris@16: defined(__DragonFly__) \ Chris@16: ) Chris@16: # ifndef BOOST_OS_BSD_AVAILABLE Chris@16: # define BOOST_OS_BSD BOOST_VERSION_NUMBER_AVAILABLE Chris@16: # define BOOST_OS_BSD_AVAILABLE Chris@16: # endif Chris@16: # undef BOOST_OS_BSD_DRAGONFLY Chris@16: # if defined(__DragonFly__) Chris@16: # define BOOST_OS_DRAGONFLY_BSD BOOST_VERSION_NUMBER_AVAILABLE Chris@16: # endif Chris@16: #endif Chris@16: Chris@16: #if BOOST_OS_BSD_DRAGONFLY Chris@16: # define BOOST_OS_BSD_DRAGONFLY_AVAILABLE Chris@16: # include Chris@16: #endif Chris@16: Chris@16: #define BOOST_OS_BSD_DRAGONFLY_NAME "DragonFly BSD" Chris@16: Chris@16: #include Chris@16: BOOST_PREDEF_DECLARE_TEST(BOOST_OS_BSD_DRAGONFLY,BOOST_OS_BSD_DRAGONFLY_NAME) Chris@16: Chris@16: #endif