Update of /cvsroot/gaim/gaim
In directory sc8-pr-cvs1:/tmp/cvs-serv15685
Modified Files:
configure.ac
Log Message:
I think this makes Tcl 8.4 work ... Tk 8.4 remains suspect.
Index: configure.ac
===================================================================
RCS file: /cvsroot/gaim/gaim/configure.ac,v
retrieving revision 1.217
retrieving revision 1.218
diff -u -d -p -r1.217 -r1.218
--- configure.ac 7 Dec 2003 08:55:36 -0000 1.217
+++ configure.ac 9 Dec 2003 23:34:54 -0000 1.218
@@ -802,9 +802,8 @@ if test "$enable_tcl" = yes; then
else
. $TCLCONFIG
AC_MSG_CHECKING([Tcl version compatability])
- 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])
+ if test "$TCL_MAJOR_VERSION" -ne 8 -o "$TCL_MINOR_VERSION" -lt 3; then
+ AC_MSG_RESULT([bad, $TCL_VERSION found but 8.3 or later required])
enable_tcl=no
else
AC_MSG_RESULT([ok, $TCL_VERSION])
|