From 7ab517bcbfb30eb768c7bca02a1a540e7e9a0092 Mon Sep 17 00:00:00 2001 From: Anantha Kesari H Y Date: Fri, 8 Oct 2004 07:43:41 +0000 Subject: [PATCH] explicitly including sys/select.h as NetWare LibC sys/types.h does not include sys/select.h implicitly as other LibC --- Zend/acconfig.h | 4 ++++ Zend/zend_config.nw.h | 1 + 2 files changed, 5 insertions(+) diff --git a/Zend/acconfig.h b/Zend/acconfig.h index 6bb0d4bae7..211a8268be 100644 --- a/Zend/acconfig.h +++ b/Zend/acconfig.h @@ -47,6 +47,10 @@ # include #endif +#ifdef HAVE_SYS_SELECT_H +#include +#endif + #ifdef HAVE_IEEEFP_H # include #endif diff --git a/Zend/zend_config.nw.h b/Zend/zend_config.nw.h index 1e4179e22e..e28d610860 100644 --- a/Zend/zend_config.nw.h +++ b/Zend/zend_config.nw.h @@ -34,6 +34,7 @@ typedef unsigned int uint; /* #include */ #define HAVE_STRING_H 1 +#define HAVE_SYS_SELECT_H 1 #define HAVE_STDLIB_H 1 #undef HAVE_KILL #define HAVE_GETPID 1 -- 2.50.1