summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Klinger <evan@php.net>2000-02-20 05:32:51 +0000
committerEvan Klinger <evan@php.net>2000-02-20 05:32:51 +0000
commit77633372559bb3dc8e326c56306dd15e5a2b7b48 (patch)
treee3617ab45a7e130f40610eccf59b5f07870162ee
parent1ce2132b97964cbee564ab3028f1765310b092ba (diff)
downloadphp-git-77633372559bb3dc8e326c56306dd15e5a2b7b48.tar.gz
Eliminate compile errors relating to signals.
-rw-r--r--ext/mysql/php_mysql.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/mysql/php_mysql.c b/ext/mysql/php_mysql.c
index 1414d6e173..89364a4f02 100644
--- a/ext/mysql/php_mysql.c
+++ b/ext/mysql/php_mysql.c
@@ -43,7 +43,9 @@
#include <netdb.h>
#include <netinet/in.h>
#endif
-
+#if HAVE_SIGNAL_H
+#include <signal.h>
+#endif
/* True globals, no need for thread safety */
static int le_result,le_link,le_plink;