summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2013-05-30 12:51:19 +0000
committerRalf Baechle <ralf@linux-mips.org>2013-05-30 12:51:19 +0000
commit1e72a3155c7958bc7b3fad2bb7e00d2c0ac20eab (patch)
tree9eafcdb8806f735e7178aeab4f86253c71dd60ff
parented11cf70be0935d8e5dd389e829aa2527ccf674f (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 10f1709..1b2b964 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,9 +1,9 @@
AC_PREREQ(2.59)
AC_INIT(libax25, 0.0.12-rc2, linux-hams@vger.kernel.org)
AC_CONFIG_SRCDIR(axconfig.c)
-AM_INIT_AUTOMAKE([foreign no-define])
+AM_INIT_AUTOMAKE([foreign no-define 1.7])
-AM_CONFIG_HEADER(config.h)
+AC_CONFIG_HEADERS(config.h)
dnl Checks for programs.
AC_PROG_CC