[PATCH libdrm v2 07/23] meson: split libkms=auto logic to make it easier to read
Eric Engestrom
eric.engestrom at imgtec.com
Wed Apr 4 15:38:02 UTC 2018
Signed-off-by: Eric Engestrom <eric.engestrom at 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.
--
Cheers,
Eric
More information about the dri-devel
mailing list