diff options
| -rwxr-xr-x | ext/date/config.w32 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/date/config.w32 b/ext/date/config.w32 index d307bb73d8..083d55a6d2 100755 --- a/ext/date/config.w32 +++ b/ext/date/config.w32 @@ -4,3 +4,7 @@ EXTENSION("date", "php_date.c", false, "-Iext/date/lib"); ADD_SOURCES("ext/date/lib", "timelib.c dow.c parse_date.c parse_tz.c tm2unixtime.c unixtime2tm.c", "date"); AC_DEFINE('HAVE_DATE', 1, 'Have date/time support'); + +var tl_config = FSO.CreateTextFile("ext/date/lib/tl_config.h", true); +tl_config.WriteLine("#include \"config.w32.h\""); +tl_config.Close(); |
