From 93c6b535b22a07181eab21c70c072940429f110c Mon Sep 17 00:00:00 2001 From: Kean Johnson Date: Fri, 10 Jun 2005 06:54:09 +0000 Subject: SCO port update for SCO OpenServer 5 and UnixWare 7. A few general cleanups and bugs not specifically related to the port fixed along the way. --- os/osdep.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/os/osdep.h b/os/osdep.h index e8bd527..4b07b28 100644 --- a/os/osdep.h +++ b/os/osdep.h @@ -74,17 +74,16 @@ in this Software without prior written authorization from The Open Group. #define OPEN_MAX 256 #else #ifdef SVR4 -#ifdef SCO324 -#define OPEN_MAX sysconf(_SC_OPEN_MAX) -#else #define OPEN_MAX 128 -#endif #else #include #ifdef __GNU__ #define OPEN_MAX (sysconf(_SC_OPEN_MAX)) #endif /*__GNU__*/ #ifndef OPEN_MAX +#ifdef SCO325 +#define OPEN_MAX (sysconf(_SC_OPEN_MAX)) +#else #if defined(NOFILE) && !defined(NOFILES_MAX) #define OPEN_MAX NOFILE #else @@ -94,8 +93,9 @@ in this Software without prior written authorization from The Open Group. #endif #endif #endif +#endif -#ifdef __GNU__ +#if defined(__GNU__) || defined(SCO325) #define MAXSOCKS 128 #else /*__GNU__*/ #if OPEN_MAX <= 128 /* 128 is value of MAXCLIENTS */ -- cgit v1.2.3