From: Bruno Haible Date: Mon, 5 May 2003 09:08:08 +0000 (+0000) Subject: EMX support. X-Git-Tag: v0.12~48 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=5c946f8bc59492bc269d6c6e9ac9d7e1d95ae6e7;p=thirdparty%2Fgettext.git EMX support. --- diff --git a/gettext-tools/src/ChangeLog b/gettext-tools/src/ChangeLog index 6d1948d29..01e6f2cc3 100644 --- a/gettext-tools/src/ChangeLog +++ b/gettext-tools/src/ChangeLog @@ -1,3 +1,8 @@ +2003-05-03 Bruno Haible + + * msgfilter.c: Include also on EMX. + Reported by Andreas Buening . + 2003-04-26 Bruno Haible * message.h (msgdomain_list_ty): Add field 'encoding'. diff --git a/gettext-tools/src/msgfilter.c b/gettext-tools/src/msgfilter.c index aa6f1dc6a..075b0ca8d 100644 --- a/gettext-tools/src/msgfilter.c +++ b/gettext-tools/src/msgfilter.c @@ -39,8 +39,8 @@ # include #endif -/* Get fd_set. */ -#ifdef _AIX +/* Get fd_set (on AIX) or select() declaration (on EMX). */ +#if defined (_AIX) || defined (__EMX__) # include #endif