Skip to content

Commit 9f0e9c0

Browse files
committed
meson: add version check for libseccomp
Compilation fails because of the missing arm64 bits with old seccomp versions.
1 parent 1800cc8 commit 9f0e9c0

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

meson.build

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -626,6 +626,7 @@ libmount = dependency('mount',
626626
want_seccomp = get_option('seccomp')
627627
if want_seccomp != 'false'
628628
libseccomp = dependency('libseccomp',
629+
version : '>= 2.3.1',
629630
required : want_seccomp == 'true')
630631
if libseccomp.found()
631632
conf.set('HAVE_SECCOMP', 1)

0 commit comments

Comments
 (0)