blob: 4f40e51635ff905a44aa55d1ce2cd02dc4e1fe78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
diff -ruN qemu-0.6.0.orig/vl.c qemu-0.6.0/vl.c
--- qemu-0.6.0.orig/vl.c 2004-08-20 15:18:08.238568392 +0200
+++ qemu-0.6.0/vl.c 2004-08-20 15:18:44.294087120 +0200
@@ -68,17 +68,6 @@
#ifdef __APPLE__
#include <SDL/SDL.h>
#endif
-#if defined(__linux__)
-/* SDL use the pthreads and they modify sigaction. We don't
- want that. */
-#if (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 2))
-extern void __libc_sigaction();
-#define sigaction(sig, act, oact) __libc_sigaction(sig, act, oact)
-#else
-extern void __sigaction();
-#define sigaction(sig, act, oact) __sigaction(sig, act, oact)
-#endif
-#endif /* __linux__ */
#endif /* CONFIG_SDL */
#include "disas.h"
|