diff options
author | marcus <marcus@FreeBSD.org> | 2003-04-19 20:46:10 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2003-04-19 20:46:10 +0000 |
commit | 8bb8c2b0567711e3c3a7864a4f6700b626aab756 (patch) | |
tree | ec2bac2f32621f849749f1fcd6c34b3e27d35715 /x11-toolkits/libgnomeui | |
parent | 00977d26910d904f02ea51b53970fbf73175fee0 (diff) | |
download | FreeBSD-ports-8bb8c2b0567711e3c3a7864a4f6700b626aab756.zip FreeBSD-ports-8bb8c2b0567711e3c3a7864a4f6700b626aab756.tar.gz |
Add a bandaid to fix aborts on -CURRENT with gnome-python apps. Note, the
crash only occurs when malloc options are set to AJ (default for -CURRENT).
Another workaround for this problem is:
# ln -s aj /etc/malloc.conf
Diffstat (limited to 'x11-toolkits/libgnomeui')
-rw-r--r-- | x11-toolkits/libgnomeui/Makefile | 1 | ||||
-rw-r--r-- | x11-toolkits/libgnomeui/files/patch-libgnomeui_gnome-app.c | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/x11-toolkits/libgnomeui/Makefile b/x11-toolkits/libgnomeui/Makefile index f05fc6b..dbe526b 100644 --- a/x11-toolkits/libgnomeui/Makefile +++ b/x11-toolkits/libgnomeui/Makefile @@ -7,6 +7,7 @@ PORTNAME= libgnomeui PORTVERSION= 2.2.0.1 +PORTREVISION= 1 CATEGORIES= x11-toolkits gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/${PORTNAME}/2.2 diff --git a/x11-toolkits/libgnomeui/files/patch-libgnomeui_gnome-app.c b/x11-toolkits/libgnomeui/files/patch-libgnomeui_gnome-app.c new file mode 100644 index 0000000..a359d9a --- /dev/null +++ b/x11-toolkits/libgnomeui/files/patch-libgnomeui_gnome-app.c @@ -0,0 +1,11 @@ +--- libgnomeui/gnome-app.c.orig Sat Apr 19 16:42:12 2003 ++++ libgnomeui/gnome-app.c Sat Apr 19 16:42:21 2003 +@@ -194,7 +194,7 @@ + static void + gnome_app_instance_init (GnomeApp *app) + { +- const char *icons; ++ const char *icons = NULL; + + app->_priv = NULL; + /* XXX: when there is some private stuff enable this |