summaryrefslogtreecommitdiffstats
path: root/macosx/Makefile
diff options
context:
space:
mode:
authordas <das@noemail.net>2003-02-19 16:43:25 (GMT)
committerdas <das@noemail.net>2003-02-19 16:43:25 (GMT)
commit64aaea05424b6217cd28c5dfefa27efc77f4bbb7 (patch)
tree6fe21a65fd94d4bd6843d30414e5e3041829cb32 /macosx/Makefile
parent491468d1d3cb76957f0025c356e995af98e9a4a7 (diff)
downloadtcl-64aaea05424b6217cd28c5dfefa27efc77f4bbb7.zip
tcl-64aaea05424b6217cd28c5dfefa27efc77f4bbb7.tar.gz
tcl-64aaea05424b6217cd28c5dfefa27efc77f4bbb7.tar.bz2
* generic/tclStringObj.c: restored Tcl_SetObjLength() side-effect
of always invalidating unicode rep (if the obj has a string rep). Added hasUnicode flag to String struct, allows decoupling of validity of unicode rep from buffer size allocated to it (improves memory allocation efficiency). [Bugs #686782, #671138, #635200] * macosx/Tcl.pbproj/project.pbxproj: * macosx/Makefile: reworked embedded build to no longer require relinking but to use install_name_tool instead to change the install_names for embedded frameworks. * macosx/Tcl.pbproj/project.pbxproj: preserve mod dates when running 'make install' to build framework (avoids bogus rebuilds of dependent frameworks because tcl headers appear changed). * tests/ioCmd.test (iocmd-1.8): fix failure when system encoding is utf-8: use iso8859-1 encoding explicitly. FossilOrigin-Name: 80440365aca9cb27befccf00f7bbcb088c7f7352
Diffstat (limited to 'macosx/Makefile')
-rw-r--r--macosx/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/macosx/Makefile b/macosx/Makefile
index 27d22b1..fec1e4b 100644
--- a/macosx/Makefile
+++ b/macosx/Makefile
@@ -3,7 +3,7 @@
# Simple makefile for building on Mac OS X with the
# Project Builder command line tool 'pbxbuild'
#
-# RCS: @(#) $Id: Makefile,v 1.4 2002/09/26 17:06:14 das Exp $
+# RCS: @(#) $Id: Makefile,v 1.5 2003/02/19 16:43:29 das Exp $
#
################################################################################
@@ -25,7 +25,7 @@ DEPBUILD = ${BUILD} -buildstyle "${DEPBUILDSTYLE}"
INSTALLOPTS = INSTALL_ROOT="${INSTALL_ROOT}"
-EMBEDDEDOPTS = DYLIB_INSTALL_PATH="@executable_path/../Frameworks"
+EMBEDDEDOPTS = EMBEDDED_BUILD=1
################################################################################
@@ -53,10 +53,10 @@ install-develop:
install-deploy:
${DEPBUILD} install ${INSTALLOPTS}
-embedded-develop: forceRelink
+embedded-develop:
${DEVBUILD} ${EMBEDDEDOPTS}
-embedded-deploy: forceRelink
+embedded-deploy:
${DEPBUILD} ${EMBEDDEDOPTS}
install-embedded-develop: