diff options
author | das <das> | 2001-11-23 01:39:42 (GMT) |
---|---|---|
committer | das <das> | 2001-11-23 01:39:42 (GMT) |
commit | 54c5936b6021be7a0d149ce218e7bba30faf984e (patch) | |
tree | 979fa41979efaf22cb7e936f182fc2a2d165e934 /unix/configure.in | |
parent | 5bf5a16c3a6e83b4297123ae905297ac723f7f81 (diff) | |
download | tcl-54c5936b6021be7a0d149ce218e7bba30faf984e.zip tcl-54c5936b6021be7a0d149ce218e7bba30faf984e.tar.gz tcl-54c5936b6021be7a0d149ce218e7bba30faf984e.tar.bz2 |
*unix/Makefile.in:
*unix/configure.in:
*unix/install-sh:
*unix/mkLinks:
*unix/mkLinks.tcl:
*unix/tclLoadDyld.c:
*unix/tclMtherr.c: Mac OSX support: build system, dynamic code loading
and support for case-insensitive filesystems in mkLinks (patch #435258)
Diffstat (limited to 'unix/configure.in')
-rw-r--r-- | unix/configure.in | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/unix/configure.in b/unix/configure.in index fcbe009..3d8bf8e 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.75 2001/11/16 20:55:39 hobbs Exp $ +# RCS: @(#) $Id: configure.in,v 1.76 2001/11/23 01:39:50 das Exp $ AC_INIT(../generic/tcl.h) @@ -392,8 +392,7 @@ if test "${SHARED_BUILD}" = "1" -a "${SHLIB_SUFFIX}" != "" ; then if test "x$DL_OBJS" = "xtclLoadAout.o"; then MAKE_LIB="\${STLIB_LD} \[$]@ \${OBJS}" else - MAKE_LIB="\${SHLIB_LD} -o \[$]@ \${OBJS} ${SHLIB_LD_LIBS}" - RANLIB=":" + MAKE_LIB="\${SHLIB_LD} ${TCL_SHLIB_LD_EXTRAS} -o \[$]@ \${OBJS} ${SHLIB_LD_LIBS}" fi else case $system in |