diff options
author | das <das> | 2006-11-10 01:57:04 (GMT) |
---|---|---|
committer | das <das> | 2006-11-10 01:57:04 (GMT) |
commit | c8fd8c3b3b073f1e7e3ff81ea864d8b3060fa386 (patch) | |
tree | 67260b96b15cb5f3d2efcc1abdf8a699506c7f8d /unix/tcl.m4 | |
parent | 3acc1810b8570d0f3bf39ca4d9e8f831e7b867d3 (diff) | |
download | tk-c8fd8c3b3b073f1e7e3ff81ea864d8b3060fa386.zip tk-c8fd8c3b3b073f1e7e3ff81ea864d8b3060fa386.tar.gz tk-c8fd8c3b3b073f1e7e3ff81ea864d8b3060fa386.tar.bz2 |
* macosx/Wish.xcodeproj/project.pbxproj: remove tclParseExpr.c and
bwidget.test.
* unix/tcl.m4 (Darwin): suppress linker arch warnings when building
universal for both 32 & 64 bit and no 64bit CoreFoundation is
available; sync with tcl tcl.m4 change.
* unix/configure: autoconf-2.59
* unix/tkConfig.h.in: autoheader-2.59
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r-- | unix/tcl.m4 | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4 index adaa421..8c900dd 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -708,6 +708,10 @@ AC_DEFUN([SC_ENABLE_THREADS], [ fi fi fi + if test $tcl_ok = no; then + # Darwin thread stacksize API + AC_CHECK_FUNCS(pthread_get_stacksize_np) + fi LIBS=$ac_saved_libs else TCL_THREADS=0 @@ -1645,6 +1649,7 @@ dnl AC_CHECK_TOOL(AR, ar) if test $tcl_cv_lib_corefoundation_64 = no; then AC_DEFINE(NO_COREFOUNDATION_64, 1, [Is Darwin CoreFoundation unavailable for 64-bit?]) + LDFLAGS="$LDFLAGS -Wl,-no_arch_warnings" fi fi fi |