X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/62117906f225cc10689c4e85ebfcbaeb8cf6a57e..4c13cd224dbc08e39d0c1cc09a233a19251899d2:/openwrt/package/openvpn/Makefile diff --git a/openwrt/package/openvpn/Makefile b/openwrt/package/openvpn/Makefile index e5e127584..f1a0f8b67 100644 --- a/openwrt/package/openvpn/Makefile +++ b/openwrt/package/openvpn/Makefile @@ -3,9 +3,9 @@ include $(TOPDIR)/rules.mk PKG_NAME:=openvpn -PKG_VERSION:=2.0.5 +PKG_VERSION:=2.0.7 PKG_RELEASE:=1 -PKG_MD5SUM:=4bd7a42991c93db23842a0992debe53b +PKG_MD5SUM:=93528233f1f6d02fc18e2c00f82e0aca PKG_SOURCE_URL:=http://openvpn.net/release @SF/openvpn PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz @@ -38,6 +38,12 @@ endif ifneq ($(BR2_COMPILE_OPENVPN_WITH_HTTP),y) DISABLE_HTTP:=--disable-http endif +ifeq ($(BR2_COMPILE_OPENVPN_WITH_PASSWORD_SAVE),y) +ENABLE_PASSWORD_SAVE:=--enable-password-save +endif +ifeq ($(BR2_COMPILE_OPENVPN_WITH_SMALL),y) +ENABLE_SMALL:=--enable-small +endif $(PKG_BUILD_DIR)/.configured: (cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \ @@ -76,6 +82,8 @@ $(PKG_BUILD_DIR)/.configured: $(DISABLE_OPENSSL) \ $(DISABLE_SERVER) \ $(DISABLE_HTTP) \ + $(ENABLE_PASSWORD_SAVE) \ + $(ENABLE_SMALL) \ ); touch $(PKG_BUILD_DIR)/.configured