From ec3321739d71129af620cea8b5d592165ab98202 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89rico=20Rolim?= Date: Wed, 14 Oct 2020 19:03:31 -0300 Subject: [PATCH] common/build-style/meson.sh: set auto-features to auto. This allows the build system to detect itself whether it should use certain features, instead of defaulting to (potentially bad) enabled status. Features that aren't detected properly, be it because false positives or negatives, should be explicitly called out in the templates. --- common/build-style/meson.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/build-style/meson.sh b/common/build-style/meson.sh index 1a68b9473a7..9b92279148c 100644 --- a/common/build-style/meson.sh +++ b/common/build-style/meson.sh @@ -107,7 +107,7 @@ do_configure() { --localstatedir=/var \ --sharedstatedir=/var/lib \ --buildtype=plain \ - --auto-features=enabled \ + --auto-features=auto \ --wrap-mode=nodownload \ -Db_lto=true -Db_ndebug=true \ -Db_staticpic=true \