diff options
author | Anantha Kesari H Y <hyanantha@php.net> | 2005-03-21 08:46:50 +0000 |
---|---|---|
committer | Anantha Kesari H Y <hyanantha@php.net> | 2005-03-21 08:46:50 +0000 |
commit | 1a429389b7db9cc51a350f6c32b0aba0b36050c0 (patch) | |
tree | 4cd0a8e1abeea523ff5eac6ff17493068b39bdba | |
parent | 0f8e76468579cbec8c2a3eeae3b955a3df40f006 (diff) | |
download | php-git-1a429389b7db9cc51a350f6c32b0aba0b36050c0.tar.gz |
NetWare LibC headers have sys/param.h
-rw-r--r-- | ext/standard/file.c | 4 | ||||
-rw-r--r-- | ext/standard/ftp_fopen_wrapper.c | 8 | ||||
-rw-r--r-- | ext/standard/http_fopen_wrapper.c | 8 |
3 files changed, 0 insertions, 20 deletions
diff --git a/ext/standard/file.c b/ext/standard/file.c index 1e798fee66..5178ac6e2e 100644 --- a/ext/standard/file.c +++ b/ext/standard/file.c @@ -47,10 +47,6 @@ #define O_RDONLY _O_RDONLY #include "win32/param.h" #include "win32/winutil.h" -#elif defined(NETWARE) && !defined(NEW_LIBC) -/*#include <ws2nlm.h>*/ -#include <sys/socket.h> -#include "netware/param.h" #else #if HAVE_SYS_PARAM_H #include <sys/param.h> diff --git a/ext/standard/ftp_fopen_wrapper.c b/ext/standard/ftp_fopen_wrapper.c index 8637f25f60..e715237a13 100644 --- a/ext/standard/ftp_fopen_wrapper.c +++ b/ext/standard/ftp_fopen_wrapper.c @@ -35,14 +35,6 @@ #include <winsock2.h> #define O_RDONLY _O_RDONLY #include "win32/param.h" -#elif defined(NETWARE) -/*#include <ws2nlm.h>*/ -/*#include <sys/socket.h>*/ -#ifdef NEW_LIBC -#include <sys/param.h> -#else -#include "netware/param.h" -#endif #else #include <sys/param.h> #endif diff --git a/ext/standard/http_fopen_wrapper.c b/ext/standard/http_fopen_wrapper.c index d45864fedd..892fe9bd5e 100644 --- a/ext/standard/http_fopen_wrapper.c +++ b/ext/standard/http_fopen_wrapper.c @@ -37,14 +37,6 @@ #ifdef PHP_WIN32 #define O_RDONLY _O_RDONLY #include "win32/param.h" -#elif defined(NETWARE) -/*#include <ws2nlm.h>*/ -/*#include <sys/socket.h>*/ -#ifdef NEW_LIBC -#include <sys/param.h> -#else -#include "netware/param.h" -#endif #else #include <sys/param.h> #endif |