openbsd-ports/audio/xmms/patches/patch-xmms_main_c
naddy 16d111e0af Update to 1.2.7; submitted by maintainer Wilbern Cobb <vedge@csoft.org>.
* Use the system libtool.
* Remove the disk writer flavor, include it by default.
* Add a gnome subpackage.

Notable changes in this release:

General:
* Replaced folder icons.
* Don't display playlist numbers elsewhere when turned off.
* Support 32-bit and 16-bit "bitfield" bmps in skins.
CD Audio:
* Supply a dummy user and hostname to the cddb server.
MPG123:
* Handle UTF-16 encoded tags.
* Major stability fixes.
2002-03-11 17:38:05 +00:00

22 lines
544 B
Plaintext

$OpenBSD: patch-xmms_main_c,v 1.4 2002/03/11 17:38:05 naddy Exp $
--- xmms/main.c.orig Fri Dec 28 08:32:28 2001
+++ xmms/main.c Fri Jan 18 07:39:27 2002
@@ -3379,7 +3373,8 @@
#endif
signal(SIGPIPE, SIG_IGN); /* for controlsocket.c */
- signal(SIGSEGV, segfault_handler);
+
+#if !defined(OpenBSD)
g_thread_init(NULL);
if (!g_thread_supported())
{
@@ -3388,6 +3383,7 @@
"installed LinuxThreads you need to recompile GLIB & GTK+\n"));
exit(1);
}
+#endif
parse_cmd_line(argc, argv, &options);
#if defined(HAVE_SRANDOMDEV)