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/configure | |
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/configure')
-rwxr-xr-x | unix/configure | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/unix/configure b/unix/configure index 15114cb..6621cb5 100755 --- a/unix/configure +++ b/unix/configure @@ -5486,10 +5486,9 @@ echo "${ECHO_T}$tcl_cv_ld_single_module" >&6 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" echo "$as_me:$LINENO: checking if ld accepts -search_paths_first flag" >&5 echo $ECHO_N "checking if ld accepts -search_paths_first flag... $ECHO_C" >&6 |