From c143b97c8aef44205ae4601c3284436379eba078 Mon Sep 17 00:00:00 2001 From: Nuno Araujo Date: Wed, 16 Jan 2013 00:01:13 +0100 Subject: build: add support for 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. Bug #692111. --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index a44fefa..136e76d 100644 --- a/configure.in +++ b/configure.in @@ -5,7 +5,7 @@ AC_CONFIG_SRCDIR([src/cr-input.c]) AC_CANONICAL_HOST AM_INIT_AUTOMAKE([1.9 no-dist-gzip dist-bzip2]) -AM_CONFIG_HEADER(config.h) +AC_CONFIG_HEADERS([config.h]) if test -z "$enable_maintainer_mode"; then enable_maintainer_mode=yes -- cgit v1.2.1