summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorXavier Claessens <xavier.claessens@collabora.com>2020-10-16 17:57:48 -0400
committerXavier Claessens <xavier.claessens@collabora.com>2020-10-17 09:54:47 -0400
commitea3933b87a4e82dc6f6b9b4fbd434b0294b7562e (patch)
tree0cd509285a30735c353168d5799787f610259958 /meson_options.txt
parent6ae9f7e7c33b0ebaf4873040a4cacf6d53ee7d52 (diff)
downloadgtk+-ea3933b87a4e82dc6f6b9b4fbd434b0294b7562e.tar.gz
meson: Make vulkan and xinerama optional deps default to 'auto'
It is nicer for contributors to have a build that works by default. Distributors should be using -Dauto_features=enabled to get ride of automagic options.
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/meson_options.txt b/meson_options.txt
index b58c8a9fa0..ac50721ff8 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -43,12 +43,12 @@ option('print',
option('vulkan',
type: 'feature',
- value: 'enabled',
+ value: 'auto',
description : 'Enable support for the Vulkan graphics API')
option('xinerama',
type: 'feature',
- value: 'enabled',
+ value: 'auto',
description : 'Enable support for the X11 Xinerama extension')
option('cloudproviders',