From 6788aade62ccac2087171ecd888d2c58ab0ef04e Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Tue, 27 Jun 2023 11:39:27 -0700 Subject: [PATCH] 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: --- meson_options.txt | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/meson_options.txt b/meson_options.txt index 044ab402a36..384f984ad57 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -468,6 +468,13 @@ option( 'with allow_execmem.' ) +option( + 'execmem', + type : 'boolean', + deprecated : true, + description : 'Does nothing, left here for a while to avoid build breakages.', +) + option( 'osmesa', type : 'boolean',