From 1da93ea8890732afd1d0d3e84098f33075df2198 Mon Sep 17 00:00:00 2001 From: b-aaz <85005689+b-aaz@users.noreply.github.com> Date: Sun, 20 Jul 2025 20:26:52 +0000 Subject: [PATCH] meson.build: Enabled udev for FreeBSD. FreeBSD uses libudev-devd for a libudev compatible interface. So the udev options should be available for it. Signed-off-by: b-aaz --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 53a70d9728..2823f9e0df 100644 --- a/meson.build +++ b/meson.build @@ -183,7 +183,7 @@ endif build_udev = get_option('udev') build_udev_kms = get_option('udev_kms') -if ['windows', 'darwin', 'freebsd', 'netbsd', 'openbsd', 'sunos'].contains(host_machine.system()) +if ['windows', 'darwin', 'netbsd', 'openbsd', 'sunos'].contains(host_machine.system()) build_udev = false build_udev_kms = false endif