summaryrefslogtreecommitdiff
path: root/www/w3m
diff options
context:
space:
mode:
authoradrianp <adrianp@pkgsrc.org>2006-12-28 22:08:35 +0000
committeradrianp <adrianp@pkgsrc.org>2006-12-28 22:08:35 +0000
commitc5bf6ff94e5d66fe96e01c9abfd92327e3d80c10 (patch)
treec6fd59dfe49a633db29561bcd37c8cb031b1a658 /www/w3m
parent0ed922f0384205f6f4d19ad4b121b56010c9adb0 (diff)
downloadpkgsrc-c5bf6ff94e5d66fe96e01c9abfd92327e3d80c10.tar.gz
Add a patch for a recent format string bug from the w3m CVS
Bump PKGREVISION
Diffstat (limited to 'www/w3m')
-rw-r--r--www/w3m/Makefile4
-rw-r--r--www/w3m/distinfo3
-rw-r--r--www/w3m/patches/patch-ac13
3 files changed, 17 insertions, 3 deletions
diff --git a/www/w3m/Makefile b/www/w3m/Makefile
index 47b65d081f2..9fbfbbf5076 100644
--- a/www/w3m/Makefile
+++ b/www/w3m/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.48 2006/02/05 23:11:29 joerg Exp $
+# $NetBSD: Makefile,v 1.49 2006/12/28 22:08:35 adrianp Exp $
#
PKGNAME= w3m-${W3M_VERS}
-PKGREVISION= 4
+PKGREVISION= 5
COMMENT= Multilingualized version of a pager/text-based browser w3m
CONFLICTS+= w3m-img-[0-9]*
diff --git a/www/w3m/distinfo b/www/w3m/distinfo
index 4e209bd9f99..b7be583f797 100644
--- a/www/w3m/distinfo
+++ b/www/w3m/distinfo
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.15 2005/02/24 14:08:39 wiz Exp $
+$NetBSD: distinfo,v 1.16 2006/12/28 22:08:35 adrianp Exp $
SHA1 (w3m-0.5.1.tar.gz) = 7da299648c236772bcde9b0e92e23346c8af0aca
RMD160 (w3m-0.5.1.tar.gz) = a5ffd3a8d44ed55109a1ab4a34d51ae236902654
Size (w3m-0.5.1.tar.gz) = 1892121 bytes
SHA1 (patch-ab) = c0c21616d1d3557453648107eca26eaa91af4741
+SHA1 (patch-ac) = 422b45e25791f6ceb6fa4169ae76c56fa4dd27ff
diff --git a/www/w3m/patches/patch-ac b/www/w3m/patches/patch-ac
new file mode 100644
index 00000000000..fb65aa5ef27
--- /dev/null
+++ b/www/w3m/patches/patch-ac
@@ -0,0 +1,13 @@
+$NetBSD: patch-ac,v 1.12 2006/12/28 22:08:35 adrianp Exp $
+
+--- file.c.orig 2004-04-16 19:47:19.000000000 +0100
++++ file.c
+@@ -7799,7 +7799,7 @@ inputAnswer(char *prompt)
+ ans = inputChar(prompt);
+ }
+ else {
+- printf(prompt);
++ printf("%s", prompt);
+ fflush(stdout);
+ ans = Strfgets(stdin)->ptr;
+ }