Mercurial > pidgin
changeset 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 | 7d2eecf55c37 |
children | 126e123bf065 |
files | configure.ac |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
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