Olaf Hering
7adb207e17
- Update to v2.6.0-rc0: See http://wiki.qemu-project.org/ChangeLog/2.6 * Patch queue updated from git://github.com/openSUSE/qemu.git opensuse-2.6 * Accept every size in DISCARD request from a guest (bsc#964427) 0039-block-split-large-discard-requests-.patch * Recognize libxl flag to disable flush in block device (bsc#879425) 0040-xen_disk-Add-suse-specific-flush-di.patch * Use correct flag for crypto tests 0041-tests-Use-correct-config-param-for-.patch * Fix build on powerpc: 0042-build-link-with-libatomic-on-powerp.patch * Patches dropped (upstreamed): seabios_checkrom_typo.patch seabios_avoid_smbios_signature_string.patch OBS-URL: https://build.opensuse.org/request/show/383004 OBS-URL: https://build.opensuse.org/package/show/Virtualization/qemu?expand=0&rev=289
32 lines
848 B
Diff
32 lines
848 B
Diff
From 9327ff8f826f2edfe6f06f710155f7ed78d0f120 Mon Sep 17 00:00:00 2001
|
|
From: Bruce Rogers <brogers@suse.com>
|
|
Date: Thu, 16 May 2013 12:39:10 +0200
|
|
Subject: [PATCH] virtfs-proxy-helper: Provide __u64 for broken
|
|
sys/capability.h
|
|
|
|
Fixes the build on SLE 11 SP2.
|
|
|
|
[AF: Extend to ppc64]
|
|
---
|
|
fsdev/virtfs-proxy-helper.c | 7 +++++++
|
|
1 file changed, 7 insertions(+)
|
|
|
|
diff --git a/fsdev/virtfs-proxy-helper.c b/fsdev/virtfs-proxy-helper.c
|
|
index 54f7ad1..b4bf2f4 100644
|
|
--- a/fsdev/virtfs-proxy-helper.c
|
|
+++ b/fsdev/virtfs-proxy-helper.c
|
|
@@ -9,6 +9,13 @@
|
|
* the COPYING file in the top-level directory.
|
|
*/
|
|
|
|
+/* work around a broken sys/capability.h */
|
|
+#if defined(__i386__)
|
|
+typedef unsigned long long __u64;
|
|
+#endif
|
|
+#if defined(__powerpc64__)
|
|
+#include <asm/types.h>
|
|
+#endif
|
|
#include "qemu/osdep.h"
|
|
#include <sys/resource.h>
|
|
#include <getopt.h>
|