From 5800bf3c075edcd10e16fc9930e8b830a1e789b8 Mon Sep 17 00:00:00 2001 From: Sergio Durigan Junior Date: Mon, 14 Apr 2014 00:48:45 -0300 Subject: [PATCH] Update call to AM_INIT_AUTOMAKE According to: the call to AM_INIT_AUTOMAKE should be updated to take no arguments (in our case), because the other forms will be deprecated. This patch does that. Tested with an older version of automake to make sure nothing breaks. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index d133041..c3699ea 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ AC_INIT(rnetclient,2014.1,softwares-impostos@fsfla.org) AC_CONFIG_AUX_DIR(build-aux) -AM_INIT_AUTOMAKE(AC_PACKAGE_NAME,AC_PACKAGE_VERSION) +AM_INIT_AUTOMAKE AC_PROG_CC AC_PROG_INSTALL PKG_CHECK_MODULES(GNUTLS, gnutls >= 1.4.0, , AC_MSG_ERROR(Could not find gnutls)) -- 2.20.1