meson: Re-add pkg-config support for bcm_host
Now we just fallback to find_library for Rasbian jessy and older. https://bugzilla.gnome.org/show_bug.cgi?id=784026
This commit is contained in:
parent
581161ecd7
commit
92537b1364
@ -516,7 +516,14 @@ endif
|
|||||||
|
|
||||||
bcm_host_dep = unneeded_dep
|
bcm_host_dep = unneeded_dep
|
||||||
if need_win_dispmanx != 'no'
|
if need_win_dispmanx != 'no'
|
||||||
|
|
||||||
|
# Try pkg-config for bcm_host then fallback to find_library to also
|
||||||
|
# support older distribution
|
||||||
|
bcm_host_dep = dependency('bcm_host', required : false)
|
||||||
|
if not bcm_host_dep.found()
|
||||||
bcm_host_dep = cc.find_library('bcm_host', required : false)
|
bcm_host_dep = cc.find_library('bcm_host', required : false)
|
||||||
|
endif
|
||||||
|
|
||||||
if bcm_host_dep.found()
|
if bcm_host_dep.found()
|
||||||
if not egl_dep.found()
|
if not egl_dep.found()
|
||||||
error('dispmanx requires the use of egl')
|
error('dispmanx requires the use of egl')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user