summaryrefslogtreecommitdiff
path: root/x11
diff options
context:
space:
mode:
authorryoon <ryoon>2013-06-15 06:57:55 +0000
committerryoon <ryoon>2013-06-15 06:57:55 +0000
commit8527f697b57702740e84617fb123d7f10b87c110 (patch)
tree2dd3fbbb1a6dd641f3bc20803c6414d8efe02c07 /x11
parentba6df55cb9ddb370d99f463f667a8149f080ab5d (diff)
downloadpkgsrc-8527f697b57702740e84617fb123d7f10b87c110.tar.gz
Bump PKGREVISION.
* Remove absolete patches for security bug. Noticed by wiz@. Thank you.
Diffstat (limited to 'x11')
-rw-r--r--x11/wxGTK28/Makefile3
-rw-r--r--x11/wxGTK28/patches/patch-ca17
-rw-r--r--x11/wxGTK28/patches/patch-cb15
3 files changed, 2 insertions, 33 deletions
diff --git a/x11/wxGTK28/Makefile b/x11/wxGTK28/Makefile
index 1efece57790..b4956b27e00 100644
--- a/x11/wxGTK28/Makefile
+++ b/x11/wxGTK28/Makefile
@@ -1,9 +1,10 @@
-# $NetBSD: Makefile,v 1.33 2013/06/15 02:30:57 ryoon Exp $
+# $NetBSD: Makefile,v 1.34 2013/06/15 06:57:55 ryoon Exp $
#
.include "../../x11/wxGTK28/Makefile.common"
PKGNAME= ${DISTNAME:S/wxGTK/wxGTK28/}
+PKGREVISION= 1
COMMENT= GTK-based implementation of the wxWidgets GUI library
BUILD_TARGET= all
diff --git a/x11/wxGTK28/patches/patch-ca b/x11/wxGTK28/patches/patch-ca
deleted file mode 100644
index 6fc214a8bb7..00000000000
--- a/x11/wxGTK28/patches/patch-ca
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD: patch-ca,v 1.2 2010/02/16 17:38:14 taca Exp $
-
-deal with CVE-2009-2369.
-
---- src/common/image.cpp.orig 2009-03-06 13:17:40.000000000 +0100
-+++ src/common/image.cpp
-@@ -186,6 +186,10 @@ bool wxImage::Create( int width, int hei
-
- m_refData = new wxImageRefData();
-
-+ if (width <= 0 || height <= 0 || width > INT_MAX / 3 / height) {
-+ UnRef();
-+ return false;
-+ }
- M_IMGDATA->m_data = (unsigned char *) malloc( width*height*3 );
- if (!M_IMGDATA->m_data)
- {
diff --git a/x11/wxGTK28/patches/patch-cb b/x11/wxGTK28/patches/patch-cb
deleted file mode 100644
index 08b67757e09..00000000000
--- a/x11/wxGTK28/patches/patch-cb
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-cb,v 1.1 2010/02/16 17:38:14 taca Exp $
-
-deal with CVE-2009-2625.
-
---- src/expat/lib/xmltok_impl.c.orig 2009-03-06 12:17:57.000000000 +0000
-+++ src/expat/lib/xmltok_impl.c
-@@ -1741,7 +1741,7 @@ PREFIX(updatePosition)(const ENCODING *e
- const char *end,
- POSITION *pos)
- {
-- while (ptr != end) {
-+ while (ptr < end) {
- switch (BYTE_TYPE(enc, ptr)) {
- #define LEAD_CASE(n) \
- case BT_LEAD ## n: \