diff options
author | dgp <dgp@users.sourceforge.net> | 2005-01-31 16:26:40 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2005-01-31 16:26:40 (GMT) |
commit | cc0358f85a295939fe7f0a802ea657627459b4e1 (patch) | |
tree | 02d0cec5fffe31ad99f8a1be1a338b49f4819175 /unix | |
parent | 7dd48ea53b8ed4c3b4d60859692eacef9888d649 (diff) | |
download | tcl-cc0358f85a295939fe7f0a802ea657627459b4e1.zip tcl-cc0358f85a295939fe7f0a802ea657627459b4e1.tar.gz tcl-cc0358f85a295939fe7f0a802ea657627459b4e1.tar.bz2 |
* unix/configure: autoconf-2.57
Diffstat (limited to 'unix')
-rwxr-xr-x | unix/configure | 8 |
1 files changed, 7 insertions, 1 deletions
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}" |