[MPlayer-cvslog] r38506 - trunk/configure

ib subversion at mplayerhq.hu
Thu May 2 22:48:17 EEST 2024


Author: ib
Date: Thu May  2 22:48:17 2024
New Revision: 38506

Log:
Raise the minimum GTK+ version requirement to 2.6.

Actually, there would be no reason to raise the version,
but the GtkComboBoxEntry behaves incorrectly in GTK+ 2.4,
which is not fixed until GTK+ 2.6. One of the problems is
that the "change" event is only emitted for the very first
entry change while typing, and not for every change.

Modified:
   trunk/configure

Modified: trunk/configure
==============================================================================
--- trunk/configure	Thu May  2 22:41:56 2024	(r38505)
+++ trunk/configure	Thu May  2 22:48:17 2024	(r38506)
@@ -8171,7 +8171,7 @@ EOF
     echocheck "GTK+ version"
 
     if $_pkg_config --exists gtk+-2.0 ; then
-      _gtk=$($_pkg_config --modversion "gtk+-2.0 >= 2.4.0" 2>&1)
+      _gtk=$($_pkg_config --modversion "gtk+-2.0 >= 2.6.0" 2>&1)
       if [ $? -eq 0 ]; then
         extra_cflags="$extra_cflags $($_pkg_config --cflags gtk+-2.0 2>/dev/null)"
         libs_mplayer="$libs_mplayer $($_pkg_config --libs gtk+-2.0 2>/dev/null)"
@@ -8182,9 +8182,7 @@ EOF
         die "$_gtk"
       fi
 
-      # Check for specific minimum version of GLib
-      # (version 2.4.0, required by GTK+ 2.4.0, would have been
-      # checked automatically, but doesn't meet our requirements)
+      # Check for GLib
       echocheck "GLib version"
       if $_pkg_config --exists glib-2.0 ; then
         _glib=$($_pkg_config --modversion "glib-2.0 >= 2.6.0" 2>&1)


More information about the MPlayer-cvslog mailing list