# HG changeset patch # User Ethan Blanton # Date 1062534373 0 # Node ID 3a08f08edbf59e44de7332d439f9f9af7a3d5542 # Parent 4c9fb525be47500d6a905d63419668d752f45a79 [gaim-migrate @ 7236] tclConfig.sh detection improvements for debian and other bustinated systems. Misleading configure output fix for Tk detection. committer: Tailor Script diff -r 4c9fb525be47 -r 3a08f08edbf5 configure.ac --- a/configure.ac Tue Sep 02 19:56:17 2003 +0000 +++ b/configure.ac Tue Sep 02 20:26:13 2003 +0000 @@ -576,7 +576,12 @@ if test "$enable_tcl" = yes; then AC_MSG_CHECKING([for tclConfig.sh]) TCLCONFIG=no - for dir in $with_tclconfig /usr/lib /usr/local/lib; do + TCLCONFIGDIRS="/usr/lib \ + /usr/lib/tcl8.4 \ + /usr/lib/tcl8.3 \ + /usr/lib/tcl8.2 \ + /usr/local/lib" + for dir in $with_tclconfig $TCLCONFIGDIRS; do if test -f $dir/tclConfig.sh; then TCLCONFIG=$dir/tclConfig.sh AC_MSG_RESULT([yes ($TCLCONFIG)]) @@ -638,6 +643,8 @@ [AC_MSG_RESULT([no]);enable_tk=no]) LIBS="$oldLIBS" fi +else + enable_tk=no fi if test "$enable_tk" = yes; then