From: ellson Date: Thu, 3 Jan 2008 22:47:49 +0000 (+0000) Subject: improve handling of --disable-tcl X-Git-Tag: LAST_LIBGRAPH~32^2~4921 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=45547522a8754b365f6c49ac9ac44a2f75852536;p=graphviz improve handling of --disable-tcl --- diff --git a/configure.ac b/configure.ac index eb3495dda..24dc83ac6 100644 --- a/configure.ac +++ b/configure.ac @@ -1098,6 +1098,7 @@ else HAVE_TCL=0 fi +if test "$HAVE_TCL" = "1"; then AC_ARG_WITH(tclsh, [AC_HELP_STRING([--with-tcl=PROG], [use a specific tclsh])], TCLSH=$withval,) @@ -1118,6 +1119,7 @@ if test "x$TCLSH" = "x"; then HAVE_TCL=0 fi fi +fi if test "$HAVE_TCL" = "1"; then TCL_VERSION_FOUND=`echo 'puts [[info tclversion]]' | $TCLSH`