From 84f0ae00d21e7c8c58603271cd3a111226914152 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Mon, 5 Dec 2016 15:43:20 -0500 Subject: [PATCH] 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. --- configure.ac | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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... -- 2.50.1