From 480dd38fd190fb7ca4ff172a31a4a6ef2944f20c Mon Sep 17 00:00:00 2001 From: Marko Lindqvist Date: Thu, 3 Jan 2013 06:38:01 +0200 Subject: [PATCH] Fix build with automake-1.13 Automake-1.13 has removed long obsolete AM_CONFIG_HEADER macro ( http://lists.gnu.org/archive/html/automake/2012-12/msg00038.html ) and autoreconf errors out upon seeing it. Attached patch replaces obsolete AM_CONFIG_HEADER with now proper AC_CONFIG_HEADERS. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 81f068d..515e312 100644 --- a/configure.ac +++ b/configure.ac @@ -64,7 +64,7 @@ AM_INIT_AUTOMAKE([foreign dist-bzip2]) # Suppress verbose compile lines m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) -AM_CONFIG_HEADER(config.h) +AC_CONFIG_HEADERS(config.h) AC_CANONICAL_HOST -- 2.7.4