瀏覽代碼

Bump openvpn to 2.1.1

Closes #937.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Gustavo Zacarias 15 年之前
父節點
當前提交
b3febdac86
共有 3 個文件被更改,包括 31 次插入10 次删除
  1. 2 1
      CHANGES
  2. 16 5
      package/openvpn/Config.in
  3. 13 4
      package/openvpn/openvpn.mk

+ 2 - 1
CHANGES

@@ -7,7 +7,7 @@
 	Updated/fixed packages: autoconf, bind, binutils, bootutils, busybox,
 	directfb, e2fsprogs, gstreamer, gst-plugins-bad, hal, iptables,
 	iw, jpeg, kismet, libfuse, libpcap, libungif, lighttpd, mesa, mpg123,
-	mtd-utils, neon, pcre, qt, rpm, sshfs, tremor, u-boot,
+	mtd-utils, neon, openvpn, pcre, qt, rpm, sshfs, tremor, u-boot,
 	usb_modeswitch, usbutils, wpa_supplicant, xfsprogs
 
 	Issues resolved (http://bugs.uclibc.org):
@@ -35,6 +35,7 @@
 	#919: Bump usb_modeswitch package to 1.0.7
 	#925: Bump wpa_supplicant package to 0.6.10
 	#931: Bump kismet package to 2010-01-R1
+	#937: Bump openvpn package to 2.1.1
 
 2009.11, Released December 1st, 2009:
 

+ 16 - 5
package/openvpn/Config.in

@@ -1,10 +1,5 @@
-comment "openvpn has no inherent support for AVR32" 
-	depends on BR2_avr32 && BR2_PACKAGE_OPENVPN
-
 config BR2_PACKAGE_OPENVPN
 	bool "openvpn"
-	select BR2_PACKAGE_LZO
-	select BR2_PACKAGE_OPENSSL
  	help
 	  OpenVPN is a full-featured SSL VPN solution which can
 	  accomodate a wide range of configurations, including road
@@ -14,3 +9,19 @@ config BR2_PACKAGE_OPENVPN
 	  fine-grained access-controls.
 
 	  http://openvpn.sourceforge.net/
+
+config BR2_PACKAGE_OPENVPN_LZO
+	bool "LZO compression"
+	default y
+	depends on BR2_PACKAGE_OPENVPN
+	select BR2_PACKAGE_LZO
+	help
+	  Enable LZO compression.
+
+config BR2_PACKAGE_OPENVPN_OPENSSL
+	bool "OpenSSL support"
+	default y
+	depends on BR2_PACKAGE_OPENVPN
+	select BR2_PACKAGE_OPENSSL
+	help
+	  Enable TLS-based key exchange and OpenSSL crypto support.

+ 13 - 4
package/openvpn/openvpn.mk

@@ -4,11 +4,8 @@
 #
 #############################################################
 
-OPENVPN_VERSION = 2.0.9
-OPENVPN_SOURCE = openvpn-$(OPENVPN_VERSION).tar.gz
+OPENVPN_VERSION = 2.1.1
 OPENVPN_SITE = http://openvpn.net/release
-OPENVPN_DEPENDENCIES = lzo openssl
-
 OPENVPN_CONF_OPT = --enable-small
 
 ifeq ($(BR2_PTHREADS_NATIVE),y)
@@ -17,6 +14,18 @@ else
 	OPENVPN_CONF_OPT += --enable-pthread
 endif
 
+ifeq ($(BR2_PACKAGE_OPENVPN_LZO),y)
+	OPENVPN_DEPENDENCIES += lzo
+else
+	OPENVPN_CONF_OPT += --disable-lzo
+endif
+
+ifeq ($(BR2_PACKAGE_OPENVPN_OPENSSL),y)
+	OPENVPN_DEPENDENCIES += openssl
+else
+	OPENVPN_CONF_OPT += --disable-crypto --disable-ssl
+endif
+
 $(eval $(call AUTOTARGETS,package,openvpn))
 
 $(OPENVPN_TARGET_INSTALL_TARGET):