aboutsummaryrefslogtreecommitdiffhomepage
path: root/configure.ac
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2025-08-28 02:40:20 +0300
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2025-08-28 11:26:01 +0300
commit2070d7faf66425c72677c02616a087d30a9aa863 (patch)
tree3f27d2af734ec6d5b353457bfb4bd10ed3c1790b /configure.ac
parent61c1980e25cc5ce48d7c3902db1e39f6b92473f9 (diff)
downloadsciteco-2070d7faf66425c72677c02616a087d30a9aa863.tar.gz
bumped minimum Gtk version to 3.24
* Gtk 3.24 has been introduced accidentally in 9e3746a4 due to GtkEventControllerScroll. * It would be possible to still support v3.12 by partially reversing 9e3746a4 and conditionally including teco_interface_scroll_cb(). But it's probably not worth the trouble.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 9d5e059..8ad4685 100644
--- a/configure.ac
+++ b/configure.ac
@@ -371,7 +371,7 @@ case $INTERFACE in
;;
gtk)
- PKG_CHECK_MODULES(LIBGTK, [gtk+-3.0 >= 3.12], [
+ PKG_CHECK_MODULES(LIBGTK, [gtk+-3.0 >= 3.24], [
CFLAGS="$CFLAGS $LIBGTK_CFLAGS"
CXXFLAGS="$CXXFLAGS $LIBGTK_CFLAGS"
LIBS="$LIBS $LIBGTK_LIBS"