]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
Fallback for manual setup of GTK 1, if autoconf is run on a system
authorSimon Tatham <anakin@pobox.com>
Sat, 15 Jun 2013 19:58:10 +0000 (19:58 +0000)
committerSimon Tatham <anakin@pobox.com>
Sat, 15 Jun 2013 19:58:10 +0000 (19:58 +0000)
where the GTK1 detection function AM_PATH_GTK hasn't been provided by
/usr/share/aclocal/gtk.m4 or equivalent.

(Systems without gtk.m4 are becoming more common, but on the other
hand I know at least one person is still using GTK 1 PuTTY since the
0.62 release.)

[originally from svn r9868]

unix/configure.ac

index 17db126cabf2d620d5d81a8772c6edeca473e741..c0756fddc61c32a3f4865be39bbfc38f090ec59d 100644 (file)
@@ -85,7 +85,15 @@ case "$gtk_version_desired:$gtk" in
   1:none | any:none)
     ifdef([AM_PATH_GTK],[
     AM_PATH_GTK([1.2.0], [gtk=1], [])
-    ],[AC_WARNING([generating configure script without GTK 1 autodetection])])
+    ],[
+    # manual check for gtk1
+    AC_PATH_PROG(GTK1_CONFIG, gtk-config, absent)
+    if test "$GTK1_CONFIG" != "absent"; then
+      GTK_CFLAGS=`"$GTK1_CONFIG" --cflags`
+      GTK_LIBS=`"$GTK1_CONFIG" --libs`
+      gtk=1
+    fi
+    ])
     ;;
 esac