mirror of
https://github.com/OpenVPN/openvpn.git
synced 2026-06-09 00:42:51 -04:00
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 <davids@openvpn.net> Acked-by: Lev Stipakov <lstipakov@gmail.com> Message-Id: <1481062251-18349-1-git-send-email-davids@openvpn.net> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg13411.html
This commit is contained in:
parent
251cc8f204
commit
e62eccf025
1 changed files with 1 additions and 1 deletions
|
|
@ -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"]
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue