]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Minix portability.
authorBruno Haible <bruno@clisp.org>
Mon, 22 May 2006 12:20:00 +0000 (12:20 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:13:21 +0000 (12:13 +0200)
gettext-tools/src/ChangeLog
gettext-tools/src/msgfilter.c

index ee444f18049762dc4d80206b05a5f1522f3d148a..7b31356af66bd183f3319c1752cda13acdb42269 100644 (file)
@@ -1,3 +1,8 @@
+2006-05-22  Bruno Haible  <bruno@clisp.org>
+
+       * msgfilter.c: Include <sys/select.h> also on Minix.
+       Reported by Leonard den Ottolander <leonard@den.ottolander.nl>.
+
 2006-05-17  Bruno Haible  <bruno@clisp.org>
 
        Cygwin portability.
index 1ee5ab0db587b07aec94da4f16d5df5737943651..1407b8f779062e971d5f0421a7540f1e1f56a498 100644 (file)
@@ -40,8 +40,8 @@
 # include <io.h>
 #endif
 
-/* Get fd_set (on AIX) or select() declaration (on EMX).  */
-#if defined (_AIX) || defined (__EMX__)
+/* Get fd_set (on AIX or Minix) or select() declaration (on EMX).  */
+#if defined (_AIX) || defined (_MINIX) || defined (__EMX__)
 # include <sys/select.h>
 #endif