diff options
author | Peter Kokot <peterkokot@gmail.com> | 2018-09-04 00:17:21 +0200 |
---|---|---|
committer | Joe Watkins <krakjoe@php.net> | 2018-09-04 12:01:24 +0200 |
commit | eff22dc511d677d12097018da630971d730b70f9 (patch) | |
tree | a4dc96ebc47b4d28db6452141d11c8d1d57d5a18 | |
parent | efbc05a5a8b5ae66bc059d57c375c524e4208d19 (diff) | |
download | php-git-eff22dc511d677d12097018da630971d730b70f9.tar.gz |
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 `<dirent.h>`
is available it defines the `HAVE_DIRENT_H` symbol. Since the `<dirent.h>`
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
`<sys/dir.h>`. This header exists from times of UNIX System V and
provided definition of DIR type on these systems such as 4.3BSD.
Today `<sys/dir.h>` is kept for backwards compatibility and includes
the `<dirent.h>` 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
-rw-r--r-- | configure.ac | 1 | ||||
-rw-r--r-- | ext/opcache/shared_alloc_shm.c | 1 | ||||
-rw-r--r-- | ext/opcache/zend_shared_alloc.c | 1 | ||||
-rw-r--r-- | ext/standard/dir.c | 4 | ||||
-rw-r--r-- | main/php_scandir.h | 4 |
5 files changed, 0 insertions, 11 deletions
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 <sys/types.h> #include <sys/shm.h> #include <sys/ipc.h> -#include <dirent.h> #include <signal.h> #include <stdio.h> #include <stdlib.h> 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 <fcntl.h> #ifndef ZEND_WIN32 # include <sys/types.h> -# include <dirent.h> # include <signal.h> # include <sys/stat.h> # include <stdio.h> 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 <dirent.h> -#endif - #if HAVE_UNISTD_H #include <unistd.h> #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 <sys/types.h> -#ifdef HAVE_SYS_DIR_H -#include <sys/dir.h> -#endif - #ifdef PHP_WIN32 #include "config.w32.h" #include "win32/readdir.h" |