07d2889ef8
Update to v2.6.1 stable release. OBS-URL: https://build.opensuse.org/request/show/419833 OBS-URL: https://build.opensuse.org/package/show/Virtualization/qemu?expand=0&rev=311
30 lines
821 B
Diff
30 lines
821 B
Diff
From 6bfa8a2b720bb6cc36a933870a2a1c0a239b3e9d Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Andreas=20F=C3=A4rber?= <afaerber@suse.de>
|
|
Date: Tue, 14 Apr 2015 18:42:06 +0200
|
|
Subject: [PATCH] configure: Enable libseccomp for ppc
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Our Factory libseccomp is patched to support ppc, ppc64 and ppc64le.
|
|
|
|
Signed-off-by: Andreas Färber <afaerber@suse.de>
|
|
---
|
|
configure | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/configure b/configure
|
|
index 65232af..bf74354 100755
|
|
--- a/configure
|
|
+++ b/configure
|
|
@@ -1879,6 +1879,9 @@ if test "$seccomp" != "no" ; then
|
|
arm|aarch64)
|
|
libseccomp_minver="2.2.3"
|
|
;;
|
|
+ ppc|ppc64)
|
|
+ libseccomp_minver="2.2.0"
|
|
+ ;;
|
|
*)
|
|
libseccomp_minver=""
|
|
;;
|