1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-26 05:02:18 +00:00

Fix defunc processes created by opening tray balloons, bump the PORTREVISION.

Obtained from:	http://xchat.org/files/source/2.8/patches/
This commit is contained in:
Jeremy Messenger 2007-06-07 02:21:42 +00:00
parent de5a1e1238
commit ca85956a03
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=192960
2 changed files with 15 additions and 1 deletions

View File

@ -8,7 +8,7 @@
PORTNAME= xchat
PORTVERSION= 2.8.2
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= irc gnome ipv6
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \
http://xchat.org/files/source/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}/

View File

@ -0,0 +1,14 @@
#
# Fix defunc processes created by opening tray balloons
#
--- src/fe-gtk/plugin-tray.c 20 May 2007 11:08:03 -0000 1.21
+++ src/fe-gtk/plugin-tray.c 31 May 2007 13:12:19 -0000
@@ -148,7 +148,7 @@
argv[5] = title;
argv[6] = text = strip_color (text, -1, STRIP_ALL);
argv[7] = NULL;
- util_execv (argv);
+ xchat_execv (argv);
g_free ((char *)path);
free ((char *)text);
}