summaryrefslogtreecommitdiffstats
path: root/package/openvpn/Makefile
diff options
context:
space:
mode:
authorwbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-02-10 21:32:10 +0000
committerwbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-02-10 21:32:10 +0000
commit70441823af82cfa209507561f48d811c792d9289 (patch)
tree3d36fcc6d9158594aac56403c2ff0e0c3f5657dc /package/openvpn/Makefile
parentc2a8a1896632d0c661918e0bedd71db9bcd1578f (diff)
openvpn without ssl closes #277/#278
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@3217 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/openvpn/Makefile')
-rw-r--r--package/openvpn/Makefile10
1 files changed, 9 insertions, 1 deletions
diff --git a/package/openvpn/Makefile b/package/openvpn/Makefile
index a34bf4436..e5e127584 100644
--- a/package/openvpn/Makefile
+++ b/package/openvpn/Makefile
@@ -18,7 +18,14 @@ include $(TOPDIR)/package/rules.mk
$(eval $(call PKG_template,OPENVPN,openvpn,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
-PKG_DEPEND:="libopenssl, kmod-tun"
+PKG_DEPEND:="kmod-tun"
+
+ifneq ($(BR2_COMPILE_OPENVPN_WITH_OPENSSL),y)
+DISABLE_OPENSSL:=--disable-ssl --disable-crypto
+else
+PKG_DEPEND+=", libopenssl"
+endif
+
ifneq ($(BR2_COMPILE_OPENVPN_WITH_LZO),y)
DISABLE_LZO:=--disable-lzo
else
@@ -66,6 +73,7 @@ $(PKG_BUILD_DIR)/.configured:
--disable-management \
--disable-socks \
$(DISABLE_LZO) \
+ $(DISABLE_OPENSSL) \
$(DISABLE_SERVER) \
$(DISABLE_HTTP) \
);