mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
This syncs the installed sapi and extension headers on *nix and Windows systems by installing only what is intended outside of php-src. - ext/gd: without gd_arginfo.h and gd_compat.h - ext/hash: php_hash_joaat.h and php_hash_fnv.h added also on Windows installation; xxhash/xxhash.h added on both installations as it is included in php_hash_xxhash.h; Include path for xxhash.h changed to relative so the php_hash_xxhash.h can be included outside of php-src; Redundant include flags removed - ext/iconv: without iconv_arginfo.h - ext/mysqli: mysqli_mysqlnd.h was missing on Windows - ext/phar: php_phar.h was missing on Windows - ext/sodium: php_libsodium.h was missing on *nix - ext/xml: without xml_arginfo.h - sapi/cli: cli.h was missing on Windows Closes GH-13210 Closes GH-13213
24 lines
1.1 KiB
JavaScript
24 lines
1.1 KiB
JavaScript
// vim:ft=javascript
|
|
|
|
EXTENSION("date", "php_date.c", false, "/Iext/date/lib /DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 /DHAVE_TIMELIB_CONFIG_H=1");
|
|
PHP_DATE = "yes";
|
|
ADD_SOURCES("ext/date/lib", "astro.c timelib.c dow.c parse_date.c parse_posix.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 <inttypes.h>");
|
|
tl_config.WriteLine("#include <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_strndup estrndup");
|
|
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')
|