diff options
| author | dgp@users.sourceforge.net <dgp> | 2005-01-31 16:26:40 (GMT) |
|---|---|---|
| committer | dgp@users.sourceforge.net <dgp> | 2005-01-31 16:26:40 (GMT) |
| commit | cbfb1c91b1604157b41e62b08462826ea4698f6e (patch) | |
| tree | 02d0cec5fffe31ad99f8a1be1a338b49f4819175 /unix/configure | |
| parent | 0401163fc8cdf44c4440d43dd28f01813c598aeb (diff) | |
| download | tcl-cbfb1c91b1604157b41e62b08462826ea4698f6e.zip tcl-cbfb1c91b1604157b41e62b08462826ea4698f6e.tar.gz tcl-cbfb1c91b1604157b41e62b08462826ea4698f6e.tar.bz2 | |
* unix/configure: autoconf-2.57
Diffstat (limited to 'unix/configure')
| -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}" |
