changeset 40110:1a75ac6afa99

floor, floorl: Avoid autoconf warnings. * modules/floor (configure.ac): Use AC_REQUIRE. * modules/floorl (configure.ac): Likewise.
author Bruno Haible <bruno@clisp.org>
date Sun, 20 Jan 2019 21:33:15 +0100
parents e2e6dc79463b
children 234fea508b0e
files ChangeLog modules/floor modules/floorl
diffstat 3 files changed, 8 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sun Jan 20 21:19:41 2019 +0100
+++ b/ChangeLog	Sun Jan 20 21:33:15 2019 +0100
@@ -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.
--- a/modules/floor	Sun Jan 20 21:19:41 2019 +0100
+++ b/modules/floor	Sun Jan 20 21:33:15 2019 +0100
@@ -10,7 +10,7 @@
 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
--- a/modules/floorl	Sun Jan 20 21:19:41 2019 +0100
+++ b/modules/floorl	Sun Jan 20 21:33:15 2019 +0100
@@ -13,7 +13,7 @@
 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