1 # intdiv0.m4 serial 1 (gettext-0.11.3)
2 dnl Copyright (C) 2002 Free Software Foundation, Inc.
3 dnl This file is free software; the Free Software Foundation
4 dnl gives unlimited permission to copy and/or distribute it,
5 dnl with or without modifications, as long as this notice is preserved.
11 AC_REQUIRE([AC_PROG_CC])dnl
12 AC_REQUIRE([AC_CANONICAL_HOST])dnl
14 AC_CACHE_CHECK([whether integer division by zero raises SIGFPE],
15 gt_cv_int_divbyzero_sigfpe,
23 sigfpe_handler (int sig)
25 sigfpe_handler (sig) int sig;
28 /* Exit with code 0 if SIGFPE, with code 1 if any other signal. */
39 signal (SIGFPE, sigfpe_handler);
40 /* IRIX and AIX (when "xlc -qcheck" is used) yield signal SIGTRAP. */
41 #if (defined (__sgi) || defined (_AIX)) && defined (SIGTRAP)
42 signal (SIGTRAP, sigfpe_handler);
44 /* Linux/SPARC yields signal SIGILL. */
45 #if defined (__sparc__) && defined (__linux__)
46 signal (SIGILL, sigfpe_handler);
53 ], gt_cv_int_divbyzero_sigfpe=yes, gt_cv_int_divbyzero_sigfpe=no,
55 # Guess based on the CPU.
57 alpha* | i[34567]86 | m68k | s390*)
58 gt_cv_int_divbyzero_sigfpe="guessing yes";;
60 gt_cv_int_divbyzero_sigfpe="guessing no";;
64 case "$gt_cv_int_divbyzero_sigfpe" in
68 AC_DEFINE_UNQUOTED(INTDIV0_RAISES_SIGFPE, $value,
69 [Define if integer division by zero raises signal SIGFPE.])