2016-04-05 15:18:15 +02:00
|
|
|
From dca270d601b43fe181da48f6b38b63f485634705 Mon Sep 17 00:00:00 2001
|
2016-01-19 19:31:32 +01:00
|
|
|
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
|
2016-04-05 15:18:15 +02:00
|
|
|
index 0df3fc0..81caff6 100755
|
2016-01-19 19:31:32 +01:00
|
|
|
--- a/configure
|
|
|
|
+++ b/configure
|
2016-04-05 15:18:15 +02:00
|
|
|
@@ -1875,6 +1875,9 @@ if test "$seccomp" != "no" ; then
|
2016-01-19 19:31:32 +01:00
|
|
|
arm|aarch64)
|
|
|
|
libseccomp_minver="2.2.3"
|
|
|
|
;;
|
|
|
|
+ ppc|ppc64)
|
|
|
|
+ libseccomp_minver="2.2.0"
|
|
|
|
+ ;;
|
|
|
|
*)
|
|
|
|
libseccomp_minver=""
|
|
|
|
;;
|