diff options
author | das <das> | 2001-12-20 18:13:30 (GMT) |
---|---|---|
committer | das <das> | 2001-12-20 18:13:30 (GMT) |
commit | eb05d9a6f9560e60224cdef0fc0d46afc16d7b08 (patch) | |
tree | d7bf7bdf18ebd6b7f09ed1a80616bee0fffb1673 /unix/tcl.m4 | |
parent | edaac9b8b6a5563d2c7d4423ba71ba41b7f65500 (diff) | |
download | tcl-eb05d9a6f9560e60224cdef0fc0d46afc16d7b08.zip tcl-eb05d9a6f9560e60224cdef0fc0d46afc16d7b08.tar.gz tcl-eb05d9a6f9560e60224cdef0fc0d46afc16d7b08.tar.bz2 |
* unix/tcl.m4: fixed incorrect SHLIB_LD_LIBS
setting for MacOSX / Darwin.
* unix/configure: Regen.
* unix/mkLinks.tcl: improved case-insensitive
filesystem support.
* unix/mkLinks: Regen.
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r-- | unix/tcl.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4 index 08d84b1..559f422 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -988,7 +988,7 @@ dnl AC_CHECK_TOOL(AR, ar, :) SHLIB_CFLAGS="-fno-common" SHLIB_LD="cc -dynamiclib \${LDFLAGS}" TCL_SHLIB_LD_EXTRAS="-compatibility_version ${TCL_MAJOR_VERSION} -current_version \${VERSION} -install_name \${LIB_RUNTIME_DIR}/\${TCL_LIB_FILE} -prebind -seg1addr a000000" - SHLIB_LD_LIBS="${LIBS}" + SHLIB_LD_LIBS='${LIBS}' SHLIB_SUFFIX=".dylib" DL_OBJS="tclLoadDyld.o" DL_LIBS="" |