diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rwxr-xr-x | unix/configure | 8 |
2 files changed, 11 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2005-01-31 Don Porter <dgp@users.sourceforge.net> + + * unix/configure: autoconf-2.57 + 2005-01-30 Joe English <jenglish@users.sourceforge.net> * unix/configure.in: Restored two double-evals that were diff --git a/unix/configure b/unix/configure index 7c83a25..c346072 100755 --- a/unix/configure +++ b/unix/configure @@ -13478,7 +13478,10 @@ echo "${ECHO_T}standard shared library" >&6 # 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 @@ -13541,7 +13544,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}" |