diff configure.ac @ 6892:410e3e1d062e

[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 <tailor@pidgin.im>
author Ethan Blanton <elb@pidgin.im>
date Fri, 19 Sep 2003 15:18:36 +0000
parents ffc40208c1e9
children 7c6324124b66
line wrap: on
line diff
--- 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