aboutsummaryrefslogtreecommitdiffstats
path: root/testing/vdr/softhddevice-musl.patch
diff options
context:
space:
mode:
authorStefan Reiff <kroko87@hotmail.com>2019-05-12 20:38:56 +0200
committerKevin Daudt <kdaudt@alpinelinux.org>2019-05-12 18:45:42 +0000
commitf4e6ce7f7d97814be2dcee35472176fff98b288c (patch)
tree23271c3b73a2297f3279bac0013252b229a187ae /testing/vdr/softhddevice-musl.patch
parent47965644c390b1be1117769b1e08b31858267e9a (diff)
downloadaports-f4e6ce7f7d97814be2dcee35472176fff98b288c.tar.bz2
aports-f4e6ce7f7d97814be2dcee35472176fff98b288c.tar.xz
community/vdr: move from testing
Diffstat (limited to 'testing/vdr/softhddevice-musl.patch')
-rw-r--r--testing/vdr/softhddevice-musl.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/testing/vdr/softhddevice-musl.patch b/testing/vdr/softhddevice-musl.patch
deleted file mode 100644
index 8564ef5e72..0000000000
--- a/testing/vdr/softhddevice-musl.patch
+++ /dev/null
@@ -1,19 +0,0 @@
---- a/PLUGINS/src/softhddevice/audio.c
-+++ b/PLUGINS/src/softhddevice/audio.c
-@@ -48,6 +48,7 @@
- #include <inttypes.h>
- #include <string.h>
- #include <math.h>
-+#include <sched.h>
-
- #include <libintl.h>
- #define _(str) gettext(str) ///< gettext shortcut
-@@ -1584,7 +1585,7 @@
- if (err < 0) { // underrun error
- return -1;
- }
-- pthread_yield();
-+ sched_yield();
- usleep(OssFragmentTime * 1000); // let fill/empty the buffers
- return 0;
- }