From: Pierre Joye Date: Tue, 9 Dec 2008 14:28:54 +0000 (+0000) Subject: - MFH: silent conversion warnings as it is not going to be "fixed" any time soon... X-Git-Tag: php-5.3.0beta1~477 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ef3ec02f6ff7e3e5e4b0a9d62a92de630ae58f3e;p=php - MFH: silent conversion warnings as it is not going to be "fixed" any time soon, removing false positive alerts. noise--; --- diff --git a/ext/date/config.w32 b/ext/date/config.w32 index 483770d4a0..368ddef97a 100755 --- a/ext/date/config.w32 +++ b/ext/date/config.w32 @@ -5,6 +5,8 @@ EXTENSION("date", "php_date.c", false, "-Iext/date/lib"); ADD_SOURCES("ext/date/lib", "astro.c timelib.c dow.c parse_date.c parse_tz.c tm2unixtime.c unixtime2tm.c parse_iso_intervals.c interval.c", "date"); AC_DEFINE('HAVE_DATE', 1, 'Have date/time support'); +ADD_FLAG('CFLAGS_DATE', "/wd4244"); + var tl_config = FSO.CreateTextFile("ext/date/lib/timelib_config.h", true); tl_config.WriteLine("#include \"config.w32.h\""); tl_config.Close();