[project @ 1997-03-20 22:25:32 by sof]
authorsof <unknown>
Thu, 20 Mar 1997 22:25:32 +0000 (22:25 +0000)
committersof <unknown>
Thu, 20 Mar 1997 22:25:32 +0000 (22:25 +0000)
Rename __FD_SETSIZE to FD_SETSIZE, if necessary

ghc/includes/stgdefs.h

index 613c161..964cfce 100644 (file)
@@ -247,9 +247,10 @@ char   *stgMallocWords PROTO((I_, char *));
 #include <sys/types.h>
 #endif  /* HAVE_SYS_TYPES_H */
 
-/* A real hack this */
-#ifndef linux_TARGET_OS
-# ifndef FD_SETSIZE
+#ifndef FD_SETSIZE
+# ifdef __FD_SETSIZE
+#  define FD_SETSIZE __FD_SETSIZE
+# else /* cop out */
 #  define FD_SETSIZE 1024
 # endif
 #endif