[PATCH libdrm v2 10/23] meson: use simple option handling for radeon
Eric Engestrom
eric.engestrom at imgtec.com
Wed Apr 4 15:38:05 UTC 2018
Signed-off-by: Eric Engestrom <eric.engestrom at imgtec.com>
---
meson.build | 12 +-----------
1 file changed, 1 insertion(+), 11 deletions(-)
diff --git a/meson.build b/meson.build
index 12cf96157b2789df3a55..035ac8cf2f1130d0b799 100644
--- a/meson.build
+++ b/meson.build
@@ -71,6 +71,7 @@ config.set10('HAVE_LIB_ATOMIC_OPS', lib_atomics)
foreach d : [
['intel', true, host_machine.cpu_family().startswith('x86')],
+ ['radeon', true, true],
]
driver = d[0]
require_atomics = d[1]
@@ -91,17 +92,6 @@ foreach d : [
endif
endforeach
-with_radeon = false
-_radeon = get_option('radeon')
-if _radeon == 'auto'
- with_radeon = with_atomics
-else
- with_radeon = _radeon == 'true'
-endif
-if with_radeon and not with_atomics
- error('libdrm_radeon requires atomics.')
-endif
-
with_amdgpu = false
_amdgpu = get_option('amdgpu')
if _amdgpu == 'auto'
--
Cheers,
Eric
More information about the dri-devel
mailing list