From 89f16cfbc0115b6dadc6751137c32a84e29a7094 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 15 May 2008 15:55:00 +0000 Subject: [PATCH] Disable BOOST_HAS_FTIME on WinCE. [SVN r45393] --- include/boost/config/platform/win32.hpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/boost/config/platform/win32.hpp b/include/boost/config/platform/win32.hpp index 9344818f..bc6eb46e 100644 --- a/include/boost/config/platform/win32.hpp +++ b/include/boost/config/platform/win32.hpp @@ -52,7 +52,10 @@ #ifndef BOOST_DISABLE_WIN32 // WEK: Added -#define BOOST_HAS_FTIME +#ifndef _WIN32_WCE + // GetSystemTimeAsFileTime not present on WinCE. +# define BOOST_HAS_FTIME +#endif #define BOOST_WINDOWS 1 #endif