From 8e7bff96eee49d7cf9ef0ed7063034f87cfdcf53 Mon Sep 17 00:00:00 2001 From: Nuno Araujo Date: Sat, 19 Jan 2013 07:53:34 +0100 Subject: [PATCH] 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. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index e3ce7bd..5f4dbc3 100644 --- a/configure.ac +++ b/configure.ac @@ -35,7 +35,7 @@ AC_INIT([Telepathy-Farstream], [tp_farstream_version], AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([1.11 -Wno-portability]) -AM_CONFIG_HEADER(config.h) +AC_CONFIG_HEADERS(config.h) dnl use pretty build output with automake >= 1.11 m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])], -- 1.8.1.1