diff options
author | jenglish <jenglish@flightlab.com> | 2006-03-08 07:12:56 (GMT) |
---|---|---|
committer | jenglish <jenglish@flightlab.com> | 2006-03-08 07:12:56 (GMT) |
commit | 665029e7ada8812f383ffd09b94c5bc9d1b83877 (patch) | |
tree | e961107058add7704b83d235d5afcd3bdc5c9089 | |
parent | d21ef328e336425ac8719b9714e3b5731feaa99c (diff) | |
download | tk-665029e7ada8812f383ffd09b94c5bc9d1b83877.zip tk-665029e7ada8812f383ffd09b94c5bc9d1b83877.tar.gz tk-665029e7ada8812f383ffd09b94c5bc9d1b83877.tar.bz2 |
Set SHLIB_LD_FLAGS='${LIBS}' on NetBSD, as per the other *BSD variants
[Bug 1334613]. Regenerated configure script.
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | unix/configure | 2 | ||||
-rw-r--r-- | unix/tcl.m4 | 2 |
3 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2006-03-07 Joe English <jenglish@users.sourceforge.net> + + * unix/tcl.m4: Set SHLIB_LD_FLAGS='${LIBS}' on NetBSD, + as per the other *BSD variants [Bug 1334613]. + * unix/configure: Regenerated. + 2006-03-07 Donal K. Fellows <dkf@users.sf.net> * doc/canvas.n: Added note that stipples are not well-supported on diff --git a/unix/configure b/unix/configure index f3185f2..3f644d0 100755 --- a/unix/configure +++ b/unix/configure @@ -5341,7 +5341,7 @@ _ACEOF # NetBSD/SPARC needs -fPIC, -fpic will not do. SHLIB_CFLAGS="-fPIC" SHLIB_LD="ld -Bshareable -x" - SHLIB_LD_LIBS="" + SHLIB_LD_LIBS='${LIBS}' SHLIB_SUFFIX=".so" DL_OBJS="tclLoadDl.o" DL_LIBS="" diff --git a/unix/tcl.m4 b/unix/tcl.m4 index 3d35a27..2a2af3b 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -1474,7 +1474,7 @@ dnl AC_CHECK_TOOL(AR, ar) # NetBSD/SPARC needs -fPIC, -fpic will not do. SHLIB_CFLAGS="-fPIC" SHLIB_LD="ld -Bshareable -x" - SHLIB_LD_LIBS="" + SHLIB_LD_LIBS='${LIBS}' SHLIB_SUFFIX=".so" DL_OBJS="tclLoadDl.o" DL_LIBS="" |