From 85e98504416b167f49926af4ad744649ce39fa3a Mon Sep 17 00:00:00 2001 From: Nick Bowler Date: Mon, 15 Feb 2021 00:45:59 -0500 Subject: [PATCH] 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. --- NEWS | 2 ++ configure.ac | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) 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]) -- 2.43.0