]> granicus.if.org Git - php/commitdiff
cleanup
authorSascha Schumann <sas@php.net>
Wed, 21 Apr 1999 17:48:11 +0000 (17:48 +0000)
committerSascha Schumann <sas@php.net>
Wed, 21 Apr 1999 17:48:11 +0000 (17:48 +0000)
configure.in.in
internal_functions.c
php_compat.c

index 40c409180c2e01c856f89dfe6010cac4704f0951..0c19f12519c9464036169eb6d36671edf6526e5c 100644 (file)
@@ -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"); 
index 215dd0341bc39e60ef59d4ac14e4761c2f4c3abf..6048ada3f8984b31db2de0498031ec7a9df1ce0c 100644 (file)
@@ -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,
 };
 
        
index 8a5f973eb12104a1a7a788df45b872987639162c..736180ac6bbdd78aa1b3aa9cf8401dd980996c4a 100644 (file)
@@ -30,6 +30,7 @@
  */
 
 
+#include <php.h>
 #include <errno.h>
 #include "php_compat.h"