summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNuno Araujo <nuno.araujo@russo79.com>2013-01-04 01:19:47 +0100
committerDavid King <amigadave@amigadave.com>2013-01-19 18:38:16 +0000
commit5424e4860eed8bb094d90d397637522f9e3dde3a (patch)
treee2330c9da31065c2859c2fac1a71b687eb141771
parentc3c9019ff8d508f42038f4065094119b3951aed8 (diff)
Fix the build with automake 1.13
In Automake 1.13, the long-deprecated macro AM_CONFIG_HEADER (deprecated since 2002) has been removed in favour of AC_CONFIG_HEADERS. Signed-off-by: Nuno Araujo <nuno.araujo@russo79.com>
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 375e883..a6f36bf 100644
--- a/configure.in
+++ b/configure.in
@@ -5,7 +5,7 @@ AC_PREREQ(2.52)
AM_INIT_AUTOMAKE([1.9 no-dist-gzip dist-bzip2 check-news])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_SRCDIR([libjuicer/sj-extractor.c])
-AM_CONFIG_HEADER([config.h])
+AC_CONFIG_HEADERS([config.h])
# Enable silent build when available (Automake 1.11)
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])