pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/www/w3m/patches Remove obsolete patches.
details: https://anonhg.NetBSD.org/pkgsrc/rev/a48105959679
branches: trunk
changeset: 354677:a48105959679
user: wiz <wiz%pkgsrc.org@localhost>
date: Sun Nov 06 19:27:25 2016 +0000
description:
Remove obsolete patches.
diffstat:
www/w3m/patches/patch-aa | 15 -------
www/w3m/patches/patch-ac | 26 -------------
www/w3m/patches/patch-ak | 15 -------
www/w3m/patches/patch-al | 32 -----------------
www/w3m/patches/patch-scripts_w3mman_w3mman2html.cgi.in | 15 -------
5 files changed, 0 insertions(+), 103 deletions(-)
diffs (123 lines):
diff -r 6c08b5b2a0e5 -r a48105959679 www/w3m/patches/patch-aa
--- a/www/w3m/patches/patch-aa Sun Nov 06 19:27:16 2016 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -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 -r 6c08b5b2a0e5 -r a48105959679 www/w3m/patches/patch-ac
--- a/www/w3m/patches/patch-ac Sun Nov 06 19:27:16 2016 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -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 -r 6c08b5b2a0e5 -r a48105959679 www/w3m/patches/patch-ak
--- a/www/w3m/patches/patch-ak Sun Nov 06 19:27:16 2016 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -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 -r 6c08b5b2a0e5 -r a48105959679 www/w3m/patches/patch-al
--- a/www/w3m/patches/patch-al Sun Nov 06 19:27:16 2016 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -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 -r 6c08b5b2a0e5 -r a48105959679 www/w3m/patches/patch-scripts_w3mman_w3mman2html.cgi.in
--- a/www/w3m/patches/patch-scripts_w3mman_w3mman2html.cgi.in Sun Nov 06 19:27:16 2016 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -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;
Home |
Main Index |
Thread Index |
Old Index