summaryrefslogtreecommitdiff
path: root/multimedia/xine-ui/patches/patch-ad
diff options
context:
space:
mode:
Diffstat (limited to 'multimedia/xine-ui/patches/patch-ad')
-rw-r--r--multimedia/xine-ui/patches/patch-ad21
1 files changed, 0 insertions, 21 deletions
diff --git a/multimedia/xine-ui/patches/patch-ad b/multimedia/xine-ui/patches/patch-ad
deleted file mode 100644
index 191b6b0f502..00000000000
--- a/multimedia/xine-ui/patches/patch-ad
+++ /dev/null
@@ -1,21 +0,0 @@
-$NetBSD: patch-ad,v 1.3 2005/02/22 00:44:20 wiz Exp $
-
---- src/xitk/panel.c.orig 2004-07-04 18:25:14.000000000 +0200
-+++ src/xitk/panel.c
-@@ -1525,14 +1525,14 @@ void panel_init (void) {
-
- {
- pthread_attr_t pth_attrs;
--#if !defined (__OpenBSD__)
-+#ifdef _POSIX_THREAD_PRIORITY_SCHEDULING
- struct sched_param pth_params;
- #endif
-
- pthread_attr_init(&pth_attrs);
-
- /* this won't work on linux, freebsd 5.0 */
--#if !defined (__OpenBSD__)
-+#ifdef _POSIX_THREAD_PRIORITY_SCHEDULING
- pthread_attr_getschedparam(&pth_attrs, &pth_params);
- pth_params.sched_priority = sched_get_priority_min(SCHED_OTHER);
- pthread_attr_setschedparam(&pth_attrs, &pth_params);