X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/blobdiff_plain/3ee4eedaec9cad4b5b2ff0f40567fa2e57a942a9..f00017098478afe94af08f5473fe5e89f976e5cf:/unix/configure.ac diff --git a/unix/configure.ac b/unix/configure.ac index 17db126c..c0756fdd 100644 --- a/unix/configure.ac +++ b/unix/configure.ac @@ -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