strtod, strtold: Use the locale's decimal point.
[gnulib.git] / m4 / strtold.m4
blobc1c05d1a7acd8227e6e2959d5e136af5e815ffb9
1 # strtold.m4 serial 2
2 dnl Copyright (C) 2002-2003, 2006-2019 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.
7 AC_DEFUN([gl_FUNC_STRTOLD],
9   AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
10   AC_REQUIRE([gl_LONG_DOUBLE_VS_DOUBLE])
11   AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
12   AC_CHECK_FUNCS_ONCE([strtold])
13   if test $ac_cv_func_strtold != yes; then
14     HAVE_STRTOLD=0
15   else
16     AC_CACHE_CHECK([whether strtold obeys C99], [gl_cv_func_strtold_works],
17       [AC_RUN_IFELSE([AC_LANG_PROGRAM([[
18 #include <stdlib.h>
19 #include <math.h>
20 #include <errno.h>
21 /* Compare two numbers with ==.
22    This is a separate function because IRIX 6.5 "cc -O" miscompiles an
23    'x == x' test.  */
24 static int
25 numeric_equal (long double x, long double y)
27   return x == y;
29 ]], [[
30   int result = 0;
31   {
32     /* Under Solaris 2.4, strtod returns the wrong value for the
33        terminating character under some conditions.  */
34     const char *string = "NaN";
35     char *term;
36     strtod (string, &term);
37     if (term != string && *(term - 1) == 0)
38       result |= 2;
39   }
40   {
41     /* Older glibc and Cygwin mis-parse "-0x".  */
42     const char *string = "-0x";
43     char *term;
44     long double value = strtold (string, &term);
45     long double zero = 0.0L;
46     if (1.0L / value != -1.0L / zero || term != (string + 2))
47       result |= 4;
48   }
49   {
50     /* IRIX 6.5, mingw do not parse hex floats.  */
51     const char *string = "0XaP+1";
52     char *term;
53     long double value = strtold (string, &term);
54     if (value != 20.0L || term != (string + 6))
55       result |= 8;
56   }
57   {
58     /* IRIX 6.5 does not parse infinities.  HP-UX 11.31/ia64 parses inf,
59        but mistakenly sets errno.  */
60     const char *string = "inf";
61     char *term;
62     long double value;
63     errno = 0;
64     value = strtod (string, &term);
65     if (value != HUGE_VAL || term != (string + 3) || errno)
66       result |= 16;
67   }
68   {
69     /* glibc-2.3.2, IRIX 6.5, mingw, Haiku misparse "nan()".  */
70     const char *string = "nan()";
71     char *term;
72     long double value = strtold (string, &term);
73     if (numeric_equal (value, value) || term != (string + 5))
74       result |= 32;
75   }
76   {
77     /* Mac OS X 10.5, IRIX 6.5 misparse "nan(".  */
78     const char *string = "nan(";
79     char *term;
80     long double value = strtold (string, &term);
81     if (numeric_equal (value, value) || term != (string + 3))
82       result |= 64;
83   }
84   return result;
85 ]])],
86         [gl_cv_func_strtold_works=yes],
87         [gl_cv_func_strtold_works=no],
88         [dnl The last known bugs in glibc strtold(), as of this writing,
89          dnl were fixed in version 2.8
90          AC_EGREP_CPP([Lucky user],
91            [
92 #include <features.h>
93 #ifdef __GNU_LIBRARY__
94  #if ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 8) || (__GLIBC__ > 2)) \
95      && !defined __UCLIBC__
96   Lucky user
97  #endif
98 #endif
99            ],
100            [gl_cv_func_strtold_works="guessing yes"],
101            [gl_cv_func_strtod_works="guessing no"])
102         ])
103       ])
104     case "$gl_cv_func_strtold_works" in
105       *yes) ;;
106       *)
107         REPLACE_STRTOLD=1
108         ;;
109     esac
110   fi
113 # Prerequisites of lib/strtold.c.
114 AC_DEFUN([gl_PREREQ_STRTOLD], [
115   AC_REQUIRE([gl_CHECK_LDEXPL_NO_LIBM])
116   if test $gl_cv_func_ldexpl_no_libm = yes; then
117     AC_DEFINE([HAVE_LDEXPL_IN_LIBC], [1],
118       [Define if the ldexpl function is available in libc.])
119   fi
120   AC_CHECK_FUNCS([nl_langinfo])