summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2013-05-30 12:51:27 +0000
committerRalf Baechle <ralf@linux-mips.org>2013-05-30 12:51:27 +0000
commit0638f42299cfce8975e6e2c8500db19862010eb2 (patch)
tree2e759f0b3008f33572fed9d3eec36d9bfec9d7f0
parent54b0c9520764f114c726f073c53e11e8e8373235 (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 c65509d..e595b13 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,9 +1,9 @@
AC_PREREQ(2.59)
AC_INIT(ax25-tools, 0.0.10-rc2, linux-hams@vger.kernel.org)
AC_CONFIG_SRCDIR(ax25/ax25d.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