From a289e5416b88f0f24ae668a6cc921c28b72ceae7 Mon Sep 17 00:00:00 2001 From: Mark Bolhuis Date: Wed, 7 Sep 2022 01:00:49 +0100 Subject: modules/wayland: Change default value of include_core_only to true The use of wayland-.h is discouraged, therefore change the default value of include_core_only to true. --- mesonbuild/modules/wayland.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mesonbuild/modules/wayland.py') diff --git a/mesonbuild/modules/wayland.py b/mesonbuild/modules/wayland.py index 0cbc4b7..99f71d0 100644 --- a/mesonbuild/modules/wayland.py +++ b/mesonbuild/modules/wayland.py @@ -66,7 +66,7 @@ class WaylandModule(ExtensionModule): KwargInfo('public', bool, default=False), KwargInfo('client', bool, default=True), KwargInfo('server', bool, default=False), - KwargInfo('include_core_only', bool, default=False, since='0.64.0'), + KwargInfo('include_core_only', bool, default=True, since='0.64.0'), ) def scan_xml(self, state: ModuleState, args: T.Tuple[T.List[FileOrString]], kwargs: ScanXML) -> ModuleReturnValue: if self.scanner_bin is None: -- cgit v1.1