2017-10-04 00:19:51 +02:00
|
|
|
From a2cbc794e201460c128e455ae0dba9f78ac6476e Mon Sep 17 00:00:00 2001
|
2016-09-19 19:06:58 +02:00
|
|
|
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
|
2017-08-31 00:22:50 +02:00
|
|
|
index dd73cce62f..f2b265681e 100755
|
2016-09-19 19:06:58 +02:00
|
|
|
--- a/configure
|
|
|
|
+++ b/configure
|
2017-08-31 00:22:50 +02:00
|
|
|
@@ -2040,6 +2040,9 @@ if test "$seccomp" != "no" ; then
|
2016-09-19 19:06:58 +02:00
|
|
|
ppc|ppc64)
|
|
|
|
libseccomp_minver="2.3.0"
|
|
|
|
;;
|
|
|
|
+ s390|s390x)
|
|
|
|
+ libseccomp_minver="2.2.0"
|
|
|
|
+ ;;
|
|
|
|
*)
|
|
|
|
libseccomp_minver=""
|
|
|
|
;;
|