From: Alberto Leiva Popper Date: Thu, 22 Jun 2023 20:14:50 +0000 (-0600) Subject: Update configure.ac X-Git-Tag: 1.6.0~80^2~11 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=62c65a79e142012067a76acf70b86438d56636e1;p=thirdparty%2FFORT-validator.git Update configure.ac Fixes warning: > warning: AC_OUTPUT should be used without arguments. > configure.ac:52: You should run autoupdate. --- diff --git a/configure.ac b/configure.ac index c7e7870c..755c6900 100644 --- a/configure.ac +++ b/configure.ac @@ -1,8 +1,8 @@ # -*- Autoconf -*- # Process this file with autoconf to produce a configure script. -AC_PREREQ([2.69]) -AC_INIT([fort], [1.5.4], [fort-validator@nic.mx]) +AC_PREREQ([2.71]) +AC_INIT([fort],[1.5.4],[fort-validator@nic.mx]) AC_CONFIG_SRCDIR([src/main.c]) AM_INIT_AUTOMAKE([subdir-objects]) @@ -49,4 +49,5 @@ PKG_CHECK_MODULES([CHECK], [check], [usetests=yes], [usetests=no]) AM_CONDITIONAL([USE_TESTS], [test "x$usetests" = "xyes"]) # Spit out the makefiles. -AC_OUTPUT(Makefile src/Makefile man/Makefile test/Makefile) +AC_CONFIG_FILES([Makefile src/Makefile man/Makefile test/Makefile]) +AC_OUTPUT