summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorChristian Hesse <list@eworm.de>2013-01-08 09:39:12 +0100
committerGert Doering <gert@greenie.muc.de>2013-03-06 20:59:26 +0100
commitd86d577031577dfd69e5ba104e0ce1cb5192c16a (patch)
tree0dabadf8781b20d65b9a9b40fc4bd54a1af8b2d8 /configure.ac
parent6e6f55f4ba5deda5649679a13e4e323e07b3e661 (diff)
downloadopenvpn-d86d577031577dfd69e5ba104e0ce1cb5192c16a.tar.gz
openvpn-d86d577031577dfd69e5ba104e0ce1cb5192c16a.tar.xz
openvpn-d86d577031577dfd69e5ba104e0ce1cb5192c16a.zip
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 <matthias.andree@gmx.de> Message-Id: 20130108093912.7ae7c6f8@leda URL: http://article.gmane.org/gmane.network.openvpn.devel/7222 Signed-off-by: Gert Doering <gert@greenie.muc.de>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 2f780b7..ddd322c 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