diff options
author | wiz <wiz@pkgsrc.org> | 2016-11-06 19:27:25 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2016-11-06 19:27:25 +0000 |
commit | f64abc98a866eb5550484257f195edd1e4ee8e4f (patch) | |
tree | 1908172a730c4f213cfa7cc16b96ba01696aa421 | |
parent | 19025f44165f7897135c19bc1c6da7b743ec02ec (diff) | |
download | pkgsrc-f64abc98a866eb5550484257f195edd1e4ee8e4f.tar.gz |
Remove obsolete patches.
-rw-r--r-- | www/w3m/patches/patch-aa | 15 | ||||
-rw-r--r-- | www/w3m/patches/patch-ac | 26 | ||||
-rw-r--r-- | www/w3m/patches/patch-ak | 15 | ||||
-rw-r--r-- | www/w3m/patches/patch-al | 32 | ||||
-rw-r--r-- | www/w3m/patches/patch-scripts_w3mman_w3mman2html.cgi.in | 15 |
5 files changed, 0 insertions, 103 deletions
diff --git a/www/w3m/patches/patch-aa b/www/w3m/patches/patch-aa deleted file mode 100644 index 7fb93802013..00000000000 --- a/www/w3m/patches/patch-aa +++ /dev/null @@ -1,15 +0,0 @@ -$NetBSD: patch-aa,v 1.13 2008/12/13 08:53:27 obache Exp $ - -PKG_CONFIG points right location in pkgsrc. - ---- configure.orig 2007-05-31 12:17:05.000000000 +0000 -+++ configure -@@ -5602,8 +5602,6 @@ echo "${ECHO_T}$with_imagelib" >&6; } - with_gtk2="yes" - if test x"$PKG_CONFIG" = x; then - PKG_CONFIG=pkg-config -- else -- PKG_CONFIG=: - fi;; - esac - done diff --git a/www/w3m/patches/patch-ac b/www/w3m/patches/patch-ac deleted file mode 100644 index d201243cc0c..00000000000 --- a/www/w3m/patches/patch-ac +++ /dev/null @@ -1,26 +0,0 @@ -$NetBSD: patch-ac,v 1.15 2011/01/21 23:34:14 wiz Exp $ - -Fix for CVE-2010-2074 taken from here: - -http://www.openwall.com/lists/oss-security/2010/06/14/4 - ---- fm.h.orig 2011-01-04 09:22:21.000000000 +0000 -+++ fm.h -@@ -1135,7 +1135,7 @@ global int view_unseenobject init(TRUE); - #endif - - #if defined(USE_SSL) && defined(USE_SSL_VERIFY) --global int ssl_verify_server init(FALSE); -+global int ssl_verify_server init(TRUE); - global char *ssl_cert_file init(NULL); - global char *ssl_key_file init(NULL); - global char *ssl_ca_path init(NULL); -@@ -1144,7 +1144,7 @@ global int ssl_path_modified init(FALSE) - #endif /* defined(USE_SSL) && - * defined(USE_SSL_VERIFY) */ - #ifdef USE_SSL --global char *ssl_forbid_method init(NULL); -+global char *ssl_forbid_method init("2"); - #endif - - global int is_redisplay init(FALSE); diff --git a/www/w3m/patches/patch-ak b/www/w3m/patches/patch-ak deleted file mode 100644 index 80a137e9c8c..00000000000 --- a/www/w3m/patches/patch-ak +++ /dev/null @@ -1,15 +0,0 @@ -$NetBSD: patch-ak,v 1.1 2008/12/13 08:52:13 obache Exp $ - -PKG_CONFIG points right location in pkgsrc. - ---- acinclude.m4.orig 2006-04-07 13:21:11.000000000 +0000 -+++ acinclude.m4 -@@ -652,8 +652,6 @@ AC_DEFUN([AC_W3M_IMAGE], - with_gtk2="yes" - if test x"$PKG_CONFIG" = x; then - PKG_CONFIG=pkg-config -- else -- PKG_CONFIG=: - fi;; - esac - done diff --git a/www/w3m/patches/patch-al b/www/w3m/patches/patch-al deleted file mode 100644 index 5a2aadc37a1..00000000000 --- a/www/w3m/patches/patch-al +++ /dev/null @@ -1,32 +0,0 @@ -$NetBSD: patch-al,v 1.1 2011/04/05 05:55:29 uebayasi Exp $ - -http://gnats.netbsd.org/42400 - -this patch adds support for single quoted meta refresh parameters, which is -needed to access GMail with w3m. - -from: Paul Boekholt ( boekholt ) - 2008-09-06 06:54 -support single quoted meta refresh parameter - ID: 2096461 -http://sourceforge.net/tracker/?func=detail&aid=2096461&group_id=39518&atid=425441 - ---- file.c.orig 2011-01-04 09:22:21.000000000 +0000 -+++ file.c -@@ -4284,15 +4284,15 @@ getMetaRefreshParam(char *q, Str *refres - while (*q) { - if (!strncasecmp(q, "url=", 4)) { - q += 4; -- if (*q == '\"') /* " */ -+ if (*q == '\"' || *q == '\'') /* " or ' */ - q++; - r = q; - while (*r && !IS_SPACE(*r) && *r != ';') - r++; - s_tmp = Strnew_charp_n(q, r - q); - -- if (s_tmp->ptr[s_tmp->length - 1] == '\"') { /* " -- */ -+ if (s_tmp->ptr[s_tmp->length - 1] == '\"' || /* " */ -+ s_tmp->ptr[s_tmp->length - 1] == '\'') { /* ' */ - s_tmp->length--; - s_tmp->ptr[s_tmp->length] = '\0'; - } diff --git a/www/w3m/patches/patch-scripts_w3mman_w3mman2html.cgi.in b/www/w3m/patches/patch-scripts_w3mman_w3mman2html.cgi.in deleted file mode 100644 index df152271b57..00000000000 --- a/www/w3m/patches/patch-scripts_w3mman_w3mman2html.cgi.in +++ /dev/null @@ -1,15 +0,0 @@ -$NetBSD: patch-scripts_w3mman_w3mman2html.cgi.in,v 1.1 2015/08/24 13:42:28 leot Exp $ - -Use of defined() on aggregates (arrays and hashes) is deprecated from Perl 5.22. - ---- scripts/w3mman/w3mman2html.cgi.in.orig 2011-01-04 09:22:28.000000000 +0000 -+++ scripts/w3mman/w3mman2html.cgi.in -@@ -220,7 +220,7 @@ sub is_command { - local($p); - - (! -d && -x) || return 0; -- if (! defined(%PATH)) { -+ if (! %PATH) { - for $p (split(":", $ENV{'PATH'})) { - $p =~ s@/+$@@; - $PATH{$p} = 1; |