diff options
author | Anantha Kesari H Y <hyanantha@php.net> | 2002-09-05 10:13:27 +0000 |
---|---|---|
committer | Anantha Kesari H Y <hyanantha@php.net> | 2002-09-05 10:13:27 +0000 |
commit | 77e2ed48346e8ed424c38a49b7ab006e45ecffb2 (patch) | |
tree | 9d44055ae295a91e5fd30a0acc194cce64146e1c /ext/ftp/php_ftp.c | |
parent | 6c51af03e5f39af3dcb67ad25167d2c44ded6d88 (diff) | |
download | php-git-77e2ed48346e8ed424c38a49b7ab006e45ecffb2.tar.gz |
NetWare related additions/modifications into FTP files
Diffstat (limited to 'ext/ftp/php_ftp.c')
-rw-r--r-- | ext/ftp/php_ftp.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ext/ftp/php_ftp.c b/ext/ftp/php_ftp.c index 5aeaa9cca5..d1aa51b45f 100644 --- a/ext/ftp/php_ftp.c +++ b/ext/ftp/php_ftp.c @@ -25,6 +25,16 @@ #include "php.h" +#ifdef NETWARE +#ifdef USE_WINSOCK +#include <novsock2.h> +#else +#ifndef NEW_LIBC +#include <sys/socket.h> +#endif +#endif +#endif + #if HAVE_FTP #include "ext/standard/info.h" |