We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents aa7fbdf + 0ffa84d commit a899483Copy full SHA for a899483
ext/date/config0.m4
@@ -1,7 +1,13 @@
1
dnl config.m4 for date extension
2
3
-sinclude(ext/date/lib/timelib.m4)
4
-sinclude(lib/timelib.m4)
+dnl Check for headers needed by timelib
+AC_CHECK_HEADERS([ \
5
+strings.h \
6
+io.h
7
+])
8
+
9
+dnl Check for strtoll, atoll
10
+AC_CHECK_FUNCS(strtoll atoll)
11
12
PHP_DATE_CFLAGS="-I@ext_builddir@/lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DHAVE_TIMELIB_CONFIG_H=1"
13
timelib_sources="lib/astro.c lib/dow.c lib/parse_date.c lib/parse_tz.c
ext/date/lib/timelib.m4
0 commit comments