configure.ac: Use AC_CONFIG_HEADERS

AM_CONFIG_HEADER is obsolete, use AC_CONFIG_HEADERS instead of it.

https://bugs.freedesktop.org/show_bug.cgi?id=59320
This commit is contained in:
Vasily Khoruzhick 2013-01-13 16:42:13 +03:00 committed by Bastien Nocera
parent 02509e1073
commit 43eca622cd

View file

@ -2,7 +2,7 @@ AC_INIT([libfprint], [0.5.0])
AM_INIT_AUTOMAKE([1.11 no-dist-gzip dist-xz check-news])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_SRCDIR([libfprint/core.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])])