From 6a64d09c236c6f452880ce9f06a58d3822b00fa0 Mon Sep 17 00:00:00 2001 From: John David Anglin Date: Mon, 7 Aug 2023 15:37:17 +0000 Subject: [PATCH] enosys: fix build on hppa The following patch fixes the definition of SECCOMP_ARCH_NATIVE on hppa. Signed-off-by: John David Anglin Gbp-Pq: Topic upstream Gbp-Pq: Name enosys-fix-build-on-hppa.patch --- include/audit-arch.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/audit-arch.h b/include/audit-arch.h index db14560..679964f 100644 --- a/include/audit-arch.h +++ b/include/audit-arch.h @@ -59,6 +59,12 @@ # else # define SECCOMP_ARCH_NATIVE AUDIT_ARCH_LOONGARCH64 # endif +#elif __hppa__ +# if __SIZEOF_POINTER__ == 4 +# define SECCOMP_ARCH_NATIVE AUDIT_ARCH_PARISC +# else +# define SECCOMP_ARCH_NATIVE AUDIT_ARCH_PARISC64 +# endif #else # error Unknown target architecture #endif -- 2.30.2