sniper Sun Jan 25 01:09:38 2004 EDT Modified files: /php-src/ext/standard file.c Log: Fixed bug #27020 (Compile failure; sys/select.h: No such file or directory) http://cvs.php.net/diff.php/php-src/ext/standard/file.c?r1=1.378&r2=1.379&ty=u Index: php-src/ext/standard/file.c diff -u php-src/ext/standard/file.c:1.378 php-src/ext/standard/file.c:1.379 --- php-src/ext/standard/file.c:1.378 Mon Jan 19 13:40:39 2004 +++ php-src/ext/standard/file.c Sun Jan 25 01:09:36 2004 @@ -21,7 +21,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: file.c,v 1.378 2004/01/19 18:40:39 iliaa Exp $ */ +/* $Id: file.c,v 1.379 2004/01/25 06:09:36 sniper Exp $ */ /* Synced with php 3.0 revision 1.218 1999-06-16 [ssb] */ @@ -52,8 +52,12 @@ #include <sys/socket.h> #include "netware/param.h" #else +#if HAVE_SYS_PARAM_H #include <sys/param.h> +#endif +#if HAVE_SYS_SELECT_H #include <sys/select.h> +#endif #if defined(NETWARE) && defined(USE_WINSOCK) #include <novsock2.h> #else
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php