add more scanning data to wlcompat
[openwrt.git] / package / openvpn / Makefile
index d3ce065..991e52f 100644 (file)
@@ -7,13 +7,21 @@ PKG_VERSION:=2.0_rc19
 PKG_RELEASE:=1
 PKG_MD5SUM:=4b3ea6815d87643a5ebdc811e87b5de3
 
-PKG_SOURCE_URL:=@SF/openvpn
+PKG_SOURCE_URL:=http://openvpn.net/release @SF/openvpn
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
 PKG_CAT:=zcat
 PKG_IPK:=$(PACKAGE_DIR)/$(PKG_NAME)_$(PKG_VERSION)-$(PKG_RELEASE)_$(ARCH).ipk
 PKG_IPK_DIR:=$(PKG_BUILD_DIR)/ipkg
 
+ifneq ($(BR2_PACKAGE_OPENVPN_LZO),y)
+DISABLE_LZO:=--disable-lzo
+endif
+
+ifneq ($(BR2_PACKAGE_OPENVPN_SERVER),y)
+DISABLE_SERVER:=--disable-server
+endif
+
 $(DL_DIR)/$(PKG_SOURCE):
         $(SCRIPT_DIR)/download.pl $(DL_DIR) $(PKG_SOURCE) $(PKG_MD5SUM) $(PKG_SOURCE_URL)
 
@@ -46,6 +54,8 @@ $(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.unpacked
                --disable-management \
                --disable-socks \
                --disable-http \
+               $(DISABLE_LZO) \
+               $(DISABLE_SERVER) \
        );
        touch $(PKG_BUILD_DIR)/.configured
 
This page took 0.022433 seconds and 4 git commands to generate.