wxwidgets/include
Vadim Zeitlin 4f846f72de Don't attempt using <type_traits> with g++ 4.9.2 in C++98 mode.
g++ 4.9.2 added support of __has_include() but, unlike clang, refuses to
compile the <type_traits> header that is detected as existing now in C++98
mode, so the build was broken with it when not using configure (i.e. under
MSW).

Fix this by, first, testing for C++11 compilers separately (which seems like a
good idea anyhow as it will allow using these headers with other compilers)
and, second, not trusting g++ __has_include() for C++11 headers in C++98 mode.
2015-03-17 23:55:46 +01:00
..
msvc/wx Auto-link expat and zlib even in non-GUI programs when using MSVC. 2014-08-03 12:44:40 +00:00
wx Don't attempt using <type_traits> with g++ 4.9.2 in C++98 mode. 2015-03-17 23:55:46 +01:00