mirror of
https://github.com/php/php-src.git
synced 2024-11-24 18:34:21 +08:00
c72d6da461
- TIMELIB_OMIT_STDINT is not used anymore since
a171f99cf0
- HAVE_GETTIMEOFDAY was defined multiple times in Windows headers
- ext/date/lib/timelib_config.h.win32 does not seem to be used
Closes GH-4400
21 lines
991 B
JavaScript
21 lines
991 B
JavaScript
// vim:ft=javascript
|
|
|
|
EXTENSION("date", "php_date.c", false, "/Iext/date/lib /DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 /DHAVE_TIMELIB_CONFIG_H=1");
|
|
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");
|
|
|
|
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.WriteLine("#include <php_stdint.h>");
|
|
tl_config.WriteLine("#include \"zend.h\"");
|
|
tl_config.WriteLine("#define timelib_malloc emalloc");
|
|
tl_config.WriteLine("#define timelib_realloc erealloc");
|
|
tl_config.WriteLine("#define timelib_calloc ecalloc");
|
|
tl_config.WriteLine("#define timelib_strdup estrdup");
|
|
tl_config.WriteLine("#define timelib_free efree");
|
|
tl_config.Close();
|
|
|
|
PHP_INSTALL_HEADERS("ext/date/", "php_date.h lib/timelib.h lib/timelib_config.h");
|
|
AC_DEFINE('HAVE_TIMELIB_CONFIG_H', 1, 'Have timelib_config.h')
|