diff options
author | Michael Strosaker <strosake@linux.vnet.ibm.com> | 2016-06-01 18:30:18 -0500 |
---|---|---|
committer | Eduardo Otubo <eduardo.otubo@profitbricks.com> | 2016-06-20 11:04:09 +0200 |
commit | 3e684455032a748be261e5a2524147940af9b6d9 (patch) | |
tree | 3d2b0064c80bfd73b24e5c1147742e755406405c /configure | |
parent | 482b61844ae7c6df39df0b48ac90ffbc87bed7d2 (diff) |
seccomp: Add support for ppc/ppc64
Support for ppc/ppc64 is official in libseccomp 2.3.0, so modify the
configuration script to allow qemuu to enable seccomp for those platforms.
Signed-off-by: Michael Strosaker <strosake@linux.vnet.ibm.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1884,6 +1884,9 @@ if test "$seccomp" != "no" ; then arm|aarch64) libseccomp_minver="2.2.3" ;; + ppc|ppc64) + libseccomp_minver="2.3.0" + ;; *) libseccomp_minver="" ;; |