From: David Sommerseth Date: Tue, 6 Dec 2016 22:10:51 +0000 (+0100) Subject: Fix wrong configure.ac parsing of --enable-async-push X-Git-Tag: v2.4_rc2~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e62eccf025aa60ec268787d2aa4a46310ed1cd60;p=thirdparty%2Fopenvpn.git Fix wrong configure.ac parsing of --enable-async-push AC_ARG_ENABLE() was used wrong, which led enable_async_push to always be set, regardless if --enable-async-push or --disable-async-push was used. Also spotted the exact same patch when writing this commit message as GitHub PR#70. Trac: #786 Signed-off-by: David Sommerseth Acked-by: Lev Stipakov Message-Id: <1481062251-18349-1-git-send-email-davids@openvpn.net> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg13411.html --- diff --git a/configure.ac b/configure.ac index f4073d051..27bdcc3a1 100644 --- a/configure.ac +++ b/configure.ac @@ -267,7 +267,7 @@ AC_ARG_ENABLE( AC_ARG_ENABLE( [async-push], [AS_HELP_STRING([--enable-async-push], [enable async-push support @<:@default=no@:>@])], - [enable_async_push="yes"], + , [enable_async_push="no"] )