@@ -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'
Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com> --- meson.build | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-)