diff options
author | das <das> | 2002-07-24 13:51:17 (GMT) |
---|---|---|
committer | das <das> | 2002-07-24 13:51:17 (GMT) |
commit | 0fd543a530069579d7b5ae7cc55401d2a0ad45b2 (patch) | |
tree | b65906e3add473c0e18741e513241c2edc0f7112 /unix/configure.in | |
parent | ca9b078ef7aa8a23a6958d0ec486badbfdbcc44c (diff) | |
download | tcl-0fd543a530069579d7b5ae7cc55401d2a0ad45b2.zip tcl-0fd543a530069579d7b5ae7cc55401d2a0ad45b2.tar.gz tcl-0fd543a530069579d7b5ae7cc55401d2a0ad45b2.tar.bz2 |
* unix/Makefile.in:
* unix/configure.in: corrected fix for [Bug 529801]: ranlib
only needed for static builds on Mac OS X.
* unix/configure: Regen.
* unix/tclLoadDyld.c: fixed small bugs introduced by Vince,
implemented library unloading correctly (needs OS X 10.2).
Diffstat (limited to 'unix/configure.in')
-rw-r--r-- | unix/configure.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/unix/configure.in b/unix/configure.in index 682e5e1..1d90e39 100644 --- a/unix/configure.in +++ b/unix/configure.in @@ -3,7 +3,7 @@ dnl This file is an input file used by the GNU "autoconf" program to dnl generate the file "configure", which is run during Tcl installation dnl to configure the system for the local environment. # -# RCS: @(#) $Id: configure.in,v 1.92 2002/07/19 20:29:47 mdejong Exp $ +# RCS: @(#) $Id: configure.in,v 1.93 2002/07/24 13:51:18 das Exp $ AC_INIT(../generic/tcl.h) AC_PREREQ(2.13) @@ -428,6 +428,9 @@ else TCL_SHLIB_CFLAGS="" eval "TCL_LIB_FILE=libtcl${TCL_UNSHARED_LIB_SUFFIX}" MAKE_LIB="\${STLIB_LD} \[$]@ \${OBJS}" + if test "x$DL_OBJS" = "xtclLoadDyld.o"; then + MAKE_LIB="${MAKE_LIB} ; \${RANLIB} \$@" + fi fi # tclConfig.sh needs a version of the _LIB_SUFFIX that has been eval'ed |