diff options
author | Yegor Yefremov <yegor_sub1@visionsystems.de> | 2011-08-03 11:18:19 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-08-04 20:54:09 +0200 |
commit | b760d12553149a35f9c8451a750b4e88b81c9652 (patch) | |
tree | 6fe1dfdc3226f72d2081273fd82fd9c722ed0e93 /package/openvpn/openvpn-fix-tmpdir.patch | |
parent | 411543ae80171f9555725421b390c922ae8d6375 (diff) | |
download | buildroot-novena-b760d12553149a35f9c8451a750b4e88b81c9652.tar.gz buildroot-novena-b760d12553149a35f9c8451a750b4e88b81c9652.zip |
openvpn: bump to 2.2.1
tmpdir issue was already fixed in 2.2.1 version, so
remove the patch
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/openvpn/openvpn-fix-tmpdir.patch')
-rw-r--r-- | package/openvpn/openvpn-fix-tmpdir.patch | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/package/openvpn/openvpn-fix-tmpdir.patch b/package/openvpn/openvpn-fix-tmpdir.patch deleted file mode 100644 index 919d49bf2..000000000 --- a/package/openvpn/openvpn-fix-tmpdir.patch +++ /dev/null @@ -1,39 +0,0 @@ -From b70d99fb617350b252c8bde2f1f2d81d3f5b7955 Mon Sep 17 00:00:00 2001 -From: Gustavo Zacarias <gustavo@zacarias.com.ar> -Date: Wed, 27 Apr 2011 18:43:50 +0200 -Subject: [PATCH] Fix compile issues when using --enable-small and --disable-ssl/--disable-crypto - -The tmp_dir string is required in the options struct regardless of options -so spin it out of #if conditionals. - -Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> -Acked-by: David Sommerseth <dazo@users.sourceforge.net> -Signed-off-by: David Sommerseth <dazo@users.sourceforge.net> ---- - options.h | 3 ++- - 1 files changed, 2 insertions(+), 1 deletions(-) - -diff --git a/options.h b/options.h -index a9c6a94..8a51502 100644 ---- a/options.h -+++ b/options.h -@@ -369,6 +369,8 @@ struct options - struct plugin_option_list *plugin_list; - #endif - -+ const char *tmp_dir; -+ - #if P2MP - - #if P2MP_SERVER -@@ -409,7 +411,6 @@ struct options - const char *client_connect_script; - const char *client_disconnect_script; - const char *learn_address_script; -- const char *tmp_dir; - const char *client_config_dir; - bool ccd_exclusive; - bool disable; --- -1.7.0.1 - |