wayland-scanner: use native version to support cross-compilation
Cross-compilation support was broken in55c018a350
because wayland-scanner from the host system is used with that change. This patch changes it back to use wayland-scanner from the build system. For normal (non-cross) compilation this shouldn't change anything. Meson also uses the build machine wayland-scanner binary: -c649a2b8c5/mesonbuild/modules/unstable_wayland.py (L48-L53)
This commit is contained in:
parent
55394afe8f
commit
fad5bc2f61
@ -38,7 +38,9 @@ endif
|
|||||||
|
|
||||||
wayland_client = dependency('wayland-client', version: '>=1.20.0')
|
wayland_client = dependency('wayland-client', version: '>=1.20.0')
|
||||||
wayland_protos = dependency('wayland-protocols', version: '>=1.25', fallback: 'wayland-protocols')
|
wayland_protos = dependency('wayland-protocols', version: '>=1.25', fallback: 'wayland-protocols')
|
||||||
wayland_scanner = dependency('wayland-scanner', version: '>=1.15.0')
|
# use native version of wayland-scanner when cross-compiling
|
||||||
|
# meson does this too: https://github.com/mesonbuild/meson/blob/c649a2b8c59c9f49affca9bd89c126bfa0f54449/mesonbuild/modules/unstable_wayland.py#L48-L53
|
||||||
|
wayland_scanner = dependency('wayland-scanner', version: '>=1.15.0', native: true)
|
||||||
xkbcommon = dependency('xkbcommon')
|
xkbcommon = dependency('xkbcommon')
|
||||||
cairo = dependency('cairo')
|
cairo = dependency('cairo')
|
||||||
gdk_pixbuf = dependency('gdk-pixbuf-2.0', required: get_option('gdk-pixbuf'))
|
gdk_pixbuf = dependency('gdk-pixbuf-2.0', required: get_option('gdk-pixbuf'))
|
||||||
|
Loading…
Reference in New Issue
Block a user