Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Simon Ser
xserver
Commits
2df3a62c
Commit
2df3a62c
authored
Oct 22, 2021
by
Simon Ser
Committed by
Povilas Kanapickas
Nov 06, 2021
Browse files
meson: add subproject fallback for libxcvt
Depends on:
xorg/lib/libxcvt!6
Signed-off-by:
Simon Ser
<
contact@emersion.fr
>
parent
43452690
Pipeline
#440984
passed with stages
in 2 minutes and 15 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
meson.build
View file @
2df3a62c
...
...
@@ -194,7 +194,7 @@ if (host_machine.system() != 'darwin' and
endif
endif
xorgsdkdir = join_paths(get_option('prefix'), get_option('includedir'), 'xorg')
libxcvt_dep = dependency('libxcvt', required: build_xorg)
libxcvt_dep = dependency('libxcvt',
fallback: ['libxcvt', 'libxcvt_dep'],
required: build_xorg)
build_xwayland = false
if (host_machine.system() != 'darwin' and
...
...
@@ -211,7 +211,7 @@ if (host_machine.system() != 'darwin' and
xwayland_dep = [
dependency('wayland-client', version: wayland_req, required: xwayland_required),
dependency('wayland-protocols', version: wayland_protocols_req, required: xwayland_required),
dependency('libxcvt', required: xwayland_required),
dependency('libxcvt',
fallback: ['libxcvt', 'libxcvt_dep'],
required: xwayland_required),
]
if build_glamor
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment