mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 00:36:51 +00:00
wayland: Actually use wayland-protocols version dep
Closes: #3242 Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5962>
This commit is contained in:
parent
5d2f3206ee
commit
da9d4225b1
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@ wl_req = '>= 1.15'
|
|||
wl_client_dep = dependency('wayland-client', version: wl_req, required: get_option('wayland'))
|
||||
libdrm_dep = dependency('libdrm', version: '>= 2.4.98', required: get_option('wayland'))
|
||||
wl_proto_req = '>= 1.26'
|
||||
wl_protocol_dep = dependency('wayland-protocols', version: wl_req, required: get_option('wayland'))
|
||||
wl_protocol_dep = dependency('wayland-protocols', version: wl_proto_req, required: get_option('wayland'))
|
||||
wl_scanner = find_program('wayland-scanner', required: get_option('wayland'))
|
||||
# Also used in ext/wayland
|
||||
use_wayland = wl_protocol_dep.found() and wl_client_dep.found() and wl_scanner.found() and libdrm_dep.found()
|
||||
|
|
Loading…
Reference in a new issue