diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2008-01-21 19:38:41 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2008-01-21 19:38:41 +0000 |
commit | 62eb40131786facde766519b501d88830ed2784d (patch) | |
tree | 8b7dca5abba691d584fecde385a04e04b227c715 /configure.ac | |
parent | Allow OpenVPN to run completely unprivileged under Linux (diff) | |
download | openvpn-62eb40131786facde766519b501d88830ed2784d.tar.xz |
Fixed --disable-iproute2 in ./configure to actually disable
iproute2 usage (Alon Bar-Lev).
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@2640 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 7155ae5..1302494 100644 --- a/configure.ac +++ b/configure.ac @@ -134,7 +134,7 @@ AC_ARG_ENABLE(password-save, AC_ARG_ENABLE(iproute2, [ --enable-iproute2 Enable support for iproute2], - AC_DEFINE(CONFIG_FEATURE_IPROUTE, 1, [enable iproute2 support]) + test $enableval = "yes" && AC_DEFINE(CONFIG_FEATURE_IPROUTE, 1, [enable iproute2 support]) ) AC_ARG_ENABLE(strict, |