diff options
author | Holger Weiss <holger@zedat.fu-berlin.de> | 2013-08-19 21:27:12 (GMT) |
---|---|---|
committer | Holger Weiss <holger@zedat.fu-berlin.de> | 2013-08-19 21:27:12 (GMT) |
commit | 26fbe7f1e68bb0c96da32491efcf3696fe6c299b (patch) | |
tree | c4d95289187a64e9c7517bf73d8208026c3d2fb3 /gl/m4/intdiv0.m4 | |
parent | 5f79e3e9f62ca5487d9881973149136ba1d19d3e (diff) | |
download | monitoring-plugins-26fbe7f1e68bb0c96da32491efcf3696fe6c299b.tar.gz |
Sync with the latest Gnulib code (6f2d632)
Diffstat (limited to 'gl/m4/intdiv0.m4')
-rw-r--r-- | gl/m4/intdiv0.m4 | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/gl/m4/intdiv0.m4 b/gl/m4/intdiv0.m4 index 289c4df..74d0e80 100644 --- a/gl/m4/intdiv0.m4 +++ b/gl/m4/intdiv0.m4 | |||
@@ -1,5 +1,5 @@ | |||
1 | # intdiv0.m4 serial 3 (gettext-0.18) | 1 | # intdiv0.m4 serial 6 (gettext-0.18.2) |
2 | dnl Copyright (C) 2002, 2007-2010 Free Software Foundation, Inc. | 2 | dnl Copyright (C) 2002, 2007-2008, 2010-2013 Free Software Foundation, Inc. |
3 | dnl This file is free software; the Free Software Foundation | 3 | dnl This file is free software; the Free Software Foundation |
4 | dnl gives unlimited permission to copy and/or distribute it, | 4 | dnl gives unlimited permission to copy and/or distribute it, |
5 | dnl with or without modifications, as long as this notice is preserved. | 5 | dnl with or without modifications, as long as this notice is preserved. |
@@ -18,7 +18,7 @@ AC_DEFUN([gt_INTDIV0], | |||
18 | changequote(,)dnl | 18 | changequote(,)dnl |
19 | case "$host_os" in | 19 | case "$host_os" in |
20 | macos* | darwin[6-9]* | darwin[1-9][0-9]*) | 20 | macos* | darwin[6-9]* | darwin[1-9][0-9]*) |
21 | # On MacOS X 10.2 or newer, just assume the same as when cross- | 21 | # On Mac OS X 10.2 or newer, just assume the same as when cross- |
22 | # compiling. If we were to perform the real test, 1 Crash Report | 22 | # compiling. If we were to perform the real test, 1 Crash Report |
23 | # dialog window would pop up. | 23 | # dialog window would pop up. |
24 | case "$host_cpu" in | 24 | case "$host_cpu" in |
@@ -29,7 +29,8 @@ changequote(,)dnl | |||
29 | esac | 29 | esac |
30 | changequote([,])dnl | 30 | changequote([,])dnl |
31 | if test -z "$gt_cv_int_divbyzero_sigfpe"; then | 31 | if test -z "$gt_cv_int_divbyzero_sigfpe"; then |
32 | AC_TRY_RUN([ | 32 | AC_RUN_IFELSE( |
33 | [AC_LANG_SOURCE([[ | ||
33 | #include <stdlib.h> | 34 | #include <stdlib.h> |
34 | #include <signal.h> | 35 | #include <signal.h> |
35 | 36 | ||
@@ -59,9 +60,11 @@ int main () | |||
59 | 60 | ||
60 | z = x / y; | 61 | z = x / y; |
61 | nan = y / y; | 62 | nan = y / y; |
62 | exit (1); | 63 | exit (2); |
63 | } | 64 | } |
64 | ], [gt_cv_int_divbyzero_sigfpe=yes], [gt_cv_int_divbyzero_sigfpe=no], | 65 | ]])], |
66 | [gt_cv_int_divbyzero_sigfpe=yes], | ||
67 | [gt_cv_int_divbyzero_sigfpe=no], | ||
65 | [ | 68 | [ |
66 | # Guess based on the CPU. | 69 | # Guess based on the CPU. |
67 | changequote(,)dnl | 70 | changequote(,)dnl |