From: Bruno Haible Date: Mon, 22 Jul 2002 13:13:54 +0000 (+0000) Subject: Avoid compilation error on platforms without INTDIV0_RAISES_SIGFPE. X-Git-Tag: v0.11.4~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2dd68568684236b4d641bd635841e683023b76de;p=thirdparty%2Fgettext.git Avoid compilation error on platforms without INTDIV0_RAISES_SIGFPE. --- diff --git a/src/ChangeLog b/src/ChangeLog index 6f45c26f8..48d0fca84 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2002-07-20 Andreas Schwab + + * plural-eval.c: Include if !INTDIV0_RAISES_SIGFPE. + 2002-07-17 Bruno Haible * gettext-0.11.3 released. diff --git a/src/plural-eval.c b/src/plural-eval.c index ddf2699bf..7344f7351 100644 --- a/src/plural-eval.c +++ b/src/plural-eval.c @@ -20,6 +20,10 @@ # include #endif +#if !INTDIV0_RAISES_SIGFPE +# include +#endif + #include "plural-exp.h" #define STATIC /*extern*/