1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-25 01:02:24 +00:00

Support for re-running autoconf in the absence of the autoconf macro

files which provide auto-detection of GTK 1 and GTK 2. This makes it
easier for casual PuTTY developers to rerun autoconf for their own
purposes without having to install obscure extra packages. Obviously
the resulting configure script will not know how to detect whichever
version of GTK they didn't have support for, so it won't be product-
quality by my standards, but it should be good enough that they can
prepare unrelated patches to send to us.

[originally from svn r9227]
This commit is contained in:
Simon Tatham 2011-07-17 22:17:30 +00:00
parent 0b79fe0bcb
commit 8aea84e894

View File

@ -32,8 +32,12 @@ AC_CHECK_HEADERS([utmpx.h sys/select.h],,,[
#include <utmp.h>])
# Look for both GTK 1 and GTK 2.
ifdef([AM_PATH_GTK],[
AM_PATH_GTK([1.2.0], [gtk=1], [gtk=none])
],[AC_WARNING([generating configure script without GTK 1 autodetection])])
ifdef([AM_PATH_GTK_2_0],[
AM_PATH_GTK_2_0([2.0.0], [gtk=2], [])
],[AC_WARNING([generating configure script without GTK 2 autodetection])])
if test "$gtk" = "none"; then
all_targets="all-cli"
else