From 8245eb76f2ab5216b9f2c56c93aa458c55d38013 Mon Sep 17 00:00:00 2001 From: "reed@reedloden.com" Date: Fri, 22 Feb 2008 15:49:41 -0800 Subject: [PATCH] Bug 418957 - "js/src/prmjtime.c uses the wrong value for NS_HAVE_INVALID_PARAMETER_HANDLER on windows mobile" [p=dougt@meer.net (Doug Turner) r+a1.9=crowder] --- js/src/prmjtime.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/src/prmjtime.c b/js/src/prmjtime.c index 62b1c758999..8e7b373d81d 100644 --- a/js/src/prmjtime.c +++ b/js/src/prmjtime.c @@ -63,7 +63,8 @@ #include #include /* for fabs */ #include /* for timeBegin/EndPeriod */ -#if _MSC_VER >= 1400 /* VC++ 8.0 or later */ +/* VC++ 8.0 or later, and not WINCE */ +#if _MSC_VER >= 1400 && !defined(WINCE) #define NS_HAVE_INVALID_PARAMETER_HANDLER 1 #endif #ifdef NS_HAVE_INVALID_PARAMETER_HANDLER