From 1121b83e3afd0ad256a07e97b79263c82bf04f92 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 9 Nov 2010 11:59:47 +0000 Subject: [PATCH] MingW32 has a few functions we weren't flagging up before. [SVN r66469] --- include/boost/config/platform/win32.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/boost/config/platform/win32.hpp b/include/boost/config/platform/win32.hpp index f59c4ea7..690f464a 100644 --- a/include/boost/config/platform/win32.hpp +++ b/include/boost/config/platform/win32.hpp @@ -39,6 +39,11 @@ # define BOOST_HAS_UNISTD_H #endif +#if defined(__MINGW32__) && (__GNUC__ >= 4) +# define BOOST_HAS_EXPM1 +# define BOOST_HAS_LOG1P +# define BOOST_HAS_GETTIMEOFDAY +#endif // // Win32 will normally be using native Win32 threads, // but there is a pthread library avaliable as an option,