724a14a256
Update to rc4 of v2.9.0. Also includes a few other fixes, and a number of tweaks to the spec files. I'd be happy to answer any questions about all those spec file changes, I believe they were all in the direction of a more correct and maintainable spec file. Since this is still in rc phase, let's keep it in devel project. Final release should appear in time for Beta2 of SLE12SP3. Delta from previous: Added Alex's patch for keyboard empty event. OBS-URL: https://build.opensuse.org/request/show/487699 OBS-URL: https://build.opensuse.org/package/show/Virtualization/qemu?expand=0&rev=334
29 lines
777 B
Diff
29 lines
777 B
Diff
From 7d69d701785cfae12d0151836062e5a2876978a0 Mon Sep 17 00:00:00 2001
|
|
From: markkp <mpost@suse.com>
|
|
Date: Thu, 11 Aug 2016 16:28:39 -0400
|
|
Subject: [PATCH] configure: Fix detection of seccomp on s390x
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Signed-off-by: Mark Post <mpost@suse.com>
|
|
Signed-off-by: Andreas Färber <afaerber@suse.de>
|
|
---
|
|
configure | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/configure b/configure
|
|
index 3308560f78..cb7589a8e7 100755
|
|
--- a/configure
|
|
+++ b/configure
|
|
@@ -1961,6 +1961,9 @@ if test "$seccomp" != "no" ; then
|
|
ppc|ppc64)
|
|
libseccomp_minver="2.3.0"
|
|
;;
|
|
+ s390|s390x)
|
|
+ libseccomp_minver="2.2.0"
|
|
+ ;;
|
|
*)
|
|
libseccomp_minver=""
|
|
;;
|