diff options
author | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-02-28 07:31:29 +0000 |
---|---|---|
committer | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-02-28 07:31:29 +0000 |
commit | 96fe7e46e0ee0b566e723c84fa951406cd1ada93 (patch) | |
tree | d3507879e78431d8a699519ae89eef775a075049 /openwrt/package/openvpn/Makefile | |
parent | cda2bdcb95f6e7cd356ba090fff641fa4a7a9c2f (diff) |
Added support for : save-password( --enable-password-save), smaller executable (--enable-small)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@3284 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/openvpn/Makefile')
-rw-r--r-- | openwrt/package/openvpn/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/openwrt/package/openvpn/Makefile b/openwrt/package/openvpn/Makefile index e5e1275841..5ae1a31200 100644 --- a/openwrt/package/openvpn/Makefile +++ b/openwrt/package/openvpn/Makefile @@ -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 |