openbsd-ports/net/pidgin/patches/patch-pidgin_gtknotify_c
ajacoutot bf26913f6f - update to pidgin-2.4.2; from brad@ (MAINTAINER)
- install schemas files in the right place and add gconftool-2 goo
- use textproc/intltool MODULE
- purple.service: s/LOCALBASE/PREFIX/
2008-06-05 10:24:14 +00:00

21 lines
463 B
Plaintext

$OpenBSD: patch-pidgin_gtknotify_c,v 1.8 2008/06/05 10:24:15 ajacoutot Exp $
--- pidgin/gtknotify.c.orig Sat May 10 11:37:35 2008
+++ pidgin/gtknotify.c Mon May 19 00:40:56 2008
@@ -1049,7 +1049,16 @@ uri_command(const char *command, gboolean sync)
g_error_free(error);
}
else
+#if HAVE_SIGNAL_H
+ {
+ extern int real_status;
+
+ if (WIFEXITED(real_status))
+ ret = WEXITSTATUS(real_status);
+ }
+#else
ret = status;
+#endif
}
else
{