diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-08-01 14:41:12 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-08-01 14:41:12 +0800 |
commit | 205f4214b5a2cc689065023c10b12ef24202824c (patch) | |
tree | 02d09bd067daba7ade01dbafcaac595d94e3d523 /deskutils | |
parent | 3a6824114e93c8b44a7755f8c989cc9977384d9a (diff) | |
download | marcuscom-ports-205f4214b5a2cc689065023c10b12ef24202824c.tar marcuscom-ports-205f4214b5a2cc689065023c10b12ef24202824c.tar.gz marcuscom-ports-205f4214b5a2cc689065023c10b12ef24202824c.tar.bz2 marcuscom-ports-205f4214b5a2cc689065023c10b12ef24202824c.tar.lz marcuscom-ports-205f4214b5a2cc689065023c10b12ef24202824c.tar.xz marcuscom-ports-205f4214b5a2cc689065023c10b12ef24202824c.tar.zst marcuscom-ports-205f4214b5a2cc689065023c10b12ef24202824c.zip |
Fix a crash on startup on 64-bit platforms. See
http://bugzilla.gnome.org/show_bug.cgi?id=312198 for more details.
Reported by: Caelian on #freebsd-gnome
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@4368 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'deskutils')
-rw-r--r-- | deskutils/gnome-utils/Makefile | 3 | ||||
-rw-r--r-- | deskutils/gnome-utils/files/patch-logview_log_repaint.c | 12 | ||||
-rw-r--r-- | deskutils/gnomeutils2/Makefile | 3 | ||||
-rw-r--r-- | deskutils/gnomeutils2/files/patch-logview_log_repaint.c | 12 |
4 files changed, 28 insertions, 2 deletions
diff --git a/deskutils/gnome-utils/Makefile b/deskutils/gnome-utils/Makefile index 031913365..20108b9ab 100644 --- a/deskutils/gnome-utils/Makefile +++ b/deskutils/gnome-utils/Makefile @@ -3,11 +3,12 @@ # Whom: Joe Marcus Clarke <marcus@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/deskutils/gnomeutils2/Makefile,v 1.64 2005/07/11 21:35:49 marcus Exp $ +# $MCom: ports/deskutils/gnomeutils2/Makefile,v 1.65 2005/07/26 01:48:09 marcus Exp $ # PORTNAME= gnomeutils2 PORTVERSION= 2.11.90 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= deskutils gnome MASTER_SITES= ${MASTER_SITE_GNOME} diff --git a/deskutils/gnome-utils/files/patch-logview_log_repaint.c b/deskutils/gnome-utils/files/patch-logview_log_repaint.c new file mode 100644 index 000000000..7b3a2246f --- /dev/null +++ b/deskutils/gnome-utils/files/patch-logview_log_repaint.c @@ -0,0 +1,12 @@ +--- logview/log_repaint.c.orig Mon Aug 1 01:59:45 2005 ++++ logview/log_repaint.c Mon Aug 1 01:59:55 2005 +@@ -413,8 +413,7 @@ logview_draw_log_lines (LogviewWindow *w + utf8 = GetDateHeader (line); + gtk_tree_store_append (GTK_TREE_STORE (model), &iter, NULL); + gtk_tree_store_set (GTK_TREE_STORE (model), &iter, +- DATE, utf8, HOSTNAME, FALSE, +- PROCESS, FALSE, MESSAGE, FALSE, -1); ++ DATE, utf8, -1); + + /* store pointer to the date headers, using the month and day as the key */ + diff --git a/deskutils/gnomeutils2/Makefile b/deskutils/gnomeutils2/Makefile index 031913365..20108b9ab 100644 --- a/deskutils/gnomeutils2/Makefile +++ b/deskutils/gnomeutils2/Makefile @@ -3,11 +3,12 @@ # Whom: Joe Marcus Clarke <marcus@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/deskutils/gnomeutils2/Makefile,v 1.64 2005/07/11 21:35:49 marcus Exp $ +# $MCom: ports/deskutils/gnomeutils2/Makefile,v 1.65 2005/07/26 01:48:09 marcus Exp $ # PORTNAME= gnomeutils2 PORTVERSION= 2.11.90 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= deskutils gnome MASTER_SITES= ${MASTER_SITE_GNOME} diff --git a/deskutils/gnomeutils2/files/patch-logview_log_repaint.c b/deskutils/gnomeutils2/files/patch-logview_log_repaint.c new file mode 100644 index 000000000..7b3a2246f --- /dev/null +++ b/deskutils/gnomeutils2/files/patch-logview_log_repaint.c @@ -0,0 +1,12 @@ +--- logview/log_repaint.c.orig Mon Aug 1 01:59:45 2005 ++++ logview/log_repaint.c Mon Aug 1 01:59:55 2005 +@@ -413,8 +413,7 @@ logview_draw_log_lines (LogviewWindow *w + utf8 = GetDateHeader (line); + gtk_tree_store_append (GTK_TREE_STORE (model), &iter, NULL); + gtk_tree_store_set (GTK_TREE_STORE (model), &iter, +- DATE, utf8, HOSTNAME, FALSE, +- PROCESS, FALSE, MESSAGE, FALSE, -1); ++ DATE, utf8, -1); + + /* store pointer to the date headers, using the month and day as the key */ + |