]> granicus.if.org Git - php/commitdiff
Remove AC_HEADER_TIME
authorPeter Kokot <peterkokot@gmail.com>
Sat, 1 Sep 2018 04:40:53 +0000 (06:40 +0200)
committerPeter Kokot <peterkokot@gmail.com>
Sun, 2 Sep 2018 17:24:55 +0000 (19:24 +0200)
Autoconf 2.59d (released in 2006) [1] started promoting several macros
as not relevant for newer systems anymore, including the `AC_HEADER_TIME`.

This macro checks if both `<sys/time.h>` and `<time.h>` can be included
at the same time and defines the `TIME_WITH_SYS_TIME` and
`HAVE_SYS_TIME_H` symbols. On current system such check is not relevant
anymore because in case both headers are present both can be also
included at the same time.

This patch simplifies this checking.

Refs:
[1] http://git.savannah.gnu.org/cgit/autoconf.git/tree/NEWS
[2] https://www.gnu.org/software/autoconf/manual/autoconf-2.69/autoconf.html

ext/mbstring/config.m4
ext/xmlrpc/libxmlrpc/acinclude.m4

index b5503f351694312a244928c91a8ea035142bb76c..a1a9f21bfe58950002ba7d27859af4d4486169b6 100644 (file)
@@ -98,7 +98,6 @@ int main() { return foo(10, "", 3.14); }
       AC_CHECK_SIZEOF(int, 4)
       AC_CHECK_SIZEOF(short, 2)
       AC_CHECK_SIZEOF(long, 4)
-      AC_HEADER_TIME
       AC_FUNC_ALLOCA
       AC_FUNC_MEMCMP
       AC_CHECK_HEADER([stdarg.h], [
index 77e372c3a35346274ae4b90389d9ae20921a24fe..ad23e0a245c877e879f20070c63464d63955fd0f 100644 (file)
@@ -24,7 +24,6 @@ AC_CHECK_SIZEOF(int, 4)
 AC_CHECK_SIZEOF(long, 4)
 AC_CHECK_SIZEOF(long long, 8)
 AC_TYPE_SIZE_T
-AC_HEADER_TIME
 AC_TYPE_UID_T