summaryrefslogtreecommitdiff
path: root/sapi/cgi
diff options
context:
space:
mode:
authorPeter Kokot <peterkokot@gmail.com>2019-04-07 15:55:34 +0200
committerPeter Kokot <peterkokot@gmail.com>2019-04-07 15:55:34 +0200
commit5f8915786f9fc3ec1af1089c9848f65a8d1541f5 (patch)
tree9c93612a1def57475dbc2b43038103b39246d8b1 /sapi/cgi
parentfd1ad1e25a6d0676a560d237ff5f44faa6e1dc87 (diff)
downloadphp-git-5f8915786f9fc3ec1af1089c9848f65a8d1541f5.tar.gz
Remove HAVE_SIGNAL_H
The `<signal.h>` header file is part of the standard C89 headers [1] and on current systems can be included unconditionally. Since file requires at least C89 or greater, the `HAVE_SIGNAL_H` symbol defined by Autoconf in Zend.m4 [2] can be ommitted and simplifed. The bundled libmagic (file) also ommits the usage of HAVE_SIGNAL_H since 5.35 however current version in PHP is very modified 5.34 version and will be refactored separately. Check for HAVE_SIGNAL_H is therefore still done in the configure.ac. Refs: [1] https://port70.net/~nsz/c/c89/c89-draft.html#4.1.2 [2] https://git.savannah.gnu.org/cgit/autoconf.git/tree/lib/autoconf/headers.m4
Diffstat (limited to 'sapi/cgi')
-rw-r--r--sapi/cgi/cgi_main.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/sapi/cgi/cgi_main.c b/sapi/cgi/cgi_main.c
index b22d37f89b..8a461d8c44 100644
--- a/sapi/cgi/cgi_main.c
+++ b/sapi/cgi/cgi_main.c
@@ -45,9 +45,7 @@
# include <unistd.h>
#endif
-#if HAVE_SIGNAL_H
-# include <signal.h>
-#endif
+#include <signal.h>
#if HAVE_SETLOCALE
# include <locale.h>
@@ -1779,7 +1777,6 @@ int main(int argc, char *argv[])
char *decoded_query_string;
int skip_getopt = 0;
-#ifdef HAVE_SIGNAL_H
#if defined(SIGPIPE) && defined(SIG_IGN)
signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE in standalone mode so
that sockets created via fsockopen()
@@ -1788,7 +1785,6 @@ int main(int argc, char *argv[])
does that for us! thies@thieso.net
20000419 */
#endif
-#endif
#ifdef ZTS
php_tsrm_startup();