From 6d0ab6166cc1a4eca90211cdfa0ca144704ad677 Mon Sep 17 00:00:00 2001 From: Zeev Suraski Date: Thu, 10 Feb 2000 19:41:21 +0000 Subject: SAPIfication, Episode VI: Return of the SAPI Remove mostly all references to APACHE and CGI_BINARY from the code. - Apache include files are no longer included by any PHP code, except for the Apache SAPI module. - No server specific code is in any of the base PHP code. Still left to be done: - Eliminate any references to APACHE from the few remaining modules. - Move request_info.c's logic to SAPI - Modify the regex function names, and globals, so that we can always include them, without having to fear any interference with Apache; Always use the bundled regex library --- main/win95nt.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'main/win95nt.h') diff --git a/main/win95nt.h b/main/win95nt.h index b481d70f61..1d565aa8f6 100644 --- a/main/win95nt.h +++ b/main/win95nt.h @@ -25,9 +25,7 @@ typedef char * caddr_t; #define mkdir(a,b) _mkdir(a) #define rmdir _rmdir #define getpid _getpid -#if !(APACHE) -#define sleep(t) Sleep(t*1000) -#endif +#define php_sleep(t) Sleep(t*1000) #define getcwd _getcwd #define snprintf _snprintf #define off_t _off_t -- cgit v1.2.1