summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2018-01-23 21:07:48 +0100
committerIñigo Martínez <inigomartinez@gmail.com>2018-01-24 10:55:46 +0100
commit8cd3e024e42d6aa22a97410a382b1da4d44c1182 (patch)
treec59450a73fff82e2c45b28a1d8e47d27e915c699
parent3853bdee05cfa0c11ae4848f49f5026494357984 (diff)
downloadgvfs-8cd3e024e42d6aa22a97410a382b1da4d44c1182.tar.gz
build: Fix UDisks2 build when gudev is disabled
UDisks2 option needs gudev because it makes use of it. This patch shows an error message in case this options is enabled but gudev option is disabled. https://bugzilla.gnome.org/show_bug.cgi?id=786149
-rw-r--r--meson.build1
1 files changed, 1 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index 39ea8c12..2c8a29a0 100644
--- a/meson.build
+++ b/meson.build
@@ -362,6 +362,7 @@ endif
# *** Check for udisks2 ***
enable_udisks2 = get_option('udisks2')
if enable_udisks2
+ assert(enable_gudev, 'UDisks2 requested but gudev is required')
udisks2_dep = dependency('udisks2', version: '>= 1.97')
endif