summaryrefslogtreecommitdiffstats
path: root/www
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2005-08-20 08:00:49 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2005-08-20 08:00:49 +0800
commit0616ea2cd12adb12bb262adb5428df29066fba33 (patch)
tree57f5cbff10224c287a6aee997906515416e1b78c /www
parentf1333dbcd807d12cf33d62fc58f7590bd62d16fe (diff)
downloadmarcuscom-ports-0616ea2cd12adb12bb262adb5428df29066fba33.tar
marcuscom-ports-0616ea2cd12adb12bb262adb5428df29066fba33.tar.gz
marcuscom-ports-0616ea2cd12adb12bb262adb5428df29066fba33.tar.bz2
marcuscom-ports-0616ea2cd12adb12bb262adb5428df29066fba33.tar.lz
marcuscom-ports-0616ea2cd12adb12bb262adb5428df29066fba33.tar.xz
marcuscom-ports-0616ea2cd12adb12bb262adb5428df29066fba33.tar.zst
marcuscom-ports-0616ea2cd12adb12bb262adb5428df29066fba33.zip
Add a patch to fix crashes with newer versions of GTK+.
Obtained from: ports-stable git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@4561 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'www')
-rw-r--r--www/mozilla-devel/Makefile4
-rw-r--r--www/mozilla-devel/files/patch-mozilla_widget_src_gtk2_mozdrawingarea.c12
2 files changed, 14 insertions, 2 deletions
diff --git a/www/mozilla-devel/Makefile b/www/mozilla-devel/Makefile
index 21c78a155..0fe1da746 100644
--- a/www/mozilla-devel/Makefile
+++ b/www/mozilla-devel/Makefile
@@ -3,12 +3,12 @@
# Whom: eivind/dima/jseger
#
# $FreeBSD$
-# $MCom: ports/www/mozilla-devel/Makefile,v 1.5 2005/08/15 17:44:06 ahze Exp $
+# $MCom: ports/www/mozilla-devel/Makefile,v 1.6 2005/08/19 02:31:13 mezz Exp $
#
PORTNAME?= mozilla
PORTVERSION= 1.8.b1
-PORTREVISION?= 3
+PORTREVISION?= 5
PORTEPOCH?= 2
CATEGORIES?= www
MASTER_SITES= ${MASTER_SITE_MOZILLA}
diff --git a/www/mozilla-devel/files/patch-mozilla_widget_src_gtk2_mozdrawingarea.c b/www/mozilla-devel/files/patch-mozilla_widget_src_gtk2_mozdrawingarea.c
new file mode 100644
index 000000000..9e58b5186
--- /dev/null
+++ b/www/mozilla-devel/files/patch-mozilla_widget_src_gtk2_mozdrawingarea.c
@@ -0,0 +1,12 @@
+--- widget/src/gtk2/mozdrawingarea.c.orig Tue Apr 30 12:29:00 2002
++++ widget/src/gtk2/mozdrawingarea.c Thu Aug 18 22:27:27 2005
+@@ -168,7 +168,9 @@
+
+ drawingarea = MOZ_DRAWINGAREA(object);
+
++ gdk_window_set_user_data(drawingarea->inner_window, NULL);
+ gdk_window_destroy(drawingarea->inner_window);
++ gdk_window_set_user_data(drawingarea->clip_window, NULL);
+ gdk_window_destroy(drawingarea->clip_window);
+
+ (* parent_class->finalize) (object);