diff options
author | das <das> | 2004-11-16 04:05:49 (GMT) |
---|---|---|
committer | das <das> | 2004-11-16 04:05:49 (GMT) |
commit | b00fcf3beace12cf94ddd9075c615a2e4ca6a65a (patch) | |
tree | e8564332da06153f2b38d67f1261b8dbfbf42b40 /macosx/buildTkConfig.tcl | |
parent | 50af33b1a13e1b6c55e100130ec1e8c22e4beab6 (diff) | |
download | tk-b00fcf3beace12cf94ddd9075c615a2e4ca6a65a.zip tk-b00fcf3beace12cf94ddd9075c615a2e4ca6a65a.tar.gz tk-b00fcf3beace12cf94ddd9075c615a2e4ca6a65a.tar.bz2 |
* macosx/Wish.pbproj/project.pbxproj:
* macosx/buildTkConfig.tcl: fixes for tclConfig.h changes.
* macosx/Wish.pbproj/project.pbxproj: fixed references to renamed
bitmap files.
* macosx/Wish.xcode/project.pbxproj (new):
* macosx/Wish.xcode/default.pbxuser (new):
* macosx/Wish-Info.plist (new):
* macosx/Tk-Info.plist (new): added new Xcode 1.5 project using
native targets, made possible by tclConfig.h changes.
* generic/tk.h: added version number change comments for new files.
Diffstat (limited to 'macosx/buildTkConfig.tcl')
-rwxr-xr-x | macosx/buildTkConfig.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/buildTkConfig.tcl b/macosx/buildTkConfig.tcl index 8f8f86f..45597ea 100755 --- a/macosx/buildTkConfig.tcl +++ b/macosx/buildTkConfig.tcl @@ -3,7 +3,7 @@ # Synthesize tkConfig.sh for Mac OS X based # on tclConfig.sh and tkConfig.sh.in # -# RCS: @(#) $Id: buildTkConfig.tcl,v 1.3 2003/07/21 12:39:50 das Exp $ +# RCS: @(#) $Id: buildTkConfig.tcl,v 1.4 2004/11/16 04:05:53 das Exp $ # # the next line restarts using tclsh \ exec tclsh8.4 "$0" "$@" @@ -28,7 +28,7 @@ proc main {tclConfigFile tkConfigFileIn tkConfigFile} { } regsub -line -all -- {@[^@]+@} $tkConfig {} tkConfig regsub -line -all -- {(/tk)/(?:Development|Deployment)} $tkConfig {\1} tkConfig - regsub -line {^(TK_DEFS=')} $tkConfig {\1 -DMAC_OSX_TK} tkConfig + regsub -line {^(TK_DEFS=')} $tkConfig {\1 -DMAC_OSX_TK } tkConfig set out [open $tkConfigFile w] puts $out $tkConfig |