From dc684103d4aededf91e92ead21a8c42ac2acef87 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Mon, 6 Jul 2020 14:48:37 +0200 Subject: [PATCH] [meson] Set the default wrap mode to nofallback This, I believe, will prevent any automatic use of subprojects be default and will only look for dependencies on the system. https://mesonbuild.com/Subprojects.html#commandline-options --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 80db2813a..ed79347ad 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project('harfbuzz', 'c', 'cpp', meson_version: '>= 0.53.0', version: '2.6.8', - default_options: ['cpp_std=c++11'], + default_options: ['cpp_std=c++11', 'wrap_mode=nofallback'], ) warning('Meson is not our main build system for building *nix packages yet we encourage packagers to test it and give us feedback about it.')