Skip to content

Commit

Permalink
Port to WebKit2 4.1
Browse files Browse the repository at this point in the history
WebKit24.1 has no API changes, but it requires libsoup 3.0 which
the toolkit doesn't use.

Run autoupdate

Signed-off-by: Chihurumnaya Ibiam <ibiam@sugarlabs.org>
  • Loading branch information
chimosky committed Feb 5, 2024
1 parent 2ffda86 commit 0bd9caf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
AC_INIT([sugar-toolkit-gtk3],[0.120],[],[sugar-toolkit-gtk3])

AC_PREREQ([2.59])
AC_PREREQ([2.71])

AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_SRCDIR([configure.ac])
Expand All @@ -9,7 +9,7 @@ AM_INIT_AUTOMAKE([1.9 foreign dist-xz no-dist-gzip])

AM_MAINTAINER_MODE
AC_DISABLE_STATIC
AC_PROG_LIBTOOL
LT_INIT

GNOME_COMPILE_WARNINGS(maximum)

Expand Down Expand Up @@ -40,7 +40,7 @@ AM_GLIB_GNU_GETTEXT

GOBJECT_INTROSPECTION_REQUIRE([1.30.0])

AC_OUTPUT([
AC_CONFIG_FILES([
Makefile
bin/Makefile
src/Makefile
Expand All @@ -56,3 +56,4 @@ src/sugar3/test/Makefile
src/sugar3/config.py
po/Makefile.in
])
AC_OUTPUT
2 changes: 1 addition & 1 deletion src/sugar3/activity/webactivity.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import gi
gi.require_version('Gdk', '3.0')
gi.require_version('Gtk', '3.0')
gi.require_version('WebKit2', '4.0')
gi.require_version('WebKit2', '4.1')

from gi.repository import Gdk
from gi.repository import Gio
Expand Down

0 comments on commit 0bd9caf

Please sign in to comment.