summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShaun McCance <shaunm@gnome.org>2021-07-25 10:54:00 -0400
committerShaun McCance <shaunm@gnome.org>2021-07-26 13:42:52 +0000
commit47b0dc96dc0e82102600365b83353d7922f1a94d (patch)
tree49e63569020cd3fc9df704b86a082111dba3e388
parentafbd6aa3658e2782eec307984b3dceae43cc91ee (diff)
downloadyelp-47b0dc96dc0e82102600365b83353d7922f1a94d.tar.gz
Add temporary option to build against webkit2gtk-4.0
-rw-r--r--configure.ac13
1 files changed, 11 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index f6d5a402..3cc22de8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,6 +22,15 @@ AC_PROG_LN_S
GLIB_GSETTINGS
APPSTREAM_XML
+# Release team wants WebKitGTK 4.1 for the GNOME 41 release.
+# Shaun doesn't have a build environment with that yet.
+# Get rid of this option when that stops being true.
+AC_ARG_WITH([webkit2gtk-4-0],
+ AS_HELP_STRING([--with-webkit2gtk-4-0],
+ [Build against webkit2gtk-4.0 instead of webkit2gtk-4.1]),
+ [webkitdep="webkit2gtk-4.0 >= 2.19.2";webextdep="webkit2gtk-web-extension-4.0 >= 2.7.2"],
+ [webkitdep="webkit2gtk-4.1";webextdep="webkit2gtk-web-extension-4.1"])
+
# Library dependecies
LT_LIB_M
PKG_CHECK_MODULES(YELP,
@@ -34,7 +43,7 @@ PKG_CHECK_MODULES(YELP,
libxslt >= 1.1.4
libexslt >= 0.8.1
sqlite3
- webkit2gtk-4.1
+ $webkitdep
yelp-xsl >= 3.27.1
])
AC_SUBST([YELP_CFLAGS])
@@ -45,7 +54,7 @@ AC_SUBST([YELP_LIBS])
LT_PREREQ([2.2.6])
LT_INIT
-PKG_CHECK_MODULES([YELP_EXTENSION], [webkit2gtk-web-extension-4.1])
+PKG_CHECK_MODULES([YELP_EXTENSION], [$webextdep])
AC_SUBST(YELP_EXTENSION_CFLAGS)
AC_SUBST(YELP_EXTENSION_LIBS)