@@ -75,6 +75,7 @@ foreach d : [
['amdgpu', true, true],
['nouveau', true, true],
['vmwgfx', false, true],
+ ['omap', true, true],
]
driver = d[0]
require_atomics = d[1]
@@ -95,17 +96,6 @@ foreach d : [
endif
endforeach
-with_omap = false
-_omap = get_option('omap')
-if _omap == 'auto'
- with_omap = with_atomics
-else
- with_omap = _omap == 'true'
-endif
-if with_omap and not with_atomics
- error('libdrm_omap requires atomics.')
-endif
-
with_exynos = false
_exynos = get_option('exynos')
if _exynos == 'auto'
Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com> --- meson.build | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-)