From: Nick Bowler Date: Wed, 24 Feb 2021 00:44:48 +0000 (-0500) Subject: Use AC_CONFIG_HEADERS rather than AC_CONFIG_HEADER. X-Git-Tag: v1~9 X-Git-Url: https://git.draconx.ca/gitweb/cdecl99.git/commitdiff_plain/775241eec51498b55763080e0f3ac5ecca67aa94 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 a0bf6b1..e0a67aa 100644 --- a/configure.ac +++ b/configure.ac @@ -6,7 +6,7 @@ dnl There is NO WARRANTY, to the extent permitted by law. AC_PREREQ([2.68]) AC_INIT([cdecl99], [0.1], [nbowler@draconx.ca]) -AC_CONFIG_HEADER([config.h]) +AC_CONFIG_HEADERS([config.h]) AM_INIT_AUTOMAKE([-Wall -Wno-portability foreign subdir-objects]) AM_SILENT_RULES([yes])