]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
EMX support.
authorBruno Haible <bruno@clisp.org>
Mon, 5 May 2003 09:08:08 +0000 (09:08 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:10:26 +0000 (12:10 +0200)
gettext-tools/src/ChangeLog
gettext-tools/src/msgfilter.c

index 6d1948d297810bc3b9d1e76e9d9105851da69fef..01e6f2cc37f4fb4e303ef124a982024dc926c3f9 100644 (file)
@@ -1,3 +1,8 @@
+2003-05-03  Bruno Haible  <bruno@clisp.org>
+
+       * msgfilter.c: Include <sys/select.h> also on EMX.
+       Reported by Andreas Buening <andreas.buening@nexgo.de>.
+
 2003-04-26  Bruno Haible  <bruno@clisp.org>
 
        * message.h (msgdomain_list_ty): Add field 'encoding'.
index aa6f1dc6acd7e3437523db574db8127210c3a062..075b0ca8d5245b43195708938f58fb0243c24358 100644 (file)
@@ -39,8 +39,8 @@
 # include <unistd.h>
 #endif
 
-/* Get fd_set.  */
-#ifdef _AIX
+/* Get fd_set (on AIX) or select() declaration (on EMX).  */
+#if defined (_AIX) || defined (__EMX__)
 # include <sys/select.h>
 #endif