diff mbox

[libdrm,16/23] meson: use simple option handling for nouveau

Message ID 20180320174659.1510-17-eric.engestrom@imgtec.com (mailing list archive)
State New, archived
Headers show

Commit Message

Eric Engestrom March 20, 2018, 5:46 p.m. UTC
Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com>
---
 meson.build | 12 +-----------
 1 file changed, 1 insertion(+), 11 deletions(-)
diff mbox

Patch

diff --git a/meson.build b/meson.build
index 08685debfc28894424cf..f07aa0010f150be70f46 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'