floor, floorl: Avoid autoconf warnings.
authorBruno Haible <bruno@clisp.org>
Sun, 20 Jan 2019 20:33:15 +0000 (21:33 +0100)
committerBruno Haible <bruno@clisp.org>
Sun, 20 Jan 2019 20:33:15 +0000 (21:33 +0100)
* modules/floor (configure.ac): Use AC_REQUIRE.
* modules/floorl (configure.ac): Likewise.

ChangeLog
modules/floor
modules/floorl

index a03d5dd8b13937f0cdf9f0d74e12fac6f60c61ad..6e02f8a6c94ae2466d08cad3cc742c308b2538dc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2019-01-20  Bruno Haible  <bruno@clisp.org>
+
+       floor, floorl: Avoid autoconf warnings.
+       * modules/floor (configure.ac): Use AC_REQUIRE.
+       * modules/floorl (configure.ac): Likewise.
+
 2019-01-20  Bruno Haible  <bruno@clisp.org>
 
        Defeat current GCC optimizations in math autoconf tests.
index 2c1cd6a06853e542b7e489294aab7b3d22c92b74..bd7d90dc7d771faf8acb35479b93b7addead0e39 100644 (file)
@@ -10,7 +10,7 @@ math
 float           [test $REPLACE_FLOOR = 1]
 
 configure.ac:
-gl_FUNC_FLOOR
+AC_REQUIRE([gl_FUNC_FLOOR])
 if test $REPLACE_FLOOR = 1; then
   AC_LIBOBJ([floor])
 fi
index 5f0cc229e24bdd2ff499f148c40751579040a390..e3450f86535daf2a1fd38aff753cfa176482f97b 100644 (file)
@@ -13,7 +13,7 @@ floor           [{ test $HAVE_DECL_FLOORL = 0 || test $REPLACE_FLOORL = 1; } &&
 float           [{ test $HAVE_DECL_FLOORL = 0 || test $REPLACE_FLOORL = 1; } && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0]
 
 configure.ac:
-gl_FUNC_FLOORL
+AC_REQUIRE([gl_FUNC_FLOORL])
 if test $HAVE_DECL_FLOORL = 0 || test $REPLACE_FLOORL = 1; then
   AC_LIBOBJ([floorl])
 fi