Make compilation work with automake 1.13

Just one thing needs to be changed for virt-viewer to build with
automake 1.13, AM_CONFIG_HEADER is deprecated and should be
AC_CONFIG_HEADERS.
This commit is contained in:
Martin Kletzander 2013-02-04 14:11:15 +01:00 committed by Michal Privoznik
parent 7d9e442ffb
commit 1648363b85

View File

@ -3,7 +3,7 @@ AC_INIT(virt-viewer, 0.5.4)
AC_CONFIG_SRCDIR(src/virt-viewer-main.c)
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([build-aux])
AM_CONFIG_HEADER(config.h)
AC_CONFIG_HEADERS([config.h])
dnl Make automake keep quiet about wildcards & other GNUmake-isms
AM_INIT_AUTOMAKE([-Wno-portability])
AC_CANONICAL_HOST