diff options
author | Iñigo Martínez <inigomartinez@gmail.com> | 2017-11-06 19:52:34 +0100 |
---|---|---|
committer | Iñigo Martínez <inigomartinez@gmail.com> | 2017-11-07 10:18:03 +0100 |
commit | d1189c1bede6a6cd2b6e89dfe50d66fead49a47e (patch) | |
tree | 79bd514b140c1804d4dc2a7242bbf703dfe9a91f /daemon/meson.build | |
parent | d274add5e0024be0d20456f1bd9c3b3326ed06d9 (diff) | |
download | gvfs-d1189c1bede6a6cd2b6e89dfe50d66fead49a47e.tar.gz |
build: Add an option for gcrypt
Add an option to make gcrypt conditional allowing to disable it if
desired. This patch also makes the existence of libgcrypt-config
program mandatory if the gcrypt option is enabled.
https://bugzilla.gnome.org/show_bug.cgi?id=786149
Diffstat (limited to 'daemon/meson.build')
-rw-r--r-- | daemon/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/meson.build b/daemon/meson.build index 606d83f4..a31f5f6e 100644 --- a/daemon/meson.build +++ b/daemon/meson.build @@ -525,7 +525,7 @@ if enable_afp sources = common_sources + files('gvfsbackendafp.c') deps = [] - if have_gcrypt + if enable_gcrypt deps += libgcrypt_dep endif |