summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2017-09-15 14:47:57 +0200
committerGitHub <noreply@github.com>2017-09-15 14:47:57 +0200
commitd6e8096669fef4aa5132843fb488fa35de349901 (patch)
treeebe40ea741310a3e83128557acd86f9f5b1b61e5 /meson.build
parent2e7063777d7424996799ecd66fdc3021da996d3a (diff)
downloadsystemd-d6e8096669fef4aa5132843fb488fa35de349901.tar.gz
build-sys: require libmount >= 2.30 (#6795)
Fixes #4871. The new libmount has two changes relevant for us: - x-* options are propagated to /run/mount/utab and are visible through libmount (fixes #4817). - umount -c now really works (partially solves #6115).
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index af17035586..3e85442a6f 100644
--- a/meson.build
+++ b/meson.build
@@ -659,7 +659,7 @@ if not libcap.found()
endif
libmount = dependency('mount',
- version : '>= 2.27')
+ version : '>= 2.30')
want_seccomp = get_option('seccomp')
if want_seccomp != 'false'