From e6fb9ccf2a36b6c64501ff19984ac820473f058f Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Thu, 22 Apr 2021 16:25:07 -0700 Subject: [PATCH] meson: Don't build libkms for Android. Nobody wants that that I know of. Reviewed-by: Kristian H. Kristensen Reviewed-by: Eric Engestrom --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 81242000..7ccfe84c 100644 --- a/meson.build +++ b/meson.build @@ -173,7 +173,7 @@ endif with_libkms = false _libkms = get_option('libkms') if _libkms != 'false' - with_libkms = _libkms == 'true' or ['linux', 'freebsd', 'dragonfly'].contains(host_machine.system()) + with_libkms = _libkms == 'true' or (['linux', 'freebsd', 'dragonfly'].contains(host_machine.system()) and not android) endif # Among others FreeBSD does not have a separate dl library.