render/gles2: check GBM is found

The GLES2 renderer depends on EGL, which depends on GBM for device
selection.
Simon Ser 2 years ago
parent 91943a68a6
commit b9d55b8769

@ -1,6 +1,6 @@
glesv2 = dependency('glesv2', required: 'gles2' in renderers)
if not (glesv2.found() and egl.found())
if not (glesv2.found() and egl.found() and gbm.found())
subdir_done()
endif

Loading…
Cancel
Save