/usr/include/boost/config/platform
NameSizeModeActions
aix.hpp8880644editdlrm
amigaos.hpp4420644editdlrm
beos.hpp6000644editdlrm
bsd.hpp25050644editdlrm
cloudabi.hpp5300644editdlrm
cray.hpp4560644editdlrm
cygwin.hpp18720644editdlrm
haiku.hpp8070644editdlrm
hpux.hpp24840644editdlrm
irix.hpp7960644editdlrm
linux.hpp28500644editdlrm
macos.hpp23500644editdlrm
qnxnto.hpp7730644editdlrm
solaris.hpp8410644editdlrm
symbian.hpp26210644editdlrm
vms.hpp7490644editdlrm
vxworks.hpp148360644editdlrm
win32.hpp27180644editdlrm
zos.hpp7890644editdlrm
Edit: /usr/include/boost/config/platform/cygwin.hpp (1872B)
// (C) Copyright John Maddock 2001 - 2003. // Use, modification and distribution are subject to the // Boost Software License, Version 1.0. (See accompanying file // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // See http://www.boost.org for most recent version. // cygwin specific config options: #define BOOST_PLATFORM "Cygwin" #define BOOST_HAS_DIRENT_H #define BOOST_HAS_LOG1P #define BOOST_HAS_EXPM1 // // Threading API: // See if we have POSIX threads, if we do use them, otherwise // revert to native Win threads. #define BOOST_HAS_UNISTD_H #include #if defined(_POSIX_THREADS) && (_POSIX_THREADS+0 >= 0) && !defined(BOOST_HAS_WINTHREADS) # define BOOST_HAS_PTHREADS # define BOOST_HAS_SCHED_YIELD # define BOOST_HAS_GETTIMEOFDAY # define BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE //# define BOOST_HAS_SIGACTION #else # if !defined(BOOST_HAS_WINTHREADS) # define BOOST_HAS_WINTHREADS # endif # define BOOST_HAS_FTIME #endif // // find out if we have a stdint.h, there should be a better way to do this: // #include #ifdef _STDINT_H #define BOOST_HAS_STDINT_H #endif #if __GNUC__ > 5 && !defined(BOOST_HAS_STDINT_H) # define BOOST_HAS_STDINT_H #endif #include #if (CYGWIN_VERSION_API_MAJOR == 0 && CYGWIN_VERSION_API_MINOR < 231) /// Cygwin has no fenv.h #define BOOST_NO_FENV_H #endif // Cygwin has it's own which breaks unless the correct compiler flags are used: #ifndef BOOST_NO_CXX14_HDR_SHARED_MUTEX #include #if !(__XSI_VISIBLE >= 500 || __POSIX_VISIBLE >= 200112) # define BOOST_NO_CXX14_HDR_SHARED_MUTEX #endif #endif // boilerplate code: #include // // Cygwin lies about XSI conformance, there is no nl_types.h: // #ifdef BOOST_HAS_NL_TYPES_H # undef BOOST_HAS_NL_TYPES_H #endif