mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
953083e068
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
13 lines
424 B
Diff
13 lines
424 B
Diff
--- kqemu-1.4.0pre1-orig/kqemu-linux.c 2008-05-30 16:33:34.000000000 -0400
|
|
+++ kqemu-1.4.0pre1-orig/kqemu-linux.c 2011-01-05 16:51:45.407394748 -0500
|
|
@@ -53,6 +53,10 @@
|
|
#define PAGE_KERNEL_EXEC PAGE_KERNEL
|
|
#endif
|
|
|
|
+/* init_MUTEX macro was removed in 2.6.37 */
|
|
+#if LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 36) && !defined(init_MUTEX)
|
|
+#define init_MUTEX(sem) sema_init(sem, 1)
|
|
+#endif
|
|
//#define DEBUG
|
|
|
|
#ifdef DEBUG
|