[PATCH libdrm 22/23] meson: use simple option handling for vc4
Eric Engestrom
eric.engestrom at imgtec.com
Tue Mar 20 17:46:58 UTC 2018
Signed-off-by: Eric Engestrom <eric.engestrom at imgtec.com>
---
meson.build | 9 +--------
1 file changed, 1 insertion(+), 8 deletions(-)
diff --git a/meson.build b/meson.build
index 5410b03015747e3eb7cf..e3df4cd8e8dc475ba373 100644
--- a/meson.build
+++ b/meson.build
@@ -79,6 +79,7 @@ foreach d : [
['exynos', false, true],
['freedreno', true, ['arm', 'aarch64'].contains(host_machine.cpu_family())],
['tegra', true, true],
+ ['vc4', false, ['arm', 'aarch64'].contains(host_machine.cpu_family())],
]
driver = d[0]
require_atomics = d[1]
@@ -99,14 +100,6 @@ foreach d : [
endif
endforeach
-with_vc4 = false
-_vc4 = get_option('vc4')
-if _vc4 == 'auto'
- with_vc4 = ['arm', 'aarch64'].contains(host_machine.cpu_family())
-else
- with_vc4 = _vc4 == 'true'
-endif
-
with_etnaviv = false
_etnaviv = get_option('etnaviv')
if _etnaviv == 'auto'
--
Cheers,
Eric
More information about the dri-devel
mailing list