meson: update default options for libdrm

Libdrm now uses enabled/disabled/auto for the drivers, migrate to these
new defaults.

Error message from meson:

  wlroots| subprojects/wlroots/subprojects/libdrm/meson.build:21:0: Exception: Value "false" (of type "string") for combo option "Enable support for Intel's KMS API." is not one of the choices. Possible choices are (as string): "enabled", "disabled", "auto".`
This commit is contained in:
Rouven Czerwinski 2022-09-25 12:51:29 +02:00
parent bcc6a5832f
commit baf3fa27dc
1 changed files with 14 additions and 14 deletions

View File

@ -110,20 +110,20 @@ drm = dependency('libdrm',
version: '>=2.4.113', version: '>=2.4.113',
fallback: 'libdrm', fallback: 'libdrm',
default_options: [ default_options: [
'intel=false', 'intel=disabled',
'radeon=false', 'radeon=disabled',
'amdgpu=false', 'amdgpu=disabled',
'nouveau=false', 'nouveau=disabled',
'vmwgfx=false', 'vmwgfx=disabled',
'omap=false', 'omap=disabled',
'exynos=false', 'exynos=disabled',
'freedreno=false', 'freedreno=disabled',
'tegra=false', 'tegra=disabled',
'vc4=false', 'vc4=disabled',
'etnaviv=false', 'etnaviv=disabled',
'cairo-tests=false', 'cairo-tests=disabled',
'man-pages=false', 'man-pages=disabled',
'valgrind=false', 'valgrind=disabled',
'tests=false', 'tests=false',
], ],
) )