summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurent Bigonville <bigon@debian.org>2020-03-16 12:31:59 +0100
committerSimon McVittie <smcv@debian.org>2020-09-03 10:57:53 +0100
commite9ff055217af1de2467b0fc3b5036e24e0d77161 (patch)
treec004314801d337a3680379b097db14dacdda692c
parent8b9a97018c32863df93475aa87afafe358f8cc92 (diff)
downloadgnome-desktop-wip/smcv/riscv64-seccomp.tar.gz
Use libseccomp on linux-riscv64 now that's availablewip/smcv/riscv64-seccomp
This reverts commit f8916f70. On riscv64, this requires libseccomp 2.5.0, or an older version with a backported patch (for example Debian packages >= 2.4.3-1).
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 43295f03..2e154fa3 100644
--- a/meson.build
+++ b/meson.build
@@ -57,7 +57,7 @@ udev_dep = dependency('libudev', required: get_option('udev'))
host_os = host_machine.system()
host_cpu = host_machine.cpu()
supported_os = ['linux']
-unsupported_cpus = ['alpha', 'ia64', 'm68k', 'riscv64', 'sh4', 'sparc', 'sparc64']
+unsupported_cpus = ['alpha', 'ia64', 'm68k', 'sh4', 'sparc', 'sparc64']
if supported_os.contains(host_os) and not unsupported_cpus.contains(host_cpu)
seccomp_dep = dependency('libseccomp')
else