diff options
author | hobbs <hobbs> | 2002-04-26 19:32:54 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2002-04-26 19:32:54 (GMT) |
commit | 09bf9bc63f9ba75fa56811474a18049ed8296e87 (patch) | |
tree | 37f78aae2652716e0f0d5a88af537fc603f5016a /unix/configure | |
parent | 6011ab574a8c116b75f20216de45e4f7c6a3d397 (diff) | |
download | tk-09bf9bc63f9ba75fa56811474a18049ed8296e87.zip tk-09bf9bc63f9ba75fa56811474a18049ed8296e87.tar.gz tk-09bf9bc63f9ba75fa56811474a18049ed8296e87.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/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" |