Signed-off-by: Eric Engestrom eric.engestrom@imgtec.com --- meson.build | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/meson.build b/meson.build index ba8072a19515f8d7aaa4..5b6710ee8dc16b02dbed 100644 --- a/meson.build +++ b/meson.build @@ -171,8 +171,10 @@ endif # gnu/kfreebsd), not openbsd and netbsd with_libkms = false _libkms = get_option('libkms') -if _libkms != 'false' - with_libkms = _libkms == 'true' or ['linux', 'freebsd', 'dragonfly'].contains(host_machine.system()) +if _libkms == 'auto' + with_libkms = ['linux', 'freebsd', 'dragonfly'].contains(host_machine.system()) +else + with_libkms = _libkms == 'true' endif
# Among others FreeBSD does not have a separate dl library.