/*============================================================================= Copyright (c) 2011-2015 Bolero MURAKAMI https://github.com/bolero-MURAKAMI/Sprout Distributed under the sprout Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.sprout.org/LICENSE_1_0.txt) =============================================================================*/ #ifndef SPROUT_PREDEF_OS_BSD_HPP #define SPROUT_PREDEF_OS_BSD_HPP #include #include #include #include #include #include #include #include #include #ifndef SPROUT_OS_BSD #define SPROUT_OS_BSD 0 #endif #if !defined(SPROUT_PREDEF_DETAIL_OS_DETECTED) && (defined(BSD) || defined(_SYSTYPE_BSD)) # undef SPROUT_OS_BSD # include # if !defined(SPROUT_OS_BSD) && defined(BSD4_4) # define SPROUT_OS_BSD SPROUT_VERSION_NUMBER(4, 4, 0) # endif # if !defined(SPROUT_OS_BSD) && defined(BSD4_3) # define SPROUT_OS_BSD SPROUT_VERSION_NUMBER(4, 3, 0) # endif # if !defined(SPROUT_OS_BSD) && defined(BSD4_2) # define SPROUT_OS_BSD SPROUT_VERSION_NUMBER(4, 2, 0) # endif # if !defined(SPROUT_OS_BSD) && defined(BSD) # define SPROUT_OS_BSD SPROUT_PREDEF_MAKE_10_VVRR(BSD) # endif # if !defined(SPROUT_OS_BSD) # define SPROUT_OS_BSD 1 # endif #endif #if SPROUT_OS_BSD # define SPROUT_OS_BSD_AVAILABLE # include #endif #define SPROUT_OS_BSD_NAME "BSD" #else // #ifndef SPROUT_PREDEF_OS_BSD_HPP #include #include #include #include #include #endif // #ifndef SPROUT_PREDEF_OS_BSD_HPP