changeset 29199:0965a345c040

Update comments after last change.
author Bruno Haible <bruno@clisp.org>
date Wed, 05 Dec 2007 22:38:39 +0100
parents bc4634ba8935
children ec46b9a23952
files m4/frexp.m4
diffstat 1 files changed, 3 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/m4/frexp.m4	Tue Dec 04 14:45:04 2007 -0700
+++ b/m4/frexp.m4	Wed Dec 05 22:38:39 2007 +0100
@@ -88,7 +88,7 @@
 ])
 
 dnl Test whether frexp() works also on denormalized numbers (this fails e.g. on
-dnl NetBSD 3.0) and on infinite numbers (this fails e.g. on IRIX 6.5).
+dnl NetBSD 3.0) and on infinite numbers (this fails e.g. on IRIX 6.5 and mingw).
 AC_DEFUN([gl_FUNC_FREXP_WORKS],
 [
   AC_REQUIRE([AC_PROG_CC])
@@ -125,9 +125,8 @@
   return 0;
 }], [gl_cv_func_frexp_works=yes], [gl_cv_func_frexp_works=no],
       [case "$host_os" in
-         netbsd* | irix*) gl_cv_func_frexp_works="guessing no";;
-         mingw*)          gl_cv_func_frexp_works="guessing no";;
-         *)               gl_cv_func_frexp_works="guessing yes";;
+         netbsd* | irix* | mingw*) gl_cv_func_frexp_works="guessing no";;
+         *)                        gl_cv_func_frexp_works="guessing yes";;
        esac
       ])
     ])