update to 2.0.2, make http proxy an option, default on, adds 5kb
SVN-Revision: 1878
This commit is contained in:
parent
95464a1938
commit
2675c659cb
2 changed files with 13 additions and 5 deletions
|
@ -1,5 +1,5 @@
|
||||||
config BR2_PACKAGE_OPENVPN
|
config BR2_PACKAGE_OPENVPN
|
||||||
tristate "openvpn - VPN solution using SSL"
|
tristate "openvpn - Open source VPN solution using SSL"
|
||||||
default m if CONFIG_DEVEL
|
default m if CONFIG_DEVEL
|
||||||
select BR2_PACKAGE_KMOD_TUN
|
select BR2_PACKAGE_KMOD_TUN
|
||||||
select BR2_PACKAGE_LIBOPENSSL
|
select BR2_PACKAGE_LIBOPENSSL
|
||||||
|
@ -16,6 +16,11 @@ config BR2_PACKAGE_OPENVPN_SERVER
|
||||||
default y
|
default y
|
||||||
depends BR2_PACKAGE_OPENVPN
|
depends BR2_PACKAGE_OPENVPN
|
||||||
|
|
||||||
|
config BR2_PACKAGE_OPENVPN_HTTP
|
||||||
|
bool "Enable http proxy support"
|
||||||
|
default y
|
||||||
|
depends BR2_PACKAGE_OPENVPN
|
||||||
|
|
||||||
config BR2_PACKAGE_OPENVPN_LZO
|
config BR2_PACKAGE_OPENVPN_LZO
|
||||||
bool "Enable transparent compression (lzo)"
|
bool "Enable transparent compression (lzo)"
|
||||||
default y
|
default y
|
||||||
|
|
|
@ -3,9 +3,9 @@
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=openvpn
|
PKG_NAME:=openvpn
|
||||||
PKG_VERSION:=2.0.1
|
PKG_VERSION:=2.0.2
|
||||||
PKG_RELEASE:=2
|
PKG_RELEASE:=1
|
||||||
PKG_MD5SUM:=fad7a08c0d68371c2c0e6428bcb98fa5
|
PKG_MD5SUM:=862f8788f080f669b1ae00a74ef68001
|
||||||
|
|
||||||
PKG_SOURCE_URL:=http://openvpn.net/release @SF/openvpn
|
PKG_SOURCE_URL:=http://openvpn.net/release @SF/openvpn
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
|
@ -28,6 +28,9 @@ endif
|
||||||
ifneq ($(BR2_PACKAGE_OPENVPN_SERVER),y)
|
ifneq ($(BR2_PACKAGE_OPENVPN_SERVER),y)
|
||||||
DISABLE_SERVER:=--disable-server
|
DISABLE_SERVER:=--disable-server
|
||||||
endif
|
endif
|
||||||
|
ifneq ($(BR2_PACKAGE_OPENVPN_HTTP),y)
|
||||||
|
DISABLE_HTTP:=--disable-http
|
||||||
|
endif
|
||||||
|
|
||||||
$(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared
|
$(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared
|
||||||
(cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
|
(cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
|
||||||
|
@ -62,9 +65,9 @@ $(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared
|
||||||
--disable-plugins \
|
--disable-plugins \
|
||||||
--disable-management \
|
--disable-management \
|
||||||
--disable-socks \
|
--disable-socks \
|
||||||
--disable-http \
|
|
||||||
$(DISABLE_LZO) \
|
$(DISABLE_LZO) \
|
||||||
$(DISABLE_SERVER) \
|
$(DISABLE_SERVER) \
|
||||||
|
$(DISABLE_HTTP) \
|
||||||
);
|
);
|
||||||
touch $(PKG_BUILD_DIR)/.configured
|
touch $(PKG_BUILD_DIR)/.configured
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue