diff mbox

[libdrm,v2,03/23] meson: don't enable libdrm_amdgpu without atomic support

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

Commit Message

Eric Engestrom April 4, 2018, 3:37 p.m. UTC
In the 'auto' case, the `with_atomic` check was bypassed.

Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com>
---
 meson.build | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)
diff mbox

Patch

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