aboutsummaryrefslogtreecommitdiffstats
path: root/testing/xf86-video-virtualbox/musl-no-glibc.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2014-06-03 11:40:42 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2014-06-03 11:40:42 +0000
commit6fa5539d2b47239c5829fc6a3631fa8d9fc7f677 (patch)
tree4cf0cc0f09736838820415d1296d8f5590ea16e9 /testing/xf86-video-virtualbox/musl-no-glibc.patch
parentd4713623ebb976a3b8b04b54370d575507adb998 (diff)
downloadaports-6fa5539d2b47239c5829fc6a3631fa8d9fc7f677.tar.bz2
aports-6fa5539d2b47239c5829fc6a3631fa8d9fc7f677.tar.xz
testing/xf86-video-virtualbox: add some fixes for musl
but those are not all
Diffstat (limited to 'testing/xf86-video-virtualbox/musl-no-glibc.patch')
-rw-r--r--testing/xf86-video-virtualbox/musl-no-glibc.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/testing/xf86-video-virtualbox/musl-no-glibc.patch b/testing/xf86-video-virtualbox/musl-no-glibc.patch
new file mode 100644
index 0000000000..65372f5d9d
--- /dev/null
+++ b/testing/xf86-video-virtualbox/musl-no-glibc.patch
@@ -0,0 +1,23 @@
+--- ./src/VBox/Runtime/r3/linux/thread-affinity-linux.cpp.orig
++++ ./src/VBox/Runtime/r3/linux/thread-affinity-linux.cpp
+@@ -32,6 +32,8 @@
+ # define _GNU_SOURCE
+ #endif
+ #include <features.h>
++
++#if defined(__GLIBC__)
+ #if __GLIBC_PREREQ(2,4)
+
+ #include <sched.h>
+@@ -87,6 +89,11 @@
+
+ return VINF_SUCCESS;
+ }
++
++#else
++# include "../../generic/RTThreadGetAffinity-stub-generic.cpp"
++# include "../../generic/RTThreadSetAffinity-stub-generic.cpp"
++#endif
+
+ #else
+ # include "../../generic/RTThreadGetAffinity-stub-generic.cpp"