mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00

It fixes several bugs: - Fixed bug #45554 (Inconsistent behavior of the u format char). - Fixed bug #48225 (DateTime parser doesn't set microseconds for "now"). - Fixed bug #52514 (microseconds are missing in DateTime class). - Fixed bug #52519 (microseconds in DateInterval are missing). - Fixed bug #68506 (General DateTime improvments needed for microseconds to become useful). - Fixed bug #73109 (timelib_meridian doesn't parse dots correctly). - Fixed bug #73247 (DateTime constructor does not initialise microseconds property). It also updates timelib to 2016.04, and updates a data mapping file, which causes changes to the volatile abbreviations tests.
24 lines
1.2 KiB
JavaScript
Executable file
24 lines
1.2 KiB
JavaScript
Executable file
// $Id$
|
|
// 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");
|
|
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.WriteLine("#include <php_stdint.h>");
|
|
tl_config.WriteLine("#define TIMELIB_OMIT_STDINT 1");
|
|
tl_config.WriteLine("#define HAVE_GETTIMEOFDAY 1");
|
|
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_structs.h lib/timelib_config.h");
|
|
AC_DEFINE('HAVE_TIMELIB_CONFIG_H', 1, 'Have timelib_config.h')
|