summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2018-02-21 19:48:56 +0100
committerIñigo Martínez <inigomartinez@gmail.com>2018-02-27 08:29:17 +0100
commitdaf0193de1ab25d2fd62b37103d634f214d542a6 (patch)
tree64f3ac9debac4dc21f160e61acb0fa527f3c91d1 /plugins
parent5404a0219f9e65c6bfda3d17cf5cb7ec4ec23537 (diff)
downloadeog-daf0193de1ab25d2fd62b37103d634f214d542a6.tar.gz
build: Do not use options as auto
There are some options that can be used to enable or disable options. However, if the conditions to use those components enabled by options are not fulfilled, they are disabled and this might confuse an user. Now, if the conditions of those enabled components are not fulfilled the build configuration will stop showing a message to the user. meson variables have been renamed from the `have_` pattern to the `enable_` pattern to better reflect this behaviour. The `zlib` detection behaviour has also been fixed, which will require both `inflate` and `crc32` to be available. https://bugzilla.gnome.org/show_bug.cgi?id=793719
Diffstat (limited to 'plugins')
-rw-r--r--plugins/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/meson.build b/plugins/meson.build
index c54ca8a6..bf49ba06 100644
--- a/plugins/meson.build
+++ b/plugins/meson.build
@@ -5,7 +5,7 @@ plugins = [
'reload'
]
-if have_exif
+if enable_libexif
plugins += 'statusbar-date'
endif