summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilippe Normand <philn@igalia.com>2019-03-28 18:27:28 +0000
committerPhilippe Normand <philn@igalia.com>2019-03-28 18:27:28 +0000
commit0b641a4953b7b89bc8033f573ad1961b4823d719 (patch)
tree2edaacbee9cddde2d0ec5303c7d096442e469135
parentadfd8aa696a3af8ff7688e6b7c554287d9f9bdd5 (diff)
downloadgstreamer-plugins-bad-0b641a4953b7b89bc8033f573ad1961b4823d719.tar.gz
wpe: Bump required version to WPEWebKit 2.24
Fixes #929
-rw-r--r--configure.ac2
-rw-r--r--ext/wpe/meson.build4
2 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index e67e1eeca..4b41496da 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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"
])
diff --git a/ext/wpe/meson.build b/ext/wpe/meson.build
index 42c1f943d..7891efe12 100644
--- a/ext/wpe/meson.build
+++ b/ext/wpe/meson.build
@@ -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'))