meson: Add back execmem option as a deprecated option
authorDylan Baker <dylan.c.baker@intel.com>
Tue, 27 Jun 2023 18:39:27 +0000 (11:39 -0700)
committerMarge Bot <emma+marge@anholt.net>
Fri, 30 Jun 2023 16:35:22 +0000 (16:35 +0000)
I've been betting support requests by people confused as to why their
builds broke because this option was removed. We can add the option back
with the deprecated flag set so that Meson will give a nice warning, but
builds will continue to work.

fixes: 1dd1147408e8fcfb9cbd08d5a5651152d288ef41

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/23893>

meson_options.txt

index 044ab40..384f984 100644 (file)
@@ -469,6 +469,13 @@ option(
 )
 
 option(
+  'execmem',
+  type : 'boolean',
+  deprecated : true,
+  description : 'Does nothing, left here for a while to avoid build breakages.',
+)
+
+option(
   'osmesa',
   type : 'boolean',
   value : false,