]> git.draconx.ca Git - liblbx.git/commitdiff
Use AC_CONFIG_HEADERS rather than AC_CONFIG_HEADER.
authorNick Bowler <nbowler@draconx.ca>
Thu, 23 Sep 2021 00:03:49 +0000 (20:03 -0400)
committerNick Bowler <nbowler@draconx.ca>
Thu, 23 Sep 2021 00:03:49 +0000 (20:03 -0400)
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.

configure.ac

index 5be386e07ce4d690fd64aa6274328166b7fba9b2..e722392f084bfd30c42a754bdbaf5954435ce637 100644 (file)
@@ -7,7 +7,7 @@ dnl There is NO WARRANTY, to the extent permitted by law.
 AC_PREREQ([2.68])
 AC_INIT([liblbx], [0.1], [nbowler@draconx.ca])
 AC_CONFIG_SRCDIR([src/lbx.c])
-AC_CONFIG_HEADER([config.h])
+AC_CONFIG_HEADERS([config.h])
 
 AM_INIT_AUTOMAKE([-Wall -Wno-portability foreign subdir-objects])
 AM_SILENT_RULES([yes])