From 38d5de789d65e0a8597dbafa96f6ea63589600b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikl=C4=81vs=20Ko=C4=BCes=C5=86ikovs?= <89q1r14hd@relay.firefox.com> Date: Fri, 25 Jun 2021 14:22:47 +0300 Subject: [PATCH] meson_options.txt: disable vulkan option since it's not ready for use According to George Kiagiadakis it being set to auto is an accident, because the Vulkan support does not [yet] provide anything useful. --- meson_options.txt | 2 +- spa/meson.build | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meson_options.txt b/meson_options.txt index 3ff30ad7..f34c6cc3 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -156,7 +156,7 @@ option('volume', option('vulkan', description: 'Enable vulkan spa plugin integration', type: 'feature', - value: 'auto') + value: 'disabled') option('pw-cat', description: 'Build pw-cat/pw-play/pw-record', type: 'feature', diff --git a/spa/meson.build b/spa/meson.build index 5492eae4..babd9146 100644 --- a/spa/meson.build +++ b/spa/meson.build @@ -38,7 +38,7 @@ if not get_option('spa-plugins').disabled() summary({'JACK2': jack_dep.found()}, bool_yn: true, section: 'Backend') vulkan_dep = dependency('vulkan', disabler : true, version : '>= 1.1.69', required: get_option('vulkan')) vulkan_headers = cc.has_header('vulkan/vulkan.h', dependencies : vulkan_dep) - summary({'Vulkan': vulkan_headers}, bool_yn: true, section: 'Misc dependencies') + #summary({'Vulkan': vulkan_headers}, bool_yn: true, section: 'Misc dependencies') libcamera_dep = dependency('camera', required: get_option('libcamera')) summary({'libcamera': libcamera_dep.found()}, bool_yn: true, section: 'Camera portal')