summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtc <devnull@localhost>1998-05-08 18:41:51 +0000
committerwtc <devnull@localhost>1998-05-08 18:41:51 +0000
commit3de0f6679742b8ccab15ba8fa597bd8c83a2ada7 (patch)
treeb3a316f331a1fa14566a100d08e6f619c4df7113
parent42026ce1ab601bff554cf8f51f8ced09e6d76886 (diff)
downloadnspr-hg-3de0f6679742b8ccab15ba8fa597bd8c83a2ada7.tar.gz
Matt Watson <mwatson@apple.com> pointed out that it is not safe to
redefine FD_SETSIZE on Rhapsody.
-rw-r--r--pr/include/md/_unixos.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/pr/include/md/_unixos.h b/pr/include/md/_unixos.h
index bd203620..106de3d3 100644
--- a/pr/include/md/_unixos.h
+++ b/pr/include/md/_unixos.h
@@ -27,7 +27,7 @@
* Linux: FD_SETSIZE is defined in /usr/include/sys/select.h and should
* not be redefined.
*/
-#if !defined(LINUX)
+#if !defined(LINUX) && !defined(RHAPSODY)
#ifndef FD_SETSIZE
#define FD_SETSIZE 4096
#endif