sys_select: Ensure all necessary types on NonStop Kernel.
authorBruno Haible <bruno@clisp.org>
Fri, 24 Dec 2010 15:27:04 +0000 (16:27 +0100)
committerBruno Haible <bruno@clisp.org>
Fri, 24 Dec 2010 15:27:04 +0000 (16:27 +0100)
* lib/sys_select.in.h: If the system does not have <sys/select.h>,
include <sys/time.h>.
* doc/posix-headers/sys_select.texi: Mention that it's missing on
NonStop Kernel.
Reported by Joachim Schmitz <jojo@schmitz-digital.de>.

ChangeLog
doc/posix-headers/sys_select.texi
lib/sys_select.in.h

index edab313c04d59d0c9ad02392a28167470064d1af..ed375b6a49d537d65c21cf8e491bc8d58eeffa0b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2010-12-24  Bruno Haible  <bruno@clisp.org>
+
+       sys_select: Ensure all necessary types on NonStop Kernel.
+       * lib/sys_select.in.h: If the system does not have <sys/select.h>,
+       include <sys/time.h>.
+       * doc/posix-headers/sys_select.texi: Mention that it's missing on
+       NonStop Kernel.
+       Reported by Joachim Schmitz <jojo@schmitz-digital.de>.
+
 2010-12-24  Bruno Haible  <bruno@clisp.org>
 
        sys_select: Remove unneeded include.
index 5e2622eea2bfe191d2d3ba1f6f18a1d3f7826d68..db1b96988d9d669f2ef318a6ea38e5c787e65555 100644 (file)
@@ -9,7 +9,7 @@ Portability problems fixed by Gnulib:
 @itemize
 @item
 This header file is missing on some platforms:
-HP-UX 11.11, mingw, BeOS.
+HP-UX 11.11, NonStop Kernel, mingw, BeOS.
 @item
 This header file is not self-contained on some platforms: it requires
 @code{<sys/types.h>} to be included first.
index baaf51057790cc02e79342535f960846eb07c954..77472bf5fd58850b9cb68476989c929bacf79c3f 100644 (file)
@@ -44,6 +44,8 @@
 
 /* On OSF/1 4.0, <sys/select.h> provides only a forward declaration
    of 'struct timeval', and no definition of this type.
+   Also, MacOS X, AIX, HP-UX, IRIX, Solaris, Interix declare select()
+   in <sys/time.h>.
    But avoid namespace pollution on glibc systems.  */
 # ifndef __GLIBC__
 #  include <sys/time.h>
@@ -67,6 +69,9 @@
 
 #if !@HAVE_SYS_SELECT_H@
 /* A platform that lacks <sys/select.h>.  */
+/* Get the 'struct timeval' and 'fd_set' types and the FD_* macros
+   on most platforms.  */
+# include <sys/time.h>
 /* On native Windows platforms:
    Get the 'fd_set' type.  Also, gnulib's <sys/socket.h> redefines select
    so as to hide the declaration from <winsock2.h>.  */