Build dlopenable modules with `-module'.
[bpt/guile.git] / m4 / isnanf.m4
CommitLineData
2e65b52f
LC
1# isnanf.m4 serial 11
2dnl Copyright (C) 2007-2010 Free Software Foundation, Inc.
3dnl This file is free software; the Free Software Foundation
4dnl gives unlimited permission to copy and/or distribute it,
5dnl with or without modifications, as long as this notice is preserved.
6
7dnl Check how to get or define isnanf().
8
9AC_DEFUN([gl_FUNC_ISNANF],
10[
11 AC_REQUIRE([gl_MATH_H_DEFAULTS])
12 ISNANF_LIBM=
13 gl_HAVE_ISNANF_NO_LIBM
14 if test $gl_cv_func_isnanf_no_libm = no; then
15 gl_HAVE_ISNANF_IN_LIBM
16 if test $gl_cv_func_isnanf_in_libm = yes; then
17 ISNANF_LIBM=-lm
18 fi
19 fi
20 if test $gl_cv_func_isnanf_no_libm = yes \
21 || test $gl_cv_func_isnanf_in_libm = yes; then
22 save_LIBS="$LIBS"
23 LIBS="$LIBS $ISNANF_LIBM"
24 gl_ISNANF_WORKS
25 LIBS="$save_LIBS"
26 case "$gl_cv_func_isnanf_works" in
27 *yes) gl_func_isnanf=yes ;;
28 *) gl_func_isnanf=no; ISNANF_LIBM= ;;
29 esac
30 else
31 gl_func_isnanf=no
32 fi
33 if test $gl_func_isnanf != yes; then
34 HAVE_ISNANF=0
35 gl_BUILD_ISNANF
36 fi
37 AC_SUBST([ISNANF_LIBM])
38])
39
40dnl Check how to get or define isnanf() without linking with libm.
41
42AC_DEFUN([gl_FUNC_ISNANF_NO_LIBM],
43[
44 gl_HAVE_ISNANF_NO_LIBM
45 if test $gl_cv_func_isnanf_no_libm = yes; then
46 gl_ISNANF_WORKS
47 fi
48 if test $gl_cv_func_isnanf_no_libm = yes \
49 && { case "$gl_cv_func_isnanf_works" in
50 *yes) true;;
51 *) false;;
52 esac
53 }; then
54 AC_DEFINE([HAVE_ISNANF_IN_LIBC], [1],
55 [Define if the isnan(float) function is available in libc.])
56 else
57 gl_BUILD_ISNANF
58 fi
59])
60
61dnl Pull in replacement isnanf definition. It does not need -lm.
62AC_DEFUN([gl_BUILD_ISNANF],
63[
64 AC_LIBOBJ([isnanf])
65 gl_FLOAT_EXPONENT_LOCATION
66])
67
68dnl Test whether isnanf() can be used without libm.
69AC_DEFUN([gl_HAVE_ISNANF_NO_LIBM],
70[
71 AC_CACHE_CHECK([whether isnan(float) can be used without linking with libm],
72 [gl_cv_func_isnanf_no_libm],
73 [
74 AC_LINK_IFELSE(
75 [AC_LANG_PROGRAM(
76 [[#include <math.h>
77 #if __GNUC__ >= 4
78 # undef isnanf
79 # define isnanf(x) __builtin_isnanf ((float)(x))
80 #elif defined isnan
81 # undef isnanf
82 # define isnanf(x) isnan ((float)(x))
83 #endif
84 float x;]],
85 [[return isnanf (x);]])],
86 [gl_cv_func_isnanf_no_libm=yes],
87 [gl_cv_func_isnanf_no_libm=no])
88 ])
89])
90
91dnl Test whether isnanf() can be used with libm.
92AC_DEFUN([gl_HAVE_ISNANF_IN_LIBM],
93[
94 AC_CACHE_CHECK([whether isnan(float) can be used with libm],
95 [gl_cv_func_isnanf_in_libm],
96 [
97 save_LIBS="$LIBS"
98 LIBS="$LIBS -lm"
99 AC_LINK_IFELSE(
100 [AC_LANG_PROGRAM(
101 [[#include <math.h>
102 #if __GNUC__ >= 4
103 # undef isnanf
104 # define isnanf(x) __builtin_isnanf ((float)(x))
105 #elif defined isnan
106 # undef isnanf
107 # define isnanf(x) isnan ((float)(x))
108 #endif
109 float x;]],
110 [[return isnanf (x);]])],
111 [gl_cv_func_isnanf_in_libm=yes],
112 [gl_cv_func_isnanf_in_libm=no])
113 LIBS="$save_LIBS"
114 ])
115])
116
117dnl Test whether isnanf() rejects Infinity (this fails on Solaris 2.5.1),
118dnl recognizes a NaN (this fails on IRIX 6.5 with cc), and recognizes a NaN
119dnl with in-memory representation 0x7fbfffff (this fails on IRIX 6.5).
120AC_DEFUN([gl_ISNANF_WORKS],
121[
122 AC_REQUIRE([AC_PROG_CC])
123 AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
124 AC_REQUIRE([gl_FLOAT_EXPONENT_LOCATION])
125 AC_CACHE_CHECK([whether isnan(float) works], [gl_cv_func_isnanf_works],
126 [
127 AC_RUN_IFELSE(
128 [AC_LANG_SOURCE([[
129#include <math.h>
130#if __GNUC__ >= 4
131# undef isnanf
132# define isnanf(x) __builtin_isnanf ((float)(x))
133#elif defined isnan
134# undef isnanf
135# define isnanf(x) isnan ((float)(x))
136#endif
137/* The Compaq (ex-DEC) C 6.4 compiler chokes on the expression 0.0 / 0.0. */
138#ifdef __DECC
139static float
140NaN ()
141{
142 static float zero = 0.0f;
143 return zero / zero;
144}
145#else
146# define NaN() (0.0f / 0.0f)
147#endif
148#define NWORDS \
149 ((sizeof (float) + sizeof (unsigned int) - 1) / sizeof (unsigned int))
150typedef union { unsigned int word[NWORDS]; float value; } memory_float;
151int main()
152{
153 memory_float m;
154
155 if (isnanf (1.0f / 0.0f))
156 return 1;
157
158 if (!isnanf (NaN ()))
159 return 1;
160
161#if defined FLT_EXPBIT0_WORD && defined FLT_EXPBIT0_BIT
162 /* The isnanf function should be immune against changes in the sign bit and
163 in the mantissa bits. The xor operation twiddles a bit that can only be
164 a sign bit or a mantissa bit. */
165 if (FLT_EXPBIT0_WORD == 0 && FLT_EXPBIT0_BIT > 0)
166 {
167 m.value = NaN ();
168 /* Set the bits below the exponent to 01111...111. */
169 m.word[0] &= -1U << FLT_EXPBIT0_BIT;
170 m.word[0] |= 1U << (FLT_EXPBIT0_BIT - 1) - 1;
171 if (!isnanf (m.value))
172 return 1;
173 }
174#endif
175
176 return 0;
177}]])],
178 [gl_cv_func_isnanf_works=yes],
179 [gl_cv_func_isnanf_works=no],
180 [case "$host_os" in
181 irix* | solaris*) gl_cv_func_isnanf_works="guessing no";;
182 *) gl_cv_func_isnanf_works="guessing yes";;
183 esac
184 ])
185 ])
186])