mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
multimedia/libva-intel-driver: unbreak libva + WAYLAND=off after r490613
Dependency wayland-client found: NO (tried pkgconfig and cmake) Dependency libva-wayland found: NO (tried pkgconfig and cmake) meson.build:94:2: ERROR: Unknown variable "wl_scanner". PR: 235039 Reported by: jakub_lach@mailplus.pl
This commit is contained in:
parent
35d144cbba
commit
21f1e7651f
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=490633
18
multimedia/libva-intel-driver/files/patch-meson.build
Normal file
18
multimedia/libva-intel-driver/files/patch-meson.build
Normal file
@ -0,0 +1,18 @@
|
||||
Properly check if wayland can be used
|
||||
|
||||
Dependency wayland-client found: NO (tried pkgconfig and cmake)
|
||||
Dependency libva-wayland found: NO (tried pkgconfig and cmake)
|
||||
|
||||
meson.build:94:2: ERROR: Unknown variable "wl_scanner".
|
||||
|
||||
--- meson.build.orig 2018-12-10 01:56:28 UTC
|
||||
+++ meson.build
|
||||
@@ -91,7 +91,7 @@ if get_option('with_wayland') != 'no'
|
||||
version : libva_version,
|
||||
required : get_option('with_wayland') == 'yes')
|
||||
|
||||
- WITH_WAYLAND = wl_scanner.found() and libva_wayland_dep.found()
|
||||
+ WITH_WAYLAND = wayland_client_dep.found() and libva_wayland_dep.found()
|
||||
endif
|
||||
|
||||
subdir('src')
|
Loading…
Reference in New Issue
Block a user