From 99992bc2f6e575b5f04feb7c13a0ec2cfd8da0b2 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Tue, 17 Jun 2025 11:25:17 +0200 Subject: [PATCH] meson_options: set default for HAL integration to false This should be a deliberate decision of the user/distro. Just the presense of some of its libraries in the build environment doesn't automatically mean the user/distro actually wants it to be used. HAL is pretty much obsolete, so we're considering to drop it entirely. Anybody who's still needs it should call out loud now. Signed-off-by: Enrico Weigelt, metux IT consult --- meson_options.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson_options.txt b/meson_options.txt index 80df13b1a..26172f147 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -66,7 +66,7 @@ option('pciaccess', type: 'boolean', value: true, description: 'Xorg pciaccess support') option('udev', type: 'boolean', value: true) option('udev_kms', type: 'boolean', value: true) -option('hal', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto', +option('hal', type: 'combo', choices: ['true', 'false', 'auto'], value: 'false', description: 'Enable HAL integration') option('systemd_notify', type: 'combo', choices: ['true', 'false', 'auto'], value: 'false', description: 'Enable systemd-notify support')