12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- #define BOOST_PLATFORM "Win32"
- #if defined(__MINGW32__)
- # include <_mingw.h>
- #endif
- #if defined(__GNUC__) && !defined(BOOST_NO_SWPRINTF)
- # define BOOST_NO_SWPRINTF
- #endif
- #if !defined(__GNUC__) && !defined(BOOST_HAS_DECLSPEC)
- # define BOOST_HAS_DECLSPEC
- #endif
- #if defined(__MINGW32__) && ((__MINGW32_MAJOR_VERSION > 2) || ((__MINGW32_MAJOR_VERSION == 2) && (__MINGW32_MINOR_VERSION >= 0)))
- # define BOOST_HAS_STDINT_H
- # define __STDC_LIMIT_MACROS
- # define BOOST_HAS_DIRENT_H
- # define BOOST_HAS_UNISTD_H
- #endif
- #ifdef _WIN32_WCE
- # define BOOST_NO_ANSI_APIS
- #endif
- #ifndef BOOST_HAS_PTHREADS
- # define BOOST_HAS_WINTHREADS
- #endif
- #ifndef BOOST_DISABLE_WIN32
- #define BOOST_HAS_FTIME
- #define BOOST_WINDOWS 1
- #endif
|