summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2013-05-30 12:51:23 +0000
committerRalf Baechle <ralf@linux-mips.org>2013-05-30 12:51:23 +0000
commitba427e818ea35a5b498f2c4c232c1441f4418e0e (patch)
tree3bda758fa5c99a347e371f1c7a510c3a79a4fc61
parentdb5186e39f3410b54408aff55aa8a9a2ad063730 (diff)
Replace AM_CONFIG_HEADER with AC_CONFIG_HEADERS.
Since the introduction of AC_CONFIG_HEADERS in automake 1.7 AM_CONFIG_HEADER has been deprecated and it has finally been removed in automake 1.12. So this change also generates a dependency on automake 1.7 or newer.
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index f49dfc0..8d0e600 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,9 +1,9 @@
AC_PREREQ(2.59)
AC_INIT(ax25-apps, 0.0.8-rc2, linux-hams@vger.kernel.org)
AC_CONFIG_SRCDIR(ax25ipd/config.c)
-AM_INIT_AUTOMAKE
+AM_INIT_AUTOMAKE([1.7])
-AM_CONFIG_HEADER(config.h)
+AC_CONFIG_HEADERS(config.h)
dnl Checks for programs.
AC_PROG_AWK