mirror of
https://gitlab.freedesktop.org/wayland/weston.git
synced 2026-05-08 07:48:07 +02:00
meson: better error for x11+gl deps
Helps people avoid egl in the rare case they don't have it. Signed-off-by: Pekka Paalanen <pq@iki.fi>
This commit is contained in:
parent
43a42920cf
commit
83a46ca980
1 changed files with 5 additions and 1 deletions
|
|
@ -364,7 +364,11 @@ if get_option('backend-x11')
|
|||
endif
|
||||
|
||||
if get_option('renderer-gl')
|
||||
deps_x11 += dependency('egl')
|
||||
d = dependency('egl', required: false)
|
||||
if not d.found()
|
||||
error('x11-backend + gl-renderer requires egl which was not found. Or, you can use \'-Dbackend-x11=false\' or \'-Drenderer-gl=false\'.')
|
||||
endif
|
||||
deps_x11 += d
|
||||
endif
|
||||
|
||||
plugin_x11 = shared_library(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue