diff options
author | das <das> | 2005-12-01 04:28:25 (GMT) |
---|---|---|
committer | das <das> | 2005-12-01 04:28:25 (GMT) |
commit | 9bd90ef64bb483339cafdeeb79f0274563aa9d63 (patch) | |
tree | 1b5b243bf7f0975d72310d69a18c1576fd858f5f /unix/tcl.m4 | |
parent | 2ab9a8eaf6ffdff3cbf822ebf40b28e68261ea00 (diff) | |
download | tk-9bd90ef64bb483339cafdeeb79f0274563aa9d63.zip tk-9bd90ef64bb483339cafdeeb79f0274563aa9d63.tar.gz tk-9bd90ef64bb483339cafdeeb79f0274563aa9d63.tar.bz2 |
* unix/tcl.m4 (Darwin): fixed error when MACOSX_DEPLOYMENT_TARGET unset.
* unix/configure: regen.
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r-- | unix/tcl.m4 | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4 index 571d836..211dae3 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -1450,10 +1450,9 @@ dnl AC_CHECK_TOOL(AR, ar) DL_OBJS="tclLoadDyld.o" DL_LIBS="" # Don't use -prebind when building for Mac OS X 10.4 or later only: - if test -z "${MACOSX_DEPLOYMENT_TARGET}" -o \ - `echo "${MACOSX_DEPLOYMENT_TARGET}" | awk -F. '{print [$]2}'` -lt 4; then + test -z "${MACOSX_DEPLOYMENT_TARGET}" || \ + test "`echo "${MACOSX_DEPLOYMENT_TARGET}" | awk -F. '{print [$]2}'`" -lt 4 && \ LDFLAGS="$LDFLAGS -prebind" - fi LDFLAGS="$LDFLAGS -headerpad_max_install_names" AC_CACHE_CHECK([if ld accepts -search_paths_first flag], tcl_cv_ld_search_paths_first, [ hold_ldflags=$LDFLAGS |