summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarkkp <mpost@suse.com>2016-08-11 16:28:39 -0400
committerhyokeun <hyokeun.jeon@samsung.com>2016-09-06 15:55:36 +0900
commit0521136140bacc9f0e85f1b5972f848208ce0950 (patch)
tree75ae4df70d65aa12462e867c3a66dba242686400
parentf1a42f7354bbcfa06745287823f3068d6eada7fc (diff)
downloadqemu-0521136140bacc9f0e85f1b5972f848208ce0950.tar.gz
qemu-0521136140bacc9f0e85f1b5972f848208ce0950.tar.bz2
qemu-0521136140bacc9f0e85f1b5972f848208ce0950.zip
configure: Fix detection of seccomp on s390x
Signed-off-by: Mark Post <mpost@suse.com> Signed-off-by: Andreas Färber <afaerber@suse.de>
-rwxr-xr-xconfigure3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure b/configure
index dfd37b199..4eb76a657 100755
--- a/configure
+++ b/configure
@@ -1902,6 +1902,9 @@ if test "$seccomp" != "no" ; then
ppc|ppc64)
libseccomp_minver="2.3.0"
;;
+ s390|s390x)
+ libseccomp_minver="2.2.0"
+ ;;
*)
libseccomp_minver=""
;;