changeset 8906:4536f000a14a

* m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when cross compiling.
author Eric Blake <ebb9@byu.net>
date Thu, 31 May 2007 16:32:39 +0000
parents 20765f91596b
children f84ac9f04f6c
files ChangeLog m4/frexpl.m4
diffstat 2 files changed, 7 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-05-31  Eric Blake  <ebb9@byu.net>
+
+	* m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
+	cross compiling.
+
 2007-05-30  Eric Blake  <ebb9@byu.net>
 	and Bruno Haible  <bruno@clisp.org>
 
@@ -55,7 +60,7 @@
 	compiling case.
 
 2007-05-29  Eric Blake  <ebb9@byu.net>
-            Bruno Haible  <bruno@clisp.org>
+	    Bruno Haible  <bruno@clisp.org>
 
 	* m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
 	cross compiles.
--- a/m4/frexpl.m4
+++ b/m4/frexpl.m4
@@ -142,7 +142,7 @@
   return 0;
 }], [gl_cv_func_frexpl_works=yes], [gl_cv_func_frexpl_works=no],
       [case "$host_os" in
-         aix* | beos* | irix*) gl_cv_func_frexpl_works="guessing no";;
+         aix* | beos* | irix* | mingw*) gl_cv_func_frexpl_works="guessing no";;
          *)                    gl_cv_func_frexpl_works="guessing yes";;
        esac
       ])