From 6b83bf86aa1901ad2137cb1ffde35f40b50153eb Mon Sep 17 00:00:00 2001 From: John Maddock Date: Mon, 19 Nov 2007 10:20:36 +0000 Subject: [PATCH] No user32.lib on WinCE [SVN r41219] --- src/w32_regex_traits.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/w32_regex_traits.cpp b/src/w32_regex_traits.cpp index 64fd2ce4..e953c9f4 100644 --- a/src/w32_regex_traits.cpp +++ b/src/w32_regex_traits.cpp @@ -30,7 +30,7 @@ #define NOGDI #include -#ifdef _MSC_VER +#if defined(_MSC_VER) && !defined(_WIN32_WCE) #pragma comment(lib, "user32.lib") #endif