changeset 33182:69d45559778d

frexpl: Update regarding AIX.
author Bruno Haible <bruno@clisp.org>
date Fri, 30 Jul 2010 20:42:38 +0200
parents 1c3619acc044
children 74bb6c34bbe3
files ChangeLog m4/frexpl.m4
diffstat 2 files changed, 13 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Fri Jul 30 20:38:44 2010 +0200
+++ b/ChangeLog	Fri Jul 30 20:42:38 2010 +0200
@@ -1,3 +1,10 @@
+2010-07-30  Bruno Haible  <bruno@clisp.org>
+
+	frexpl: Update regarding AIX.
+	* m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): When cross-compiling, guess yes
+	on AIX 7.
+	Reported by Rainer Tammer.
+
 2010-07-30  Bruno Haible  <bruno@clisp.org>
 
 	open, fopen: Update regarding AIX.
--- a/m4/frexpl.m4	Fri Jul 30 20:38:44 2010 +0200
+++ b/m4/frexpl.m4	Fri Jul 30 20:42:38 2010 +0200
@@ -1,4 +1,4 @@
-# frexpl.m4 serial 10
+# frexpl.m4 serial 11
 dnl Copyright (C) 2007-2010 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
@@ -179,11 +179,14 @@
   }
   return 0;
 }], [gl_cv_func_frexpl_works=yes], [gl_cv_func_frexpl_works=no],
-      [case "$host_os" in
-         aix* | beos* | darwin* | irix* | mingw* | pw*)
+      [
+changequote(,)dnl
+       case "$host_os" in
+         aix | aix[3-6]* | beos* | darwin* | irix* | mingw* | pw*)
             gl_cv_func_frexpl_works="guessing no";;
          *) gl_cv_func_frexpl_works="guessing yes";;
        esac
+changequote([,])dnl
       ])
     ])
 ])