php PHP.net news server web interface
From:Anantha Kesari H Y Date:Fri Oct  8 03:43:43 2004
Subject:cvs: ZendEngine2 / acconfig.h zend_config.nw.h
Groups:php.zend-engine.cvs
hyanantha		Fri Oct  8 03:43:43 2004 EDT

  Modified files:              
    /ZendEngine2	acconfig.h zend_config.nw.h 
  Log:
  explicitly including sys/select.h as NetWare LibC sys/types.h does not include sys/select.h implicitly as other LibC
  
  
http://cvs.php.net/diff.php/ZendEngine2/acconfig.h?r1=1.35&r2=1.36&ty=u
Index: ZendEngine2/acconfig.h
diff -u ZendEngine2/acconfig.h:1.35 ZendEngine2/acconfig.h:1.36
--- ZendEngine2/acconfig.h:1.35	Wed Sep 22 08:45:28 2004
+++ ZendEngine2/acconfig.h	Fri Oct  8 03:43:41 2004
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: acconfig.h,v 1.35 2004/09/22 12:45:28 hyanantha Exp $ */
+/* $Id: acconfig.h,v 1.36 2004/10/08 07:43:41 hyanantha Exp $ */
 
 #define ZEND_API
 #define ZEND_DLEXPORT
@@ -47,6 +47,10 @@
 # include <sys/types.h>
 #endif
 
+#ifdef HAVE_SYS_SELECT_H
+#include <sys/select.h>
+#endif
+
 #ifdef HAVE_IEEEFP_H
 # include <ieeefp.h>
 #endif
http://cvs.php.net/diff.php/ZendEngine2/zend_config.nw.h?r1=1.6&r2=1.7&ty=u
Index: ZendEngine2/zend_config.nw.h
diff -u ZendEngine2/zend_config.nw.h:1.6 ZendEngine2/zend_config.nw.h:1.7
--- ZendEngine2/zend_config.nw.h:1.6	Wed Sep 22 09:42:32 2004
+++ ZendEngine2/zend_config.nw.h	Fri Oct  8 03:43:41 2004
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: zend_config.nw.h,v 1.6 2004/09/22 13:42:32 hyanantha Exp $ */
+/* $Id: zend_config.nw.h,v 1.7 2004/10/08 07:43:41 hyanantha Exp $ */
 
 #ifndef ZEND_CONFIG_NW_H
 #define ZEND_CONFIG_NW_H
@@ -34,6 +34,7 @@
 /* #include <malloc.h> */
 
 #define HAVE_STRING_H 1
+#define HAVE_SYS_SELECT_H 1
 #define HAVE_STDLIB_H 1
 #undef HAVE_KILL
 #define HAVE_GETPID 1

written by jim winstead. no rights reserved. (source code)