aboutsummaryrefslogtreecommitdiff
path: root/x11-toolkits/tk83
diff options
context:
space:
mode:
authorDirk Meyer <dinoex@FreeBSD.org>2011-09-03 16:13:25 +0000
committerDirk Meyer <dinoex@FreeBSD.org>2011-09-03 16:13:25 +0000
commitc17a1445d36fe4b0e31f49ef8a3ea3e78ba1ce87 (patch)
treeff6da26c660c60a1b7f647e87722234f2881e1e0 /x11-toolkits/tk83
parent667a4d3d1ae781f45967a55c3ced2ccc394b48c1 (diff)
Notes
Diffstat (limited to 'x11-toolkits/tk83')
-rw-r--r--x11-toolkits/tk83/Makefile2
-rw-r--r--x11-toolkits/tk83/files/patch-tkImgGIF.c11
2 files changed, 12 insertions, 1 deletions
diff --git a/x11-toolkits/tk83/Makefile b/x11-toolkits/tk83/Makefile
index d43a0f370b92..79cc4dc1eb14 100644
--- a/x11-toolkits/tk83/Makefile
+++ b/x11-toolkits/tk83/Makefile
@@ -7,7 +7,7 @@
PORTNAME= tk
PORTVERSION= 8.3.5
-PORTREVISION= 9
+PORTREVISION= 10
CATEGORIES= x11-toolkits tk
MASTER_SITES= SF/tcl/Tcl/${PORTVERSION}
DISTNAME= ${PORTNAME}${PORTVERSION}-src
diff --git a/x11-toolkits/tk83/files/patch-tkImgGIF.c b/x11-toolkits/tk83/files/patch-tkImgGIF.c
new file mode 100644
index 000000000000..c70dcae78556
--- /dev/null
+++ b/x11-toolkits/tk83/files/patch-tkImgGIF.c
@@ -0,0 +1,11 @@
+--- ../generic/tkImgGIF.c 2002-03-26 03:29:01.000000000 +0100
++++ ../generic/tkImgGIF.new.c 2007-10-04 20:40:09.000000000 +0200
+@@ -960,7 +960,7 @@
+ /* If interlacing, the next ypos is not just +1 */
+ if (interlace) {
+ ypos += interlaceStep[pass];
+- while (ypos >= height) {
++ while (ypos >= rows) {
+ pass++;
+ if (pass > 3) {
+ return TCL_OK;