build: replace AM_CONFIG_HEADER with AC_CONFIG_HEADERS to fix build with automake 1.13

AM_CONFIG_HEADER is deprecated; see
https://lists.gnu.org/archive/html/automake/2012-12/msg00038.html

https://bugzilla.gnome.org/show_bug.cgi?id=692864
This commit is contained in:
Kerrick Staley 2013-01-30 01:27:17 -08:00 committed by Tim-Philipp Müller
parent 32edd17aab
commit 4d527e24be

View file

@ -22,7 +22,7 @@ dnl can autoconf find the source ?
AC_CONFIG_SRCDIR([ges/ges-timeline.c])
dnl define the output header for config
AM_CONFIG_HEADER([config.h])
AC_CONFIG_HEADERS([config.h])
dnl AM_MAINTAINER_MODE only provides the option to configure to enable it
AM_MAINTAINER_MODE([enable])