From: Christian Hesse Date: Tue, 8 Jan 2013 08:39:12 +0000 (+0100) Subject: fix build with automake 1.13(.1) X-Git-Tag: v2.3.1~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ffb9d7d9bd24ee06f04f08b7bd77f61578e59431;p=thirdparty%2Fopenvpn.git fix build with automake 1.13(.1) AM_CONFIG_HEADER has been deprecated for some time, finally it is removed on automake 1.13. The attached patch replaces it with AC_CONFIG_HEADERS and fixes build process with latest automake. Acked-by: Matthias Andree Message-Id: 20130108093912.7ae7c6f8@leda URL: http://article.gmane.org/gmane.network.openvpn.devel/7222 Signed-off-by: Gert Doering (cherry picked from commit d86d577031577dfd69e5ba104e0ce1cb5192c16a) --- diff --git a/configure.ac b/configure.ac index 2f780b7af..ddd322c1f 100644 --- a/configure.ac +++ b/configure.ac @@ -32,7 +32,7 @@ m4_include(compat.m4) AC_DEFINE([OPENVPN_VERSION_RESOURCE], [PRODUCT_VERSION_RESOURCE], [Version in windows resource format]) AC_CONFIG_AUX_DIR([.]) -AM_CONFIG_HEADER([config.h]) +AC_CONFIG_HEADERS([config.h]) AC_CONFIG_SRCDIR([src/openvpn/syshead.h]) AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE