diff options
author | hobbs <hobbs> | 2002-04-26 19:29:55 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2002-04-26 19:29:55 (GMT) |
commit | 35438a5685d2efcfe4ea877ab475aa116222817e (patch) | |
tree | 1d20359203143190c6fab560142f35c71c6774bc /unix/tcl.m4 | |
parent | b9fd87e9f82e6795e565386564b6e479a49fed8b (diff) | |
download | tcl-35438a5685d2efcfe4ea877ab475aa116222817e.zip tcl-35438a5685d2efcfe4ea877ab475aa116222817e.tar.gz tcl-35438a5685d2efcfe4ea877ab475aa116222817e.tar.bz2 |
* unix/configure:
* unix/tcl.m4: change HP-11 SHLIB_LD_LIBS from "" to ${LIBS} so
that the .sl knows its dependent libs.
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r-- | unix/tcl.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4 index 0a87a22..413255e 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -802,7 +802,7 @@ dnl AC_CHECK_TOOL(AR, ar, :) if test "$tcl_ok" = yes; then SHLIB_CFLAGS="+z" SHLIB_LD="ld -b" - SHLIB_LD_LIBS="" + SHLIB_LD_LIBS='${LIBS}' DL_OBJS="tclLoadShl.o" DL_LIBS="-ldld" LDFLAGS="-Wl,-E" |