wpe: Bump required version to WPEWebKit 2.24

Fixes #929
This commit is contained in:
Philippe Normand 2019-03-28 18:27:28 +00:00
parent adfd8aa696
commit 0b641a4953
2 changed files with 3 additions and 3 deletions

View file

@ -2298,7 +2298,7 @@ AG_GST_CHECK_FEATURE(WEBRTC, [WebRTC], webrtc, [
dnl *** WPE ***
translit(dnm, m, l) AM_CONDITIONAL(USE_WPE, true)
AG_GST_CHECK_FEATURE(WPE, [WPE plug-in], wpe, [
PKG_CHECK_MODULES(WPE, [ wpe-webkit-0.1 >= 2.22 wpebackend-fdo-0.1 egl xkbcommon ], [
PKG_CHECK_MODULES(WPE, [ wpe-webkit-1.0 >= 2.24 wpebackend-fdo-1.0 egl xkbcommon ], [
HAVE_WPE="yes" ], [
HAVE_WPE="no"
])

View file

@ -6,8 +6,8 @@ if not gstgl_dep.found()
subdir_done()
endif
wpe_dep = dependency('wpe-webkit-0.1', required : get_option('wpe'))
wpe_fdo_dep = dependency('wpebackend-fdo-0.1', required : get_option('wpe'))
wpe_dep = dependency('wpe-webkit-1.0', version : '>= 2.24', required : get_option('wpe'))
wpe_fdo_dep = dependency('wpebackend-fdo-1.0', required : get_option('wpe'))
egl_dep = dependency('egl', required : get_option('wpe'))
xkbcommon_dep = dependency('xkbcommon', version : '>= 0.8', required : get_option('wpe'))