From 7dd48ea53b8ed4c3b4d60859692eacef9888d649 Mon Sep 17 00:00:00 2001 From: jenglish Date: Sun, 30 Jan 2005 18:38:51 +0000 Subject: Restored two double-evals that were removed in the DBGX purge. These are still needed on some platforms to account for TCL_TRIM_DOTS. [Bug 1112654] --- ChangeLog | 9 +++++++++ unix/configure.in | 10 ++++++++-- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 987e2ba..ddf3c51 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2005-01-30 Joe English + + * unix/configure.in: Restored two double-evals that were + removed in the DBGX purge; these are still needed on some + platforms to account for TCL_TRIM_DOTS. [Bug 1112654] + + * unix/configure: NOT REGENERATED: only have autoconf 2.59 here, + need to find someone with autoconf 2.57. + 2005-01-28 Jeff Hobbs * unix/configure, unix/tcl.m4: add solaris 64-bit gcc build diff --git a/unix/configure.in b/unix/configure.in index 67efaeb..9cfcbd9 100644 --- a/unix/configure.in +++ b/unix/configure.in @@ -3,7 +3,7 @@ dnl This file is an input file used by the GNU "autoconf" program to dnl generate the file "configure", which is run during Tcl installation dnl to configure the system for the local environment. # -# RCS: @(#) $Id: configure.in,v 1.126 2005/01/10 18:43:37 jenglish Exp $ +# RCS: @(#) $Id: configure.in,v 1.127 2005/01/30 18:38:55 jenglish Exp $ AC_INIT([tcl],[8.5]) AC_PREREQ(2.57) @@ -439,7 +439,10 @@ eval "TCL_LIB_FILE=libtcl${LIB_SUFFIX}" SC_ENABLE_FRAMEWORK # tclConfig.sh needs a version of the _LIB_SUFFIX that has been eval'ed -# so that the backslashes quoting the DBX braces are dropped. +# since on some platforms TCL_LIB_FILE contains shell escapes. +# (See also: TCL_TRIM_DOTS). + +eval "TCL_LIB_FILE=${TCL_LIB_FILE}" # Note: in the following variable, it's important to use the absolute # path name of the Tcl directory rather than "..": this is because @@ -498,7 +501,10 @@ fi #-------------------------------------------------------------------- # Replace ${VERSION} with contents of ${TCL_VERSION} +# double-eval to account for TCL_TRIM_DOTS. +# eval "TCL_STUB_LIB_FILE=libtclstub${TCL_UNSHARED_LIB_SUFFIX}" +eval "TCL_STUB_LIB_FILE=\"${TCL_STUB_LIB_FILE}\"" if test "${TCL_LIB_VERSIONS_OK}" = "ok"; then TCL_STUB_LIB_FLAG="-ltclstub${TCL_VERSION}" -- cgit v0.12