Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 18 Jan 2019 10:41:36 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r490633 - head/multimedia/libva-intel-driver/files
Message-ID:  <201901181041.x0IAfaIi092911@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Fri Jan 18 10:41:36 2019
New Revision: 490633
URL: https://svnweb.freebsd.org/changeset/ports/490633

Log:
  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

Added:
  head/multimedia/libva-intel-driver/files/
  head/multimedia/libva-intel-driver/files/patch-meson.build   (contents, props changed)

Added: head/multimedia/libva-intel-driver/files/patch-meson.build
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/multimedia/libva-intel-driver/files/patch-meson.build	Fri Jan 18 10:41:36 2019	(r490633)
@@ -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')



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201901181041.x0IAfaIi092911>