diff options
| author | Peter Maydell | 2018-08-25 14:08:57 +0200 |
|---|---|---|
| committer | Peter Maydell | 2018-08-25 14:08:57 +0200 |
| commit | 235c82acca0491465e94be3cae2583b42d37c859 (patch) | |
| tree | a12df5de8c9021c524a7c4116c97d0f9f6d429ea /configure | |
| parent | Merge remote-tracking branch 'remotes/awilliam/tags/vfio-fixes-20180823.1' in... (diff) | |
| parent | seccomp: set the seccomp filter to all threads (diff) | |
| download | qemu-235c82acca0491465e94be3cae2583b42d37c859.tar.gz qemu-235c82acca0491465e94be3cae2583b42d37c859.tar.xz qemu-235c82acca0491465e94be3cae2583b42d37c859.zip | |
Merge remote-tracking branch 'remotes/otubo/tags/pull-seccomp-20180823' into staging
pull-seccomp-20180823
# gpg: Signature made Thu 23 Aug 2018 15:46:13 BST
# gpg: using RSA key DF32E7C0F0FFF9A2
# gpg: Good signature from "Eduardo Otubo (Senior Software Engineer) <otubo@redhat.com>"
# Primary key fingerprint: D67E 1B50 9374 86B4 0723 DBAB DF32 E7C0 F0FF F9A2
* remotes/otubo/tags/pull-seccomp-20180823:
seccomp: set the seccomp filter to all threads
configure: require libseccomp 2.2.0
seccomp: prefer SCMP_ACT_KILL_PROCESS if available
seccomp: use SIGSYS signal instead of killing the thread
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'configure')
| -rwxr-xr-x | configure | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -2228,13 +2228,10 @@ fi ########################################## # libseccomp check +libseccomp_minver="2.2.0" if test "$seccomp" != "no" ; then case "$cpu" in - i386|x86_64) - libseccomp_minver="2.1.0" - ;; - mips) - libseccomp_minver="2.2.0" + i386|x86_64|mips) ;; arm|aarch64) libseccomp_minver="2.2.3" |
