# HG changeset patch # User Ethan Blanton # Date 1063984716 0 # Node ID 410e3e1d062e92eca82defc3e3ab2e03a9c59f73 # Parent 7d2eecf55c3737cf9a2f57d6a1969979fb79e252 [gaim-migrate @ 7439] I guess until I have time to figure out what in this setup is Tcl-version dependent, I should clean up configure.ac to weed out "bad" versions. committer: Tailor Script diff -r 7d2eecf55c37 -r 410e3e1d062e configure.ac --- a/configure.ac Fri Sep 19 00:39:27 2003 +0000 +++ b/configure.ac Fri Sep 19 15:18:36 2003 +0000 @@ -714,7 +714,8 @@ else . $TCLCONFIG AC_MSG_CHECKING([Tcl version compatability]) - if test "$TCL_MAJOR_VERSION" -lt 8 -o "$TCL_MINOR_VERSION" -lt 2; then + dnl It seems only 8.3 fits our bill for now... + if test "$TCL_MAJOR_VERSION" -ne 8 -o "$TCL_MINOR_VERSION" -ne 3; then AC_MSG_RESULT([bad, $TCL_VERSION found but 8.3 required]) enable_tcl=no else