summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2007-06-02 00:54:30 +0000
committerBruno Haible <bruno@clisp.org>2007-06-02 00:54:30 +0000
commitbfa0a51966a4b7af6c23cc0f0cbbc0d2f0a47816 (patch)
treec19180b92ea7621e8f4cedf33887cf65f65a737e /m4
parent40a871a5db0fb808c5224cf4d37af6c23c55290d (diff)
downloadgnulib-bfa0a51966a4b7af6c23cc0f0cbbc0d2f0a47816.tar.gz
Update after Eric Blake found that frexpl doesn't work right on mingw.
Diffstat (limited to 'm4')
-rw-r--r--m4/frexpl.m48
1 files changed, 5 insertions, 3 deletions
diff --git a/m4/frexpl.m4 b/m4/frexpl.m4
index 72e6a82acb..e3bb1d0d35 100644
--- a/m4/frexpl.m4
+++ b/m4/frexpl.m4
@@ -96,7 +96,8 @@ AC_DEFUN([gl_FUNC_FREXPL_NO_LIBM],
])
dnl Test whether frexpl() works on finite numbers (this fails on AIX 5.1 and
-dnl on BeOS) and also on infinite numbers (this fails e.g. on IRIX 6.5).
+dnl on BeOS) and also on infinite numbers (this fails e.g. on IRIX 6.5 and
+dnl mingw).
AC_DEFUN([gl_FUNC_FREXPL_WORKS],
[
AC_REQUIRE([AC_PROG_CC])
@@ -142,8 +143,9 @@ int main()
return 0;
}], [gl_cv_func_frexpl_works=yes], [gl_cv_func_frexpl_works=no],
[case "$host_os" in
- aix* | beos* | irix* | mingw*) gl_cv_func_frexpl_works="guessing no";;
- *) gl_cv_func_frexpl_works="guessing yes";;
+ aix* | beos* | irix* | mingw* | pw*)
+ gl_cv_func_frexpl_works="guessing no";;
+ *) gl_cv_func_frexpl_works="guessing yes";;
esac
])
])