gl: meson: use cc.find_library() to detect 'bcm_host'
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Wed, 21 Jun 2017 09:18:43 +0000 (11:18 +0200)
committerTim-Philipp Müller <tim@centricular.com>
Sat, 9 Dec 2017 19:32:28 +0000 (19:32 +0000)
On the raspberry pi no pkg-config file is provided for the bcm_host
library. We are using AC_CHECK_LIB to detect this lib with autotools,
cc.find_library() library is a closer meson equivalent.

https://bugzilla.gnome.org/show_bug.cgi?id=784026

gst-libs/gst/gl/meson.build

index a8f40bf..62b2238 100644 (file)
@@ -516,7 +516,7 @@ endif
 
 bcm_host_dep = unneeded_dep
 if need_win_dispmanx != 'no'
-  bcm_host_dep = dependency('bcm_host', required : false)
+  bcm_host_dep = cc.find_library('bcm_host', required : false)
   if bcm_host_dep.found()
     if not egl_dep.found()
       error('dispmanx requires the use of egl')