diff options
author | das <das> | 2007-03-07 23:43:13 (GMT) |
---|---|---|
committer | das <das> | 2007-03-07 23:43:13 (GMT) |
commit | 5e46f127214e62bad14a33d4d4be75a51589fa57 (patch) | |
tree | 4730bde23b742f938f59329a6f4313eba9e3e660 /unix/configure | |
parent | 29a248eec39dd3387355e3b63efa17b1d3edec69 (diff) | |
download | tcl-5e46f127214e62bad14a33d4d4be75a51589fa57.zip tcl-5e46f127214e62bad14a33d4d4be75a51589fa57.tar.gz tcl-5e46f127214e62bad14a33d4d4be75a51589fa57.tar.bz2 |
* macosx/tclMacOSXNotify.c: add spinlock debugging and sanity checks.
* macosx/Tcl.xcodeproj/project.pbxproj: ensure gcc version used by
* macosx/Tcl.xcodeproj/default.pbxuser: Xcode and configure/make are
* macosx/Tcl-Common.xcconfig: consistent and independent of
gcc_select default and CC env var; fixes for Xcode 3.0.
* unix/tcl.m4 (Darwin): s/CFLAGS/CPPFLAGS/ in macosx-version-min check.
* unix/configure: autoconf-2.59
Diffstat (limited to 'unix/configure')
-rwxr-xr-x | unix/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/configure b/unix/configure index 5cc036e..de0c514 100755 --- a/unix/configure +++ b/unix/configure @@ -7662,7 +7662,7 @@ echo "${ECHO_T}$tcl_cv_ld_single_module" >&6 DL_LIBS="" # Don't use -prebind when building for Mac OS X 10.4 or later only: test "`echo "${MACOSX_DEPLOYMENT_TARGET}" | awk -F '10\\.' '{print int($2)}'`" -lt 4 -a \ - "`echo "${CFLAGS}" | awk -F '-mmacosx-version-min=10\\.' '{print int($2)}'`" -lt 4 && \ + "`echo "${CPPFLAGS}" | awk -F '-mmacosx-version-min=10\\.' '{print int($2)}'`" -lt 4 && \ LDFLAGS="$LDFLAGS -prebind" LDFLAGS="$LDFLAGS -headerpad_max_install_names" echo "$as_me:$LINENO: checking if ld accepts -search_paths_first flag" >&5 |