]> Savannah Git Hosting - gnulib.git/commitdiff
rint: Fix ordering constraints.
authorBruno Haible <bruno@clisp.org>
Sun, 9 Oct 2011 22:45:56 +0000 (00:45 +0200)
committerBruno Haible <bruno@clisp.org>
Sun, 9 Oct 2011 22:45:56 +0000 (00:45 +0200)
* m4/rint.m4 (gl_FUNC_RINT): Require gl_MATH_H_DEFAULTS.
* m4/rintf.m4 (gl_FUNC_RINTF): Likewise.
* m4/rintl.m4 (gl_FUNC_RINTL): Likewise.

ChangeLog
m4/rint.m4
m4/rintf.m4
m4/rintl.m4

index a8ea7df278345ae9552e0658d553b36cfa35aa34..bf00c0512935a317d46a5c4a6bf881e2a2b2471c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2011-10-09  Bruno Haible  <bruno@clisp.org>
+
+       rint: Fix ordering constraints.
+       * m4/rint.m4 (gl_FUNC_RINT): Require gl_MATH_H_DEFAULTS.
+       * m4/rintf.m4 (gl_FUNC_RINTF): Likewise.
+       * m4/rintl.m4 (gl_FUNC_RINTL): Likewise.
+
 2011-10-09  Bruno Haible  <bruno@clisp.org>
 
        copysignl: Simplify for platforms where 'long double' == 'double'.
index 9d7335d28af36f1c980dcb2fa1f891f269ff172e..5d9e832e1a61312f4d7ba6a4e91c587f4791f091 100644 (file)
@@ -1,4 +1,4 @@
-# rint.m4 serial 1
+# rint.m4 serial 2
 dnl Copyright (C) 2011 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
@@ -6,6 +6,8 @@ dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_FUNC_RINT],
 [
+  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+
   dnl Determine RINT_LIBM.
   gl_MATHFUNC([rint], [double], [(double)])
   if test $gl_cv_func_rint_no_libm = no \
index 2b5b81b1282cb26898f97921590b6010ab67701a..bb5f046147be821f41eb8e1879d8153c5c96c182 100644 (file)
@@ -1,4 +1,4 @@
-# rintf.m4 serial 1
+# rintf.m4 serial 2
 dnl Copyright (C) 2011 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
@@ -6,6 +6,8 @@ dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_FUNC_RINTF],
 [
+  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+
   dnl Determine RINTF_LIBM.
   gl_MATHFUNC([rintf], [float], [(float)])
   if test $gl_cv_func_rintf_no_libm = no \
index d04e5a0f976558dc531fcc3686897f31db3b5bc1..df83341034983cc0f68a53fd8592ac59d8b3bc56 100644 (file)
@@ -1,4 +1,4 @@
-# rintl.m4 serial 1
+# rintl.m4 serial 2
 dnl Copyright (C) 2011 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
@@ -6,6 +6,8 @@ dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([gl_FUNC_RINTL],
 [
+  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+
   dnl Determine RINTL_LIBM.
   gl_MATHFUNC([rintl], [long double], [(long double)])
   if test $gl_cv_func_rintl_no_libm = no \