2010-12-21 13:54:03 +01:00
|
|
|
Index: gettext-runtime/intl/dcigettext.c
|
|
|
|
===================================================================
|
|
|
|
--- gettext-runtime/intl/dcigettext.c.orig 2010-06-06 14:49:57.000000000 +0200
|
|
|
|
+++ gettext-runtime/intl/dcigettext.c 2010-12-20 18:47:11.543133542 +0100
|
|
|
|
@@ -68,20 +68,7 @@ extern int errno;
|
2007-11-23 00:56:17 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <locale.h>
|
|
|
|
-
|
|
|
|
-#ifdef _LIBC
|
|
|
|
- /* Guess whether integer division by zero raises signal SIGFPE.
|
|
|
|
- Set to 1 only if you know for sure. In case of doubt, set to 0. */
|
|
|
|
-# if defined __alpha__ || defined __arm__ || defined __i386__ \
|
|
|
|
- || defined __m68k__ || defined __s390__
|
|
|
|
-# define INTDIV0_RAISES_SIGFPE 1
|
|
|
|
-# else
|
|
|
|
-# define INTDIV0_RAISES_SIGFPE 0
|
|
|
|
-# endif
|
|
|
|
-#endif
|
|
|
|
-#if !INTDIV0_RAISES_SIGFPE
|
|
|
|
-# include <signal.h>
|
|
|
|
-#endif
|
|
|
|
+#include <signal.h>
|
|
|
|
|
|
|
|
#if defined HAVE_SYS_PARAM_H || defined _LIBC
|
|
|
|
# include <sys/param.h>
|
2010-12-21 13:54:03 +01:00
|
|
|
Index: gettext-runtime/intl/eval-plural.h
|
|
|
|
===================================================================
|
|
|
|
--- gettext-runtime/intl/eval-plural.h.orig 2010-06-06 14:49:57.000000000 +0200
|
|
|
|
+++ gettext-runtime/intl/eval-plural.h 2010-12-20 18:48:36.928872823 +0100
|
|
|
|
@@ -62,16 +62,12 @@ plural_eval (const struct expression *pe
|
2007-11-23 00:56:17 +01:00
|
|
|
case mult:
|
|
|
|
return leftarg * rightarg;
|
|
|
|
case divide:
|
|
|
|
-#if !INTDIV0_RAISES_SIGFPE
|
|
|
|
if (rightarg == 0)
|
|
|
|
raise (SIGFPE);
|
|
|
|
-#endif
|
|
|
|
return leftarg / rightarg;
|
|
|
|
case module:
|
|
|
|
-#if !INTDIV0_RAISES_SIGFPE
|
|
|
|
if (rightarg == 0)
|
|
|
|
raise (SIGFPE);
|
|
|
|
-#endif
|
|
|
|
return leftarg % rightarg;
|
|
|
|
case plus:
|
|
|
|
return leftarg + rightarg;
|