summaryrefslogtreecommitdiffstats
path: root/unix/tcl.m4
diff options
context:
space:
mode:
authordas <das>2005-04-09 10:16:25 (GMT)
committerdas <das>2005-04-09 10:16:25 (GMT)
commit50d967ef8799a1dc3ebd6346b0b524cb8d68019e (patch)
tree50ada1bcfd7ab475e7b98d6d3d2a5f73d92486ae /unix/tcl.m4
parent43910e9ccfe1adfe036bdc299b6e6c8a820a03ab (diff)
downloadtk-50d967ef8799a1dc3ebd6346b0b524cb8d68019e.zip
tk-50d967ef8799a1dc3ebd6346b0b524cb8d68019e.tar.gz
tk-50d967ef8799a1dc3ebd6346b0b524cb8d68019e.tar.bz2
* unix/tcl.m4 (Darwin): added -single_module linker flag to
TCL_SHLIB_LD_EXTRAS and TK_SHLIB_LD_EXTRAS. * unix/configure: autoconf-2.59
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r--unix/tcl.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4
index cbe5fd3..2ed36b1 100644
--- a/unix/tcl.m4
+++ b/unix/tcl.m4
@@ -1380,8 +1380,8 @@ dnl AC_CHECK_TOOL(AR, ar)
Darwin-*)
SHLIB_CFLAGS="-fno-common"
SHLIB_LD="cc -dynamiclib \${LDFLAGS}"
- TCL_SHLIB_LD_EXTRAS="-compatibility_version ${TCL_VERSION} -current_version \${VERSION} -install_name \${DYLIB_INSTALL_DIR}/\${TCL_LIB_FILE} -prebind -seg1addr 0xa000000"
- TK_SHLIB_LD_EXTRAS="-compatibility_version ${TK_VERSION} -current_version \${VERSION} -install_name \${DYLIB_INSTALL_DIR}/\${TK_LIB_FILE} -prebind -seg1addr 0xb000000"
+ TCL_SHLIB_LD_EXTRAS="-compatibility_version ${TCL_VERSION} -current_version \${VERSION} -install_name \${DYLIB_INSTALL_DIR}/\${TCL_LIB_FILE} -prebind -seg1addr 0xa000000 -Wl,-single_module"
+ TK_SHLIB_LD_EXTRAS="-compatibility_version ${TK_VERSION} -current_version \${VERSION} -install_name \${DYLIB_INSTALL_DIR}/\${TK_LIB_FILE} -prebind -seg1addr 0xb000000 -Wl,-single_module"
SHLIB_LD_LIBS='${LIBS}'
SHLIB_SUFFIX=".dylib"
DL_OBJS="tclLoadDyld.o"