From 47d19196c1448ecf4dcc29165e10f0c3945e2b17 Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Wed, 25 Jan 2023 15:16:30 +0100 Subject: [PATCH] meson: remove deprecated osmesa-bits option We've released several new major versions since this was deprecated in 202cab3d308 ("meson: deprecate specifying osmesa-bits"), so it's probably about time to remove it. Reviewed-by: David Heidelberg Reviewed-by: Eric Engestrom Part-of: --- meson.build | 4 ---- meson_options.txt | 8 -------- 2 files changed, 12 deletions(-) diff --git a/meson.build b/meson.build index 479ce81322a..b27a654944b 100644 --- a/meson.build +++ b/meson.build @@ -1870,10 +1870,6 @@ if with_osmesa else osmesa_lib_name = 'OSMesa' endif - osmesa_bits = get_option('osmesa-bits') - if osmesa_bits != 'unspecified' - warning('osmesa-bits option is deprecated and have no effect, please remove it.') - endif endif # TODO: symbol mangling diff --git a/meson_options.txt b/meson_options.txt index 3a1490f97bc..795234dd7ed 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -392,14 +392,6 @@ option( value : false, description : 'Build OSmesa.' ) -option( - 'osmesa-bits', - type : 'combo', - value : 'unspecified', - choices : ['unspecified', '8', '16', '32'], - description : 'DEPRECATED: Number of channel bits for OSMesa.' -) - option( 'tools', type : 'array',