From: Andi Gutmans Date: Thu, 10 Feb 2000 21:55:30 +0000 (+0000) Subject: - A bit more PHP_WIN32 work X-Git-Tag: BEFORE_SAPI_POST_PATCH_17_FEB_2000~91 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8d012c45e257214b79f22c207deed551c366bdad;p=php - A bit more PHP_WIN32 work --- diff --git a/ext/zlib/zlib.c b/ext/zlib/zlib.c index 6886aff995..1b8b39e23a 100644 --- a/ext/zlib/zlib.c +++ b/ext/zlib/zlib.c @@ -27,7 +27,7 @@ #include #include #include -#if (WIN32|WINNT) +#if PHP_WIN32 #include #include #define O_RDONLY _O_RDONLY @@ -42,7 +42,7 @@ #include "php_zlib.h" #include "fopen-wrappers.h" #if HAVE_PWD_H -#if WIN32|WINNT +#if PHP_WIN32 #include "win32/pwd.h" #else #include @@ -50,7 +50,7 @@ #endif #include "snprintf.h" #if HAVE_ZLIB -#if defined(HAVE_UNISTD_H) && (WIN32|WINNT) +#if defined(HAVE_UNISTD_H) && PHP_WIN32 #undef HAVE_UNISTD_H #endif @@ -197,7 +197,7 @@ static gzFile *php_gzopen_with_path(char *filename, char *mode, char *path, char } /* Absolute path open - prepend document_root in safe mode */ -#if WIN32|WINNT +#if PHP_WIN32 if ((*filename == '\\')||(*filename == '/')||(filename[1] == ':')) { #else if (*filename == '/') { @@ -240,7 +240,7 @@ static gzFile *php_gzopen_with_path(char *filename, char *mode, char *path, char ptr = pathbuf; while (ptr && *ptr) { -#if WIN32|WINNT +#if PHP_WIN32 end = strchr(ptr, ';'); #else end = strchr(ptr, ':');