From: Mike Frysinger Date: Mon, 5 Dec 2016 20:43:20 +0000 (-0500) Subject: configure: avoid deprecated AC_INIT/AM_INIT_AUTOMAKE invocation X-Git-Tag: 4.5~28^2~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=84f0ae00d21e7c8c58603271cd3a111226914152;p=shadow configure: avoid deprecated AC_INIT/AM_INIT_AUTOMAKE invocation The autoconf/automake guys want AC_INIT to be passed the details of the package directly rather than going through AM_INIT_AUTOMAKE. Update them both to use the newer style. This also allows us to pass in contact details for the project. We set the minimum autoconf version to 2.64 as that's the first one to support passing the homepage URL in to AC_INIT. That's a pretty old release by now, so it shouldn't be a problem. --- diff --git a/configure.ac b/configure.ac index b389838a..cf774e03 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,8 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT -AM_INIT_AUTOMAKE(shadow, 4.4) +AC_PREREQ([2.64]) +AC_INIT([shadow], [4.4], [pkg-shadow-devel@lists.alioth.debian.org], [], + [https://github.com/shadow-maint/shadow]) +AM_INIT_AUTOMAKE AC_CONFIG_HEADERS([config.h]) dnl Some hacks...