summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorDylan Baker <dylan.c.baker@intel.com>2023-06-27 11:39:27 -0700
committerMarge Bot <emma+marge@anholt.net>2023-06-30 16:35:22 +0000
commit6788aade62ccac2087171ecd888d2c58ab0ef04e (patch)
tree3840dd6c7a86aa54f1d78b5bf1431e8775d7d746 /meson_options.txt
parent25c49e491fd9821cb687012c7d7b5bd68c31400b (diff)
meson: Add back execmem option as a deprecated option
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>
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 044ab402a36..384f984ad57 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -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,