diff options
author | pst <pst@FreeBSD.org> | 1996-10-08 04:35:45 +0000 |
---|---|---|
committer | pst <pst@FreeBSD.org> | 1996-10-08 04:35:45 +0000 |
commit | cf16ac24a74eb6800dcd0771a313fc3d4f0addb5 (patch) | |
tree | 85fee9b6d0caaf6029f387aadcbff91d4ea7084a /contrib/tcl | |
parent | 838a7cdccbb895a721a89d78f36deffa23989d7e (diff) | |
download | FreeBSD-src-cf16ac24a74eb6800dcd0771a313fc3d4f0addb5.zip FreeBSD-src-cf16ac24a74eb6800dcd0771a313fc3d4f0addb5.tar.gz |
Shared libraries should be linked with -x.
Submitted to: john.osterhout@eng.sun.com
Diffstat (limited to 'contrib/tcl')
-rwxr-xr-x | contrib/tcl/unix/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/tcl/unix/configure b/contrib/tcl/unix/configure index 090fa9e..82ba009 100755 --- a/contrib/tcl/unix/configure +++ b/contrib/tcl/unix/configure @@ -3280,7 +3280,7 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo "$ac_t""yes" 1>&6 SHLIB_CFLAGS="-fpic" - SHLIB_LD="ld -Bshareable" + SHLIB_LD="ld -Bshareable -x" SHLIB_LD_LIBS="" SHLIB_SUFFIX=".so" DL_OBJS="tclLoadDl2.o" |