From: Nick Bowler Date: Mon, 15 Feb 2021 05:45:59 +0000 (-0500) Subject: Use AC_CONFIG_HEADERS rather than AC_CONFIG_HEADER. X-Git-Tag: v1.1~3 X-Git-Url: https://git.draconx.ca/gitweb/slotifier.git/commitdiff_plain/85e98504416b167f49926af4ad744649ce39fa3a Use AC_CONFIG_HEADERS rather than AC_CONFIG_HEADER. The former name has been supported since approximately forever ago and the latter form is now formally deprecated (with a warning) in recent versions of Autoconf. --- diff --git a/NEWS b/NEWS index 64e572a..2ba5206 100644 --- a/NEWS +++ b/NEWS @@ -1,2 +1,4 @@ +Release 1a: + Release 1: * Initial release. diff --git a/configure.ac b/configure.ac index cda4e69..524dac3 100644 --- a/configure.ac +++ b/configure.ac @@ -1,11 +1,11 @@ -dnl Copyright © 2018-2019 Nick Bowler +dnl Copyright © 2018-2019, 2021 Nick Bowler dnl dnl License WTFPL2: Do What The Fuck You Want To Public License, version 2. dnl This is free software: you are free to do what the fuck you want to. dnl There is NO WARRANTY, to the extent permitted by law. -AC_INIT([slotifier], [1], [nbowler@draconx.ca]) -AC_CONFIG_HEADER([config.h]) +AC_INIT([slotifier], [1a], [nbowler@draconx.ca]) +AC_CONFIG_HEADERS([config.h]) AM_INIT_AUTOMAKE([-Wall -Wno-portability foreign subdir-objects]) AM_SILENT_RULES([yes])