From: Peter Kokot Date: Mon, 3 Sep 2018 22:17:21 +0000 (+0200) Subject: Remove AC_HEADER_DIRENT X-Git-Tag: php-7.4.0alpha1~1998 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eff22dc511d677d12097018da630971d730b70f9;p=php Remove AC_HEADER_DIRENT Autoconf 2.59d (released in 2006) [1] started promoting several macros as not relevant for newer systems anymore, including the `AC_HEADER_DIRENT`. This macro checks which header defines the `DIR` type. If `` is available it defines the `HAVE_DIRENT_H` symbol. Since the `` header is already checked in the `configure.ac`, this check is not needed anymore. This macro also additionally checks for SCO Xenix (discontinued, latest release 1989) dir and x libraries. [2] Commit 6ed790685f9ddae11834f36b0ba4fea58afc805a introduced also ``. This header exists from times of UNIX System V and provided definition of DIR type on these systems such as 4.3BSD. Today `` is kept for backwards compatibility and includes the `` on current systems. With `dirent.h>` present this include is no longer required. 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 Remove unused dirent.h includes --- diff --git a/configure.ac b/configure.ac index 4758c9289a..06ae3f406c 100644 --- a/configure.ac +++ b/configure.ac @@ -420,7 +420,6 @@ dnl ------------------------------------------------------------------------- dnl Checks for header files. AC_HEADER_STDC -AC_HEADER_DIRENT dnl QNX requires unix.h to allow functions in libunix to work properly AC_CHECK_HEADERS([ \ diff --git a/ext/opcache/shared_alloc_shm.c b/ext/opcache/shared_alloc_shm.c index 71d07e21ac..c310290e8e 100644 --- a/ext/opcache/shared_alloc_shm.c +++ b/ext/opcache/shared_alloc_shm.c @@ -29,7 +29,6 @@ #include #include #include -#include #include #include #include diff --git a/ext/opcache/zend_shared_alloc.c b/ext/opcache/zend_shared_alloc.c index a40eac3d71..a758214c26 100644 --- a/ext/opcache/zend_shared_alloc.c +++ b/ext/opcache/zend_shared_alloc.c @@ -28,7 +28,6 @@ #include #ifndef ZEND_WIN32 # include -# include # include # include # include diff --git a/ext/standard/dir.c b/ext/standard/dir.c index 82c329c20e..0e20db34bc 100644 --- a/ext/standard/dir.c +++ b/ext/standard/dir.c @@ -26,10 +26,6 @@ #include "php_scandir.h" #include "basic_functions.h" -#ifdef HAVE_DIRENT_H -#include -#endif - #if HAVE_UNISTD_H #include #endif diff --git a/main/php_scandir.h b/main/php_scandir.h index ce31bc200c..17d5e9e0de 100644 --- a/main/php_scandir.h +++ b/main/php_scandir.h @@ -22,10 +22,6 @@ #include -#ifdef HAVE_SYS_DIR_H -#include -#endif - #ifdef PHP_WIN32 #include "config.w32.h" #include "win32/readdir.h"