From: Sergio Durigan Junior Date: Mon, 14 Apr 2014 03:48:45 +0000 (-0300) Subject: Update call to AM_INIT_AUTOMAKE X-Git-Tag: v2014.2~9 X-Git-Url: http://git.cascardo.info/?p=cascardo%2Frnetclient.git;a=commitdiff_plain;h=5800bf3c075edcd10e16fc9930e8b830a1e789b8 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. --- 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))