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.
This commit is contained in:
Mike Frysinger 2016-12-05 15:43:20 -05:00
parent e3f213305b
commit 84f0ae00d2

View File

@ -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...