From: Edin Kadribasic Date: Tue, 14 Jun 2005 22:25:48 +0000 (+0000) Subject: Added win32 build file X-Git-Tag: php-5.1.0b2~194 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cde34a07b7b9d1ccec2616df6da90111a75b72b5;p=php Added win32 build file --- diff --git a/ext/date/config.w32 b/ext/date/config.w32 new file mode 100755 index 0000000000..3b5c75ec88 --- /dev/null +++ b/ext/date/config.w32 @@ -0,0 +1,11 @@ +// $Id$ +// vim:ft=javascript + +ARG_WITH("date", "Whether you want date/time support", "no"); + +if (PHP_DATE == "yes") { + EXTENSION("date", "php_date.c", PHP_DATE_SHARED, "-Iext/date/lib"); + ADD_SOURCES("ext/date/lib", "datetime.c dow.c parse_date.c parse_tz.c tm2unixtime.c unixtime2tm.c", "date"); + + AC_DEFINE('HAVE_DATE', 1, 'Have date/time support'); +}