diff options
author | Damien Miller <djm@mindrot.org> | 2016-07-08 13:59:13 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2016-07-08 13:59:13 +1000 |
commit | b9c50614eba9d90939b2b119b6e1b7e03b462278 (patch) | |
tree | 115df5295e2239f87cf2160cdaa5ba21b57d9c0f | |
parent | 18813a32b6fd964037e0f5e1893cb4468ac6a758 (diff) |
whitelist more architectures for seccomp-bpf
bz#2590 - testing and patch from Jakub Jelen
-rw-r--r-- | configure.ac | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 83548767e..9da2b0364 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -796,6 +796,30 @@ main() { if (NSVersionOfRunTimeLibrary("System") >= (60 << 16)) | |||
796 | aarch64*-*) | 796 | aarch64*-*) |
797 | seccomp_audit_arch=AUDIT_ARCH_AARCH64 | 797 | seccomp_audit_arch=AUDIT_ARCH_AARCH64 |
798 | ;; | 798 | ;; |
799 | s390x-*) | ||
800 | seccomp_audit_arch=AUDIT_ARCH_S390X | ||
801 | ;; | ||
802 | s390-*) | ||
803 | seccomp_audit_arch=AUDIT_ARCH_S390 | ||
804 | ;; | ||
805 | powerpc64-*) | ||
806 | seccomp_audit_arch=AUDIT_ARCH_PPC64 | ||
807 | ;; | ||
808 | powerpc64le-*) | ||
809 | seccomp_audit_arch=AUDIT_ARCH_PPC64LE | ||
810 | ;; | ||
811 | mips-*) | ||
812 | seccomp_audit_arch=AUDIT_ARCH_MIPS | ||
813 | ;; | ||
814 | mipsel-*) | ||
815 | seccomp_audit_arch=AUDIT_ARCH_MIPSEL | ||
816 | ;; | ||
817 | mips64-*) | ||
818 | seccomp_audit_arch=AUDIT_ARCH_MIPS64 | ||
819 | ;; | ||
820 | mips64el-*) | ||
821 | seccomp_audit_arch=AUDIT_ARCH_MIPSEL64 | ||
822 | ;; | ||
799 | esac | 823 | esac |
800 | if test "x$seccomp_audit_arch" != "x" ; then | 824 | if test "x$seccomp_audit_arch" != "x" ; then |
801 | AC_MSG_RESULT(["$seccomp_audit_arch"]) | 825 | AC_MSG_RESULT(["$seccomp_audit_arch"]) |