[PATCH libdrm v2 12/23] meson: use simple option handling for nouveau
Eric Engestrom
eric.engestrom at imgtec.com
Wed Apr 4 15:38:07 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 da52f5c078c3d2f47397..e871c77c9860a84eed8f 100644
--- a/meson.build
+++ b/meson.build
@@ -73,6 +73,7 @@ foreach d : [
['intel', true, host_machine.cpu_family().startswith('x86')],
['radeon', true, true],
['amdgpu', true, true],
+ ['nouveau', true, true],
]
driver = d[0]
require_atomics = d[1]
@@ -93,17 +94,6 @@ foreach d : [
endif
endforeach
-with_nouveau = false
-_nouveau = get_option('nouveau')
-if _nouveau == 'auto'
- with_nouveau = with_atomics
-else
- with_nouveau = _nouveau == 'true'
-endif
-if with_nouveau and not with_atomics
- error('libdrm_nouveau requires atomics.')
-endif
-
with_vmwgfx = false
_vmwgfx = get_option('vmwgfx')
if _vmwgfx != 'false'
--
Cheers,
Eric
More information about the dri-devel
mailing list