X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/e8de94e89de4b3272cb220ce4ee2670596b87f9a..aaa55ddf861074c6673cc05113ae4a84a4acea2c:/openwrt/package/openvpn/Makefile diff --git a/openwrt/package/openvpn/Makefile b/openwrt/package/openvpn/Makefile index f6f8c231f..bf0ada2c4 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 +PKG_VERSION:=2.0.2 PKG_RELEASE:=1 -PKG_MD5SUM:=7401faebc6baee9add32608709c54eec +PKG_MD5SUM:=862f8788f080f669b1ae00a74ef68001 PKG_SOURCE_URL:=http://openvpn.net/release @SF/openvpn PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz @@ -18,7 +18,7 @@ include $(TOPDIR)/package/rules.mk $(eval $(call PKG_template,OPENVPN,openvpn,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) -PKG_DEPEND:="openssl, kmod-tun" +PKG_DEPEND:="libopenssl, kmod-tun" ifneq ($(BR2_PACKAGE_OPENVPN_LZO),y) DISABLE_LZO:=--disable-lzo else @@ -28,6 +28,9 @@ endif ifneq ($(BR2_PACKAGE_OPENVPN_SERVER),y) DISABLE_SERVER:=--disable-server endif +ifneq ($(BR2_PACKAGE_OPENVPN_HTTP),y) +DISABLE_HTTP:=--disable-http +endif $(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared (cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \ @@ -62,9 +65,9 @@ $(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared --disable-plugins \ --disable-management \ --disable-socks \ - --disable-http \ $(DISABLE_LZO) \ $(DISABLE_SERVER) \ + $(DISABLE_HTTP) \ ); touch $(PKG_BUILD_DIR)/.configured