diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | win/tcl.m4 | 8 |
2 files changed, 9 insertions, 4 deletions
@@ -1,5 +1,10 @@ 2003-03-13 Mo DeJong <mdejong@users.sourceforge.net> + * win/tcl.m4 (SC_WITH_TCL): Port version number + fix that was made in tk instead of tcl sources. + +2003-03-13 Mo DeJong <mdejong@users.sourceforge.net> + Require autoconf 2.57 or newer, see TIP 34 for a detailed explanation of why this is good. This will no doubt break the build on some @@ -651,13 +651,13 @@ AC_DEFUN(SC_CONFIG_CFLAGS, [ #------------------------------------------------------------------------ AC_DEFUN(SC_WITH_TCL, [ - if test -d ../../tcl8.4$1/win; then - TCL_BIN_DEFAULT=../../tcl8.4$1/win + if test -d ../../tcl8.5$1/win; then + TCL_BIN_DEFAULT=../../tcl8.5$1/win else - TCL_BIN_DEFAULT=../../tcl8.4/win + TCL_BIN_DEFAULT=../../tcl8.5/win fi - AC_ARG_WITH(tcl, [ --with-tcl=DIR use Tcl 8.4 binaries from DIR], + AC_ARG_WITH(tcl, [ --with-tcl=DIR use Tcl 8.5 binaries from DIR], TCL_BIN_DIR=$withval, TCL_BIN_DIR=`cd $TCL_BIN_DEFAULT; pwd`) if test ! -d $TCL_BIN_DIR; then AC_MSG_ERROR(Tcl directory $TCL_BIN_DIR does not exist) |