From aa2b4d59409c92ee402c6a86cb7c02f06854bb8d Mon Sep 17 00:00:00 2001 From: Michael Catanzaro Date: Tue, 26 Sep 2023 17:07:02 -0500 Subject: [PATCH] Enable the glycin-loaders sandbox We (presumably accidentally) shipped with the sandbox disabled by default, so it's not doing any good. Enable it. Developers who want to disable the sandbox can easily set the build option. Fixes #252 Part-of: --- meson_options.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meson_options.txt b/meson_options.txt index 2a4698c7..70fa9645 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -13,4 +13,5 @@ option( 'disable-glycin-sandbox', type: 'boolean', description: 'Disable sandboxing of image loaders in glycin. Only intended for development purposes.', -) \ No newline at end of file + value: false +) -- GitLab