diff options
author | mdejong <mdejong> | 2003-04-04 00:21:10 (GMT) |
---|---|---|
committer | mdejong <mdejong> | 2003-04-04 00:21:10 (GMT) |
commit | 44a33beffe1974f4d12cf92f2938a03e42b6b091 (patch) | |
tree | 2b8c06d563cbd2769e376d051455aa0dd096b528 /unix/tcl.m4 | |
parent | 51e78b95916a045956c21b2dbf15f62094af102f (diff) | |
download | tcl-44a33beffe1974f4d12cf92f2938a03e42b6b091.zip tcl-44a33beffe1974f4d12cf92f2938a03e42b6b091.tar.gz tcl-44a33beffe1974f4d12cf92f2938a03e42b6b091.tar.bz2 |
* unix/configure:
* unix/tcl.m4 (SC_CONFIG_CFLAGS): Don't set
TCL_LIBS if it is already set to support
use of TCL_LIBS var from tclConfig.sh in
the Tk configure script.
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r-- | unix/tcl.m4 | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4 index 448562a..88eaa56 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -1743,7 +1743,12 @@ dnl esac fi # Define TCL_LIBS now that we know what DL_LIBS is. - TCL_LIBS="${DL_LIBS} ${LIBS} ${MATH_LIBS}" + # The trick here is that we don't want to change + # the value of TCL_LIBS if it is already set when + # tclConfig.sh had been loaded by Tk. + if test "x${TCL_LIBS}" = "x"; then + TCL_LIBS="${DL_LIBS} ${LIBS} ${MATH_LIBS}" + fi AC_SUBST(TCL_LIBS) # FIXME: This subst was left in only because the TCL_DL_LIBS |