diff options
author | hbrueckner <hbrueckner@users.noreply.github.com> | 2016-10-05 13:58:55 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-10-05 13:58:55 +0200 |
commit | 6abfd30372f9440c3dc3cf2fcf6d3eee85037ccb (patch) | |
tree | 8d7594b38de5aa539bc7bdb248d207971ec3134c /configure.ac | |
parent | 41eb436265684080c601bff392ba6da1789639a2 (diff) |
seccomp: add support for the s390 architecture (#4287)
Add seccomp support for the s390 architecture (31-bit and 64-bit)
to systemd.
This requires libseccomp >= 2.3.1.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 4181483798..ccd212ef13 100644 --- a/configure.ac +++ b/configure.ac @@ -459,7 +459,7 @@ AM_CONDITIONAL(HAVE_LIBMOUNT, [test "$have_libmount" = "yes"]) have_seccomp=no AC_ARG_ENABLE(seccomp, AS_HELP_STRING([--disable-seccomp], [Disable optional SECCOMP support])) if test "x$enable_seccomp" != "xno"; then - PKG_CHECK_MODULES(SECCOMP, [libseccomp >= 1.0.0], + PKG_CHECK_MODULES(SECCOMP, [libseccomp >= 2.3.1], [AC_DEFINE(HAVE_SECCOMP, 1, [Define if seccomp is available]) have_seccomp=yes M4_DEFINES="$M4_DEFINES -DHAVE_SECCOMP"], |