123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- #ifndef BHO_PREDEF_LIBRARY_STD_STDCPP3_H
- #define BHO_PREDEF_LIBRARY_STD_STDCPP3_H
- #include <asio2/bho/predef/library/std/_prefix.h>
- #include <asio2/bho/predef/version_number.h>
- #include <asio2/bho/predef/make.h>
-
- #define BHO_LIB_STD_GNU BHO_VERSION_NUMBER_NOT_AVAILABLE
- #if defined(__GLIBCPP__) || defined(__GLIBCXX__)
- # undef BHO_LIB_STD_GNU
- # if defined(__GLIBCXX__)
- # define BHO_LIB_STD_GNU BHO_PREDEF_MAKE_YYYYMMDD(__GLIBCXX__)
- # else
- # define BHO_LIB_STD_GNU BHO_PREDEF_MAKE_YYYYMMDD(__GLIBCPP__)
- # endif
- #endif
- #if BHO_LIB_STD_GNU
- # define BHO_LIB_STD_GNU_AVAILABLE
- #endif
- #define BHO_LIB_STD_GNU_NAME "GNU"
- #endif
- #include <asio2/bho/predef/detail/test.h>
- BHO_PREDEF_DECLARE_TEST(BHO_LIB_STD_GNU,BHO_LIB_STD_GNU_NAME)
|