summaryrefslogtreecommitdiff
path: root/package/qemu
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-01-31 12:03:48 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2014-01-31 12:03:48 +0100
commit174df1bc12ff2f24857ae43fdbb40ad449bb9bc1 (patch)
tree3492beaea13c38c55a946d1fe732a808818daee3 /package/qemu
parent1e9a681a0fc22e40abe393aa9f015a12f7b6dc63 (diff)
fix qemu build for older kernels
Diffstat (limited to 'package/qemu')
-rw-r--r--package/qemu/Makefile2
-rw-r--r--package/qemu/patches/patch-linux-user_syscall_c17
2 files changed, 15 insertions, 4 deletions
diff --git a/package/qemu/Makefile b/package/qemu/Makefile
index c45eea716..b03a3ca59 100644
--- a/package/qemu/Makefile
+++ b/package/qemu/Makefile
@@ -10,7 +10,7 @@ PKG_MD5SUM:= 32893941d40d052a5e649efcf06aca06
PKG_DESCR:= cpu and system emulator
PKG_SECTION:= misc
PKG_DEPENDS:= zlib libsdl libpng
-PKG_BUILDDEP:= glib-host qemu-host zlib sdl libpng
+PKG_BUILDDEP:= gettext-tiny libiconv-tiny glib-host qemu-host zlib sdl libpng
PKG_URL:= http://wwww.qemu.org/
PKG_SITES:= http://wiki.qemu.org/download/
diff --git a/package/qemu/patches/patch-linux-user_syscall_c b/package/qemu/patches/patch-linux-user_syscall_c
index 21c9afef5..1eba70417 100644
--- a/package/qemu/patches/patch-linux-user_syscall_c
+++ b/package/qemu/patches/patch-linux-user_syscall_c
@@ -1,11 +1,22 @@
--- qemu-1.7.0.orig/linux-user/syscall.c 2013-11-27 23:15:55.000000000 +0100
-+++ qemu-1.7.0/linux-user/syscall.c 2014-01-30 12:14:53.751964593 +0100
-@@ -94,7 +94,7 @@ int __clone2(int (*fn)(void *), void *ch
++++ qemu-1.7.0/linux-user/syscall.c 2014-01-31 09:51:34.051058876 +0100
+@@ -64,6 +64,7 @@ int __clone2(int (*fn)(void *), void *ch
+ #include <netinet/ip.h>
+ #include <netinet/tcp.h>
+ #include <linux/wireless.h>
++#include <linux/version.h>
+ #include <linux/icmp.h>
+ #include "qemu-common.h"
+ #ifdef TARGET_GPROF
+@@ -94,7 +95,11 @@ int __clone2(int (*fn)(void *), void *ch
#include <linux/utsname.h>
#include <linux/cdrom.h>
#include <linux/hdreg.h>
--#include <linux/soundcard.h>
++#if LINUX_VERSION_CODE <= KERNEL_VERSION(3,11,0)
+ #include <linux/soundcard.h>
++#else
+#include <linux/soundcard.h.oss3>
++#endif
#include <linux/kd.h>
#include <linux/mtio.h>
#include <linux/fs.h>