diff options
author | hobbs <hobbs@noemail.net> | 2002-04-26 19:32:53 (GMT) |
---|---|---|
committer | hobbs <hobbs@noemail.net> | 2002-04-26 19:32:53 (GMT) |
commit | 09c8b712662a2f5336ed1a8704858d99b9e7488e (patch) | |
tree | 37f78aae2652716e0f0d5a88af537fc603f5016a /unix/configure | |
parent | 1e9cf57c3ea1ab9e57bc20e51d5724a1ff8d4960 (diff) | |
download | tk-09c8b712662a2f5336ed1a8704858d99b9e7488e.zip tk-09c8b712662a2f5336ed1a8704858d99b9e7488e.tar.gz tk-09c8b712662a2f5336ed1a8704858d99b9e7488e.tar.bz2 |
* unix/configure:
* unix/tcl.m4: change HP-11 SHLIB_LD_LIBS from "" to ${LIBS} so
that the .sl knows its dependent libs.
FossilOrigin-Name: e6310244ba7777b13c34232a3019113d20c18f5a
Diffstat (limited to 'unix/configure')
-rwxr-xr-x | unix/configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/configure b/unix/configure index 970d1bc..e913685 100755 --- a/unix/configure +++ b/unix/configure @@ -2118,7 +2118,7 @@ fi 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" @@ -2488,7 +2488,7 @@ fi DL_OBJS="tclLoadDl.o" DL_LIBS="" LDFLAGS="-export-dynamic" - LD_SEARCH_FLAGS="" + LD_SEARCH_FLAGS='-Wl,-rpath,${LIB_RUNTIME_DIR}' if test "${TCL_THREADS}" = "1" ; then EXTRA_CFLAGS="-pthread" LDFLAGS="$LDFLAGS -pthread" |