diff options
author | Stig Bakken <ssb@php.net> | 1999-06-16 17:06:53 +0000 |
---|---|---|
committer | Stig Bakken <ssb@php.net> | 1999-06-16 17:06:53 +0000 |
commit | 117a2fba0719f071678d172031388a2707041141 (patch) | |
tree | 4957e176e6bd4500aa010d775f69a06441501d76 /acconfig.h.in | |
parent | 5d4579a1f4093654441894ed0e384159f2340ef9 (diff) | |
download | php-git-117a2fba0719f071678d172031388a2707041141.tar.gz |
* fixed some #if/#ifdef issues
* hand-patched in php3 changes from 3.0.6 to HEAD in these files:
fopen-wrappers.[ch] ext/standard/file.[ch] ext/standard/fsock.[ch]
ext/standard/php3_string.h ext/standard/string.c
* added some new file/socket macros for more readable code:
FP_FGETS(buf,len,sock,fp,issock)
FP_FREAD(buf,len,sock,fp,issock)
FP_FEOF(sock,fp,issock)
FP_FGETC(sock,fp,issock)
Diffstat (limited to 'acconfig.h.in')
-rw-r--r-- | acconfig.h.in | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/acconfig.h.in b/acconfig.h.in index b97a59589f..55c94a3790 100644 --- a/acconfig.h.in +++ b/acconfig.h.in @@ -26,10 +26,10 @@ /* Define if you have dirent.h but opendir() resides in libc rather than in libdir */ /* This will cause HAVE_DIRENT_H defined twice sometimes, but it should be problem */ -#define HAVE_DIRENT_H 0 +#undef HAVE_DIRENT_H /* Define if you have the resolv library (-lresolv). */ -#define HAVE_LIBRESOLV 0 +#undef HAVE_LIBRESOLV /* Define if you have the pam library (-lpam). */ #define HAVE_LIBPAM 0 @@ -62,10 +62,10 @@ #define HSREGEX 0 /* Define if you have and want to use libnsl */ -#define HAVE_LIBNSL 0 +#undef HAVE_LIBNSL /* Define if you have and want to use libsocket */ -#define HAVE_LIBSOCKET 0 +#undef HAVE_LIBSOCKET /* Define if you have the sendmail program available */ #define HAVE_SENDMAIL 0 @@ -92,12 +92,6 @@ #define DEBUG 0 #endif -/* Define if your system has the gettimeofday() call */ -#define HAVE_GETTIMEOFDAY 0 - -/* Define if your system has the putenv() library call */ -#define HAVE_PUTENV 0 - /* Define if you want to enable PHP RPC (experimental) */ #define PHP_RPC 0 |