Closes #937.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
        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):
        #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:
 
 
-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
          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.
 
 #
 #############################################################
 
-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)
        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):