summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>1999-04-21 17:48:11 +0000
committerSascha Schumann <sas@php.net>1999-04-21 17:48:11 +0000
commit2873f446f26f3f334500a5892b92b326294ee8c6 (patch)
treee37a23b7dfb30e529f71c068959ece1a4fd2ed8c
parent7aad23132703ae2ab35b9faf1bc955af8376e03e (diff)
downloadphp-git-2873f446f26f3f334500a5892b92b326294ee8c6.tar.gz
cleanup
-rw-r--r--configure.in.in2
-rw-r--r--internal_functions.c2
-rw-r--r--php_compat.c1
3 files changed, 4 insertions, 1 deletions
diff --git a/configure.in.in b/configure.in.in
index 40c409180c..0c19f12519 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -209,7 +209,7 @@ else
fi
AC_MISSING_FCLOSE_DECL
dnl QNX requires unix.h to allow functions in libunix to work properly
-AC_CHECK_HEADERS(fcntl.h unistd.h crypt.h sys/file.h memory.h pwd.h grp.h sys/socket.h sys/wait.h syslog.h string.h sys/varargs.h stdarg.h sys/time.h signal.h netinet/in.h dlfcn.h limits.h sys/types.h unix.h)
+AC_CHECK_HEADERS(fcntl.h unistd.h crypt.h sys/file.h memory.h pwd.h grp.h sys/socket.h sys/wait.h syslog.h string.h sys/varargs.h stdarg.h sys/time.h signal.h netinet/in.h dlfcn.h limits.h sys/types.h unix.h arpa/inet.h)
if test "$DBM_LIB" = "-lgdbm"; then
AC_CHECK_HEADER(gdbm.h, [ GDBM_INCLUDE="" ], [
AC_MSG_RESULT("Try /usr/local/include/gdbm.h");
diff --git a/internal_functions.c b/internal_functions.c
index 215dd0341b..6048ada3f8 100644
--- a/internal_functions.c
+++ b/internal_functions.c
@@ -44,6 +44,7 @@
#include "ext/gd/php3_gd.h"
#include "ext/dbase/dbase.h"
#include "ext/odbc/php3_odbc.h"
+#include "ext/gettext/php3_gettext.h"
#include "functions/php3_ifx.h"
#include "functions/php3_ldap.h"
@@ -119,6 +120,7 @@ zend_module_entry *php3_builtin_modules[] =
sysvsem_module_ptr,
sysvshm_module_ptr,
phpdav_module_ptr,
+ php3_gettext_module_ptr,
};
diff --git a/php_compat.c b/php_compat.c
index 8a5f973eb1..736180ac6b 100644
--- a/php_compat.c
+++ b/php_compat.c
@@ -30,6 +30,7 @@
*/
+#include <php.h>
#include <errno.h>
#include "php_compat.h"