[PATCH libdrm v2 03/23] meson: don't enable libdrm_amdgpu without atomic support
Eric Engestrom
eric.engestrom at imgtec.com
Wed Apr 4 15:37:58 UTC 2018
In the 'auto' case, the `with_atomic` check was bypassed.
Signed-off-by: Eric Engestrom <eric.engestrom at imgtec.com>
---
meson.build | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/meson.build b/meson.build
index 72cdd14a3ba834abde4d..4bc088bacdd8120c1508 100644
--- a/meson.build
+++ b/meson.build
@@ -93,11 +93,13 @@ endif
with_amdgpu = false
_amdgpu = get_option('amdgpu')
-if _amdgpu != 'false'
- if _amdgpu == 'true' and not with_atomics
- error('libdrm_amdgpu requires atomics.')
- endif
- with_amdgpu = true
+if _amdgpu == 'auto'
+ with_amdgpu = with_atomics
+else
+ with_amdgpu = _amdgpu == 'true'
+endif
+if with_amdgpu and not with_atomics
+ error('libdrm_amdgpu requires atomics.')
endif
with_nouveau = false
--
Cheers,
Eric
More information about the dri-devel
mailing list