diff options
| author | Peter Kokot <peterkokot@gmail.com> | 2018-09-01 06:40:53 +0200 |
|---|---|---|
| committer | Peter Kokot <peterkokot@gmail.com> | 2018-09-02 19:24:55 +0200 |
| commit | f86d3de87f143ebb2f4a29a5d76edc62256a386b (patch) | |
| tree | 25e55b39d894a3adead356f263714fb33086ccec /ext/xmlrpc/libxmlrpc | |
| parent | 8e230d364d9d86b7b4d1eec1cbc2a26d843393be (diff) | |
| download | php-git-f86d3de87f143ebb2f4a29a5d76edc62256a386b.tar.gz | |
Remove AC_HEADER_TIME
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
Diffstat (limited to 'ext/xmlrpc/libxmlrpc')
| -rw-r--r-- | ext/xmlrpc/libxmlrpc/acinclude.m4 | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/xmlrpc/libxmlrpc/acinclude.m4 b/ext/xmlrpc/libxmlrpc/acinclude.m4 index 77e372c3a3..ad23e0a245 100644 --- a/ext/xmlrpc/libxmlrpc/acinclude.m4 +++ b/ext/xmlrpc/libxmlrpc/acinclude.m4 @@ -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 |
