diff options
Diffstat (limited to 'lib/mesa/meson_options.txt')
-rw-r--r-- | lib/mesa/meson_options.txt | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/lib/mesa/meson_options.txt b/lib/mesa/meson_options.txt index 32c7593ee..688964659 100644 --- a/lib/mesa/meson_options.txt +++ b/lib/mesa/meson_options.txt @@ -302,8 +302,9 @@ option( ) option( 'glvnd', - type : 'boolean', - value : false, + type : 'combo', + value : 'auto', + choices : ['auto', 'true', 'false', 'enabled', 'disabled'], description : 'Enable GLVND support.' ) option( @@ -321,7 +322,7 @@ option( option( 'glvnd-vendor-name', type : 'string', - value : 'mesa', + value : 'auto', description : 'Vendor name string to use for glvnd libraries' ) option( @@ -457,14 +458,16 @@ option( ) option( 'prefer-iris', - type : 'boolean', - value : true, + type : 'combo', + value : 'auto', + choices : ['auto', 'true', 'false'], description : 'Prefer new Intel iris driver over older i965 driver' ) option( 'prefer-crocus', - type : 'boolean', - value : false, + type : 'combo', + value : 'auto', + choices : ['auto', 'true', 'false'], description : 'Prefer new crocus driver over older i965 driver for gen4-7' ) option('egl-lib-suffix', @@ -530,3 +533,9 @@ option( value : false, description : 'Build gallium VMware/svga driver with mksGuestStats instrumentation.' ) +option( + 'amber', + type : 'boolean', + value : false, + description : 'Configure LTS build to coexist with Mesa >= 22.0' +) |