7a10a21fcdd3d07f1b42160204472b30a9d80645
[gnulib.git] / m4 / strtod.m4
1 # strtod.m4 serial 7
2 dnl Copyright (C) 2002, 2003, 2006, 2007, 2008 Free Software
3 dnl Foundation, Inc.
4 dnl This file is free software; the Free Software Foundation
5 dnl gives unlimited permission to copy and/or distribute it,
6 dnl with or without modifications, as long as this notice is preserved.
7
8 AC_DEFUN([gl_FUNC_STRTOD],
9 [
10   AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
11   AC_FUNC_STRTOD
12   dnl Note: AC_FUNC_STRTOD does AC_LIBOBJ(strtod).
13   if test $ac_cv_func_strtod = no; then
14     HAVE_STRTOD=0
15     REPLACE_STRTOD=1
16     gl_PREREQ_STRTOD
17   else
18     AC_CACHE_CHECK([whether strtod obeys C99], [gl_cv_func_strtod_works],
19       [AC_RUN_IFELSE([AC_LANG_PROGRAM([[
20 #include <stdlib.h>
21 #include <math.h>
22 ]], [[
23   {
24     /* Older glibc and Cygwin mis-parse "-0x".  */
25     char *string = "-0x";
26     char *term;
27     double value = strtod (string, &term);
28     if (1 / value != -HUGE_VAL || term != (string + 2))
29       return 1;
30   }
31   {
32     /* Many platforms do not parse infinities.  */
33     char *string = "inf";
34     char *term;
35     double value = strtod (string, &term);
36     if (value != HUGE_VAL || term != (string + 3))
37       return 1;
38   }
39 ]])],
40         [gl_cv_func_strtod_works=yes],
41         [gl_cv_func_strtod_works=no],
42         [gl_cv_func_strtod_works="guessing no"])])
43     if test "$gl_cv_func_strtod_works" != yes; then
44       REPLACE_STRTOD=1
45       gl_PREREQ_STRTOD
46       dnl Use undocumented macro to set POW_LIB correctly.
47       _AC_LIBOBJ_STRTOD
48     fi
49   fi
50 ])
51
52 # Prerequisites of lib/strtod.c.
53 # The need for pow() is already handled by AC_FUNC_STRTOD.
54 AC_DEFUN([gl_PREREQ_STRTOD], [:])