diff --git a/meson.build b/meson.build index be02b413120..9b65c152dc7 100644 --- a/meson.build +++ b/meson.build @@ -1985,11 +1985,8 @@ if with_osmesa osmesa_lib_name = 'OSMesa' endif osmesa_bits = get_option('osmesa-bits') - if osmesa_bits != '8' - if with_dri or with_glx != 'disabled' - error('OSMesa bits must be 8 if building glx or dri based drivers') - endif - osmesa_lib_name = osmesa_lib_name + osmesa_bits + if osmesa_bits != 'unspecified' + warning('osmesa-bits option is deprecated and have no effect, please remove it.') endif endif diff --git a/meson_options.txt b/meson_options.txt index 4332906853f..83b5ea941be 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -420,9 +420,9 @@ option( option( 'osmesa-bits', type : 'combo', - value : '8', - choices : ['8', '16', '32'], - description : 'Number of channel bits for OSMesa.' + value : 'unspecified', + choices : ['unspecified', '8', '16', '32'], + description : 'DEPRECATED: Number of channel bits for OSMesa.' ) option(