From: Nick Bowler Date: Thu, 24 Feb 2022 03:02:20 +0000 (-0500) Subject: Use AC_CONFIG_HEADERS rather than AC_CONFIG_HEADER. X-Git-Url: https://git.draconx.ca/gitweb/upkg.git/commitdiff_plain/a3814af6068326e79cb5a1fd663b8280d4e57ae1 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/configure.ac b/configure.ac index 7fd2cb4..762de22 100644 --- a/configure.ac +++ b/configure.ac @@ -6,7 +6,7 @@ dnl There is NO WARRANTY, to the extent permitted by law. AC_INIT([upkg],[0.1],[nbowler@draconx.ca]) AC_CONFIG_SRCDIR([src/libupkg.c]) -AC_CONFIG_HEADER([config.h]) +AC_CONFIG_HEADERS([config.h]) AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([-Wall -Wno-portability foreign subdir-objects])