diff options
author | das <das> | 2002-08-31 06:12:19 (GMT) |
---|---|---|
committer | das <das> | 2002-08-31 06:12:19 (GMT) |
commit | e947c1d0d386b229818958dc12ea0cc20e4ec582 (patch) | |
tree | 303845583d22d9e5e5f3f53edf451167cb5847e6 /macosx/Wish.pbproj | |
parent | 62d94160aed093a9505d60181a1509e69bd02bb6 (diff) | |
download | tk-e947c1d0d386b229818958dc12ea0cc20e4ec582.zip tk-e947c1d0d386b229818958dc12ea0cc20e4ec582.tar.gz tk-e947c1d0d386b229818958dc12ea0cc20e4ec582.tar.bz2 |
*** macosx-8-4-branch merged into the mainline [tcl patch #602770] ***macosx_8_4_merge_2002_08_31_trunk
* generic/tk.decls:
* generic/tkInt.decls: added new "aqua" specific entries to the
stubs tables. Changed all "unix" entries to "x11" to allow us to
distinguish and build both "aqua" on MacOSX and "x11" on MacOSX.
* generic/tk.h: added a #ifnded RESOURCE_INCLUDED so that tk.h can
be passed to the resource compiler.
* generic/tkCmds.c (Tk_TkObjCmd): added [tk windowingsystem]
subcommand: returns "x11" when running on X11, "win32" on Windows,
"classic" on MacOS9 and "aqua" on MacOSX Aqua (i.e. Carbon)
* generic/tkFont.c (TkFontGetFirstTextLayout): new private function
returning the first chunk of a Tk_TextLayout, i.e. until the first
font change on the first line (or the whole first line if there is
no such font change).
* generic/tkMain.c: made Tcl_ThreadDataKey static
* library/demos/puzzle.tcl: fixed button metrics for aqua
* tests/cursor.test: check for presence of arrow cursor instead of
heart cursor
* xlib/xcolors.c: changed xColors static initialization to more
standard C
* macosx/Wish.pbproj/jingham.pbxuser (new):
* macosx/Wish.pbproj/project.pbxproj (new): project for Apple's
ProjectBuilder IDE.
* macosx/Makefile (new): simple makefile for building the project
from the command line via the ProjectBuilder tool 'pbxbuild'.
* macosx/tkMacOSXAppInit.c (new): macosx specific AppInit looking
for a AppMain.tcl file in its bundled Resources/Scripts folder. If
present, argv[1] is set to that file and the Scripts folder is
added to the auto_path. This allows tk apps to embed scripts within
their bundle directory structure.
* macosx/tkMacOSXInit.c (new): macosx adapted version of
tkUnixInit.c: we initialize & cache the Carbon native encoding
(e.g. 'macRoman') and try to find the tk script library files
inside Tk packaged as a framework.
* macosx/tkMacOSXNotify.c (new): new macosx specific merged
Carbon/select-based notifier.
* macosx/tkMacOSXEvent.c (new):
* macosx/tkMacOSXEvent.h (new):
* macosx/tkMacOSXKeyEvent.c (new):
* macosx/tkMacOSXMouseEvent.c (new):
* macosx/tkMacOSXWindowEvent.c (new): new macosx specific event
handling functionality.
* macosx/tkMacOSX.h (new):
* macosx/tkMacOSXBitmap.c (new):
* macosx/tkMacOSXButton.c (new):
* macosx/tkMacOSXClipboard.c (new):
* macosx/tkMacOSXColor.c (new):
* macosx/tkMacOSXConfig.c (new):
* macosx/tkMacOSXCursor.c (new):
* macosx/tkMacOSXDefault.h (new):
* macosx/tkMacOSXDialog.c (new):
* macosx/tkMacOSXDraw.c (new):
* macosx/tkMacOSXEmbed.c (new):
* macosx/tkMacOSXFont.c (new):
* macosx/tkMacOSXHLEvents.c (new):
* macosx/tkMacOSXInt.h (new):
* macosx/tkMacOSXKeyboard.c (new):
* macosx/tkMacOSXMenu.c (new):
* macosx/tkMacOSXMenubutton.c (new):
* macosx/tkMacOSXMenus.c (new):
* macosx/tkMacOSXPort.h (new):
* macosx/tkMacOSXRegion.c (new):
* macosx/tkMacOSXScale.c (new):
* macosx/tkMacOSXScrlbr.c (new):
* macosx/tkMacOSXSubwindows.c (new):
* macosx/tkMacOSXTest.c (new):
* macosx/tkMacOSXUtil.c (new):
* macosx/tkMacOSXUtil.h (new):
* macosx/tkMacOSXWm.c (new):
* macosx/tkMacOSXWm.h (new):
* macosx/tkMacOSXXStubs.c (new): macosx ports of classic mac Tk
implementation in tk/mac.
* macosx/tkMacOSXSend.c (new): only send to local interp
implemented currently.
* macosx/tkMacOSXDebug.h (new):
* macosx/tkMacOSXDebug.c (new): new macosx specific functions for
debugging MacOS events, regions, etc.
* macosx/tkAboutDlg.r (new):
* macosx/tkMacOSXApplication.r (new):
* macosx/tkMacOSXCursors.r (new):
* macosx/tkMacOSXLibrary.r (new):
* macosx/tkMacOSXMenu.r (new):
* macosx/tkMacOSXResource.r (new):
* macosx/tkMacOSXXCursors.r (new):
* macosx/tclets.r (new): sources for Rez resource compiler.
* macosx/Wish.icns (new): Wish application icon.
* generic/tk.h:
* generic/default.h:
* generic/tkBind.c:
* generic/tkCmds.c:
* generic/tkGrab.c:
* generic/tkPointer.c:
* generic/tkPort.h:
* generic/tkSelect.c:
* generic/tkStubLib.c:
* generic/tkTest.c:
* generic/tkText.c:
* generic/tkWindow.c:
* unix/tkUnix3d.c:
* xlib/xgc.c:
* xlib/X11/X.h:
* xlib/X11/Xlib.h:
* xlib/X11/Xutil.h: added #includes and #ifdefs for macosx
* library/bgerror.tcl:
* library/button.tcl:
* library/console.tcl:
* library/dialog.tcl:
* library/entry.tcl:
* library/listbox.tcl:
* library/menu.tcl:
* library/msgbox.tcl:
* library/scrlbar.tcl:
* library/spinbox.tcl:
* library/text.tcl:
* library/tk.tcl:
* library/demos/menu.tcl:
* library/demos/menubu.tcl:
* library/demos/widget: check [tk windowingsystem] instead of
and/or in addition to $tcl_platform(platform).
* generic/tkInt.h:
* mac/tkMacBitmap.c:
* mac/tkMacWm.c: added missing CONSTification
* generic/tkIntDecls.h:
* generic/tkIntPlatDecls.h:
* generic/tkIntXlibDecls.h:
* generic/tkPlatDecls.h:
* generic/tkStubInit.c: regen
Diffstat (limited to 'macosx/Wish.pbproj')
-rw-r--r-- | macosx/Wish.pbproj/jingham.pbxuser | 1502 | ||||
-rw-r--r-- | macosx/Wish.pbproj/project.pbxproj | 3593 |
2 files changed, 5095 insertions, 0 deletions
diff --git a/macosx/Wish.pbproj/jingham.pbxuser b/macosx/Wish.pbproj/jingham.pbxuser new file mode 100644 index 0000000..72932e7 --- /dev/null +++ b/macosx/Wish.pbproj/jingham.pbxuser @@ -0,0 +1,1502 @@ +// !$*UTF8*$! +{ + 005751A902FB00920AC916F0 = { + fRef = F5375568016C376E01DC9062; + isa = PBXTextBookmark; + name = "tkMacOSXXStubs.c: TkpCloseDisplay"; + rLen = 0; + rLoc = 5311; + rType = 0; + vrLen = 417; + vrLoc = 4894; + }; + F50D961501961F0201DC9062 = { + fileReference = F5375551016C376E01DC9062; + isa = PBXFileBreakpoint; + lineNumber = 902; + state = 2; + }; + F537552A016C352C01DC9062 = { + activeBuildStyle = F537552C016C352C01DC9062; + activeExecutable = F53756AB016C4DD401DC9062; + activeTarget = F53756A0016C4DD401DC9062; + addToTargets = ( + F53755DF016C38D201DC9062, + ); + breakpoints = ( + F5B2CDC10175829501DC9062, + F571FE470179562E01DC9062, + F571FE4A0179695001DC9062, + F571FE4C01796B1101DC9062, + F571FE4D01796CAF01DC9062, + F571FE4E01796F9201DC9062, + F571FE4F0179702301DC9062, + F571FE500179702301DC9062, + F583DC0E018D092D01DC9062, + F583DC0F018D0CB501DC9062, + F583DC13018D2B4A01DC9062, + F58907BE018DCE8F01DC9062, + F58907C5018DD1C301DC9062, + F50D961501961F0201DC9062, + F566083B0197283B01DC9062, + F566083C0197823801DC9062, + F5A5146F01D05DC201DC9062, + F5A5147001D0758C01DC9062, + F5A852D6020F6C6C01DC9062, + F5A439C0029B609C01DC9064, + F5A439C2029B60ED01DC9064, + F5A439CA029B620901DC9064, + F55BC4B602B2DFB901DC9062, + F5978FD602B3190701DC9062, + ); + executables = ( + F53756AB016C4DD401DC9062, + ); + perUserDictionary = { + PBXPerProjectTemplateStateSaveDate = 49921092; + "PBXTemplateGeometry-F5314676015831810DCA290F" = { + ContentSize = "{716, 618}"; + LeftSlideOut = { + Collapsed = NO; + Frame = "{{0, 23}, {716, 595}}"; + Split0 = { + ActiveTab = 2; + Collapsed = NO; + Frame = "{{0, 0}, {716, 595}}"; + Split0 = { + Frame = "{{0, 249}, {716, 346}}"; + }; + SplitCount = 1; + Tab0 = { + Debugger = { + Collapsed = NO; + Frame = "{{0, 0}, {952, 321}}"; + Split0 = { + Frame = "{{0, 24}, {952, 297}}"; + Split0 = { + Frame = "{{0, 0}, {468, 297}}"; + }; + Split1 = { + DebugVariablesTableConfiguration = ( + Name, + 126.803, + Value, + 150.074, + Summary, + 172.123, + ); + Frame = "{{477, 0}, {475, 297}}"; + }; + SplitCount = 2; + }; + SplitCount = 1; + Tab0 = { + Frame = "{{0, 0}, {100, 50}}"; + }; + Tab1 = { + Frame = "{{0, 0}, {100, 50}}"; + }; + TabCount = 2; + TabsVisible = YES; + }; + Frame = "{{0, 0}, {952, 321}}"; + LauncherConfigVersion = 7; + }; + Tab1 = { + Frame = "{{0, 0}, {781, 452}}"; + LauncherConfigVersion = 3; + Runner = { + Frame = "{{0, 0}, {781, 452}}"; + }; + }; + Tab2 = { + BuildMessageFrame = "{{0, 0}, {718, 0}}"; + BuildTranscriptFrame = "{{0, 9}, {718, 236}}"; + Frame = "{{0, 0}, {716, 243}}"; + }; + Tab3 = { + Frame = "{{0, 0}, {612, 295}}"; + }; + TabCount = 4; + TabsVisible = NO; + }; + SplitCount = 1; + Tab0 = { + Frame = "{{0, 0}, {300, 533}}"; + GroupTreeTableConfiguration = ( + SCMStatusColumn, + 22, + TargetStatusColumn, + 18, + MainColumn, + 245, + ); + }; + Tab1 = { + ClassesFrame = "{{0, 0}, {280, 398}}"; + ClassesTreeTableConfiguration = ( + PBXBookColumnIdentifier, + 20, + PBXClassColumnIdentifier, + 237, + ); + Frame = "{{0, 0}, {278, 659}}"; + MembersFrame = "{{0, 407}, {280, 252}}"; + MembersTreeTableConfiguration = ( + PBXBookColumnIdentifier, + 20, + PBXMethodColumnIdentifier, + 236, + ); + }; + Tab2 = { + Frame = "{{0, 0}, {200, 100}}"; + }; + Tab3 = { + Frame = "{{0, 0}, {200, 100}}"; + TargetTableConfiguration = ( + ActiveObject, + 16, + ObjectNames, + 202.296, + ); + }; + Tab4 = { + BreakpointsTreeTableConfiguration = ( + breakpointColumn, + 197, + enabledColumn, + 31, + ); + Frame = "{{0, 0}, {250, 100}}"; + }; + TabCount = 5; + TabsVisible = NO; + }; + StatusViewVisible = YES; + Template = F5314676015831810DCA290F; + ToolbarVisible = YES; + WindowLocation = "{49, 213}"; + }; + "PBXTemplateGeometry-F5CA7ECB015C094F0DCA290F" = { + ContentSize = "{690, 721}"; + LeftSlideOut = { + Collapsed = NO; + Frame = "{{0, 0}, {690, 721}}"; + Split0 = { + Collapsed = NO; + Frame = "{{0, 0}, {690, 721}}"; + Split0 = { + Frame = "{{0, 0}, {690, 721}}"; + }; + SplitCount = 1; + Tab0 = { + Debugger = { + Collapsed = NO; + Frame = "{{0, 0}, {484, 208}}"; + Split0 = { + Frame = "{{0, 24}, {484, 184}}"; + Split0 = { + Frame = "{{0, 0}, {236, 184}}"; + }; + Split1 = { + DebugVariablesTableConfiguration = ( + Name, + 123, + Value, + 85, + Summary, + 62.123, + ); + Frame = "{{245, 0}, {239, 184}}"; + }; + SplitCount = 2; + }; + SplitCount = 1; + Tab0 = { + Frame = "{{0, 0}, {100, 50}}"; + }; + Tab1 = { + Frame = "{{0, 0}, {100, 50}}"; + }; + TabCount = 2; + TabsVisible = YES; + }; + Frame = "{{0, 0}, {484, 208}}"; + LauncherConfigVersion = 7; + }; + Tab1 = { + Frame = "{{0, 0}, {664, 208}}"; + LauncherConfigVersion = 3; + Runner = { + Frame = "{{0, 0}, {664, 208}}"; + }; + }; + Tab2 = { + BuildMessageFrame = "{{0, 0}, {666, 43}}"; + BuildTranscriptFrame = "{{0, 52}, {666, 0}}"; + Frame = "{{0, 0}, {664, 50}}"; + }; + Tab3 = { + Frame = "{{0, 0}, {612, 295}}"; + }; + TabCount = 4; + TabsVisible = NO; + }; + SplitCount = 1; + Tab0 = { + Frame = "{{0, 0}, {313, 531}}"; + GroupTreeTableConfiguration = ( + SCMStatusColumn, + 22, + TargetStatusColumn, + 18, + MainColumn, + 258, + ); + }; + Tab1 = { + ClassesFrame = "{{0, 0}, {280, 398}}"; + ClassesTreeTableConfiguration = ( + PBXBookColumnIdentifier, + 20, + PBXClassColumnIdentifier, + 237, + ); + Frame = "{{0, 0}, {278, 659}}"; + MembersFrame = "{{0, 407}, {280, 252}}"; + MembersTreeTableConfiguration = ( + PBXBookColumnIdentifier, + 20, + PBXMethodColumnIdentifier, + 236, + ); + }; + Tab2 = { + Frame = "{{0, 0}, {200, 100}}"; + }; + Tab3 = { + Frame = "{{0, 0}, {200, 557}}"; + TargetTableConfiguration = ( + ActiveObject, + 16, + ObjectNames, + 202.296, + ); + }; + Tab4 = { + BreakpointsTreeTableConfiguration = ( + breakpointColumn, + 197, + enabledColumn, + 31, + ); + Frame = "{{0, 0}, {250, 100}}"; + }; + TabCount = 5; + TabsVisible = NO; + }; + StatusViewVisible = NO; + Template = F5CA7ECB015C094F0DCA290F; + ToolbarVisible = NO; + WindowLocation = "{48, 3}"; + }; + PBXWorkspaceContents = ( + { + LeftSlideOut = { + Split0 = { + Split0 = { + NavContent0 = { + history = ( + F5A439D1029B6B5501DC9064, + F5A439D2029B6B5501DC9064, + F5A439D3029B6B5501DC9064, + F5A439D4029B6B5501DC9064, + F5A439D5029B6B5501DC9064, + F5A439D6029B6B5501DC9064, + F5A439D7029B6B5501DC9064, + F5BE671E029B6FEE01DC9064, + F55BC4B902B2E09101DC9062, + F55BC4BA02B2E09101DC9062, + F55BC4BD02B2E09101DC9062, + F5BFE59402F984FA01DC9062, + F5BFE59502F984FA01DC9062, + F5BFE59602F984FA01DC9062, + F5BFE59702F984FA01DC9062, + F5BFE59802F984FA01DC9062, + F5BFE59902F984FA01DC9062, + F5BFE59B02F984FA01DC9062, + F5BFE59C02F984FA01DC9062, + F5BFE59D02F984FA01DC9062, + F5BFE59E02F984FA01DC9062, + F5BFE59F02F984FA01DC9062, + F5BFE5A002F984FA01DC9062, + F5BFE5A102F984FA01DC9062, + F5BFE5A202F984FA01DC9062, + F5BFE5A402F984FA01DC9062, + F5BFE5A502F984FA01DC9062, + F5BFE5A602F984FA01DC9062, + F5BFE5A702F984FA01DC9062, + F5BFE5A802F984FA01DC9062, + ); + prevStack = ( + F5A439DA029B6B5501DC9064, + F5A439DB029B6B5501DC9064, + F5A439DE029B6B5501DC9064, + F5A439DF029B6B5501DC9064, + F5A439E0029B6B5501DC9064, + F5A439E1029B6B5501DC9064, + F5A439E2029B6B5501DC9064, + F5A439E3029B6B5501DC9064, + F5A439E4029B6B5501DC9064, + F5A439E5029B6B5501DC9064, + F5A439E6029B6B5501DC9064, + F5A439E7029B6B5501DC9064, + F5A439E8029B6B5501DC9064, + F5BE671F029B6FEE01DC9064, + F55BC4BF02B2E09101DC9062, + F55BC4C002B2E09101DC9062, + F55BC4C102B2E09101DC9062, + F55BC4C202B2E09101DC9062, + F55BC4C302B2E09101DC9062, + F55BC4C402B2E09101DC9062, + F55BC4C702B2E09101DC9062, + F5BFE5AA02F984FA01DC9062, + F5BFE5AB02F984FA01DC9062, + F5BFE5AC02F984FA01DC9062, + F5BFE5AD02F984FA01DC9062, + F5BFE5AE02F984FA01DC9062, + F5BFE5AF02F984FA01DC9062, + F5BFE5B002F984FA01DC9062, + F5BFE5B202F984FA01DC9062, + F5BFE5B302F984FA01DC9062, + F5BFE5B402F984FA01DC9062, + F5BFE5B502F984FA01DC9062, + F5BFE5B702F984FA01DC9062, + F5BFE5B802F984FA01DC9062, + F5BFE5B902F984FA01DC9062, + F5BFE5BB02F984FA01DC9062, + F5BFE5BC02F984FA01DC9062, + F5BFE5BD02F984FA01DC9062, + F5BFE5BE02F984FA01DC9062, + F5BFE5BF02F984FA01DC9062, + F5BFE5C002F984FA01DC9062, + F5BFE5C102F984FA01DC9062, + ); + }; + NavContent1 = { + bookmark = 005751A902FB00920AC916F0; + history = ( + F5BFE5C402F984FA01DC9062, + ); + }; + NavCount = 2; + NavGeometry0 = { + Frame = "{{0, 0}, {645, 321}}"; + NavBarVisible = YES; + }; + NavGeometry1 = { + Frame = "{{0, 330}, {645, 321}}"; + NavBarVisible = YES; + }; + }; + SplitCount = 1; + Tab0 = { + Debugger = { + Split0 = { + SplitCount = 2; + }; + SplitCount = 1; + TabCount = 2; + }; + LauncherConfigVersion = 7; + }; + Tab1 = { + LauncherConfigVersion = 3; + Runner = { + }; + }; + TabCount = 4; + }; + SplitCount = 1; + Tab1 = { + OptionsSetName = "Default Options"; + }; + TabCount = 5; + }; + }, + ); + PBXWorkspaceGeometries = ( + { + ContentSize = "{929, 674}"; + LeftSlideOut = { + ActiveTab = 0; + Collapsed = NO; + Frame = "{{0, 23}, {929, 651}}"; + Split0 = { + Collapsed = NO; + Frame = "{{284, 0}, {645, 651}}"; + Split0 = { + Frame = "{{0, 0}, {645, 651}}"; + }; + SplitCount = 1; + Tab0 = { + Debugger = { + Collapsed = NO; + Frame = "{{0, 0}, {681, 289}}"; + Split0 = { + Frame = "{{0, 24}, {681, 265}}"; + Split0 = { + Frame = "{{0, 0}, {333, 265}}"; + }; + Split1 = { + DebugVariablesTableConfiguration = ( + Name, + 82.80298, + Value, + 104.074, + Summary, + 126.123, + ); + Frame = "{{342, 0}, {339, 265}}"; + }; + SplitCount = 2; + }; + SplitCount = 1; + Tab0 = { + Frame = "{{0, 0}, {100, 50}}"; + }; + Tab1 = { + Frame = "{{0, 0}, {100, 50}}"; + }; + TabCount = 2; + TabsVisible = YES; + }; + Frame = "{{0, 0}, {681, 289}}"; + LauncherConfigVersion = 7; + }; + Tab1 = { + Frame = "{{0, 0}, {681, 120}}"; + LauncherConfigVersion = 3; + Runner = { + Frame = "{{0, 0}, {681, 120}}"; + }; + }; + Tab2 = { + BuildMessageFrame = "{{0, 0}, {683, 127}}"; + BuildTranscriptFrame = "{{0, 136}, {683, 100}}"; + Frame = "{{0, 0}, {681, 234}}"; + }; + Tab3 = { + Frame = "{{0, 0}, {681, 238}}"; + }; + TabCount = 4; + TabsVisible = NO; + }; + SplitCount = 1; + Tab0 = { + Frame = "{{0, 0}, {260, 651}}"; + GroupTreeTableConfiguration = ( + SCMStatusColumn, + 22, + TargetStatusColumn, + 18, + MainColumn, + 205, + ); + }; + Tab1 = { + ClassesFrame = "{{0, 0}, {250, 333}}"; + ClassesTreeTableConfiguration = ( + PBXBookColumnIdentifier, + 20, + PBXClassColumnIdentifier, + 207, + ); + Frame = "{{0, 0}, {248, 554}}"; + MembersFrame = "{{0, 342}, {250, 212}}"; + MembersTreeTableConfiguration = ( + PBXBookColumnIdentifier, + 20, + PBXMethodColumnIdentifier, + 206, + ); + }; + Tab2 = { + Frame = "{{0, 0}, {217, 554}}"; + }; + Tab3 = { + Frame = "{{0, 0}, {239, 651}}"; + TargetTableConfiguration = ( + ActiveObject, + 16, + ObjectNames, + 206.296, + ); + }; + Tab4 = { + BreakpointsTreeTableConfiguration = ( + breakpointColumn, + 197, + enabledColumn, + 31, + ); + Frame = "{{0, 0}, {250, 554}}"; + }; + TabCount = 5; + TabsVisible = YES; + }; + StatusViewVisible = YES; + Template = 64ABBB4501FA494900185B06; + ToolbarVisible = YES; + WindowLocation = "{165, 176}"; + }, + ); + PBXWorkspaceStateSaveDate = 49921092; + }; + perUserProjectItems = { + 005751A902FB00920AC916F0 = 005751A902FB00920AC916F0; + F55BC4B902B2E09101DC9062 = F55BC4B902B2E09101DC9062; + F55BC4BA02B2E09101DC9062 = F55BC4BA02B2E09101DC9062; + F55BC4BD02B2E09101DC9062 = F55BC4BD02B2E09101DC9062; + F55BC4BF02B2E09101DC9062 = F55BC4BF02B2E09101DC9062; + F55BC4C002B2E09101DC9062 = F55BC4C002B2E09101DC9062; + F55BC4C102B2E09101DC9062 = F55BC4C102B2E09101DC9062; + F55BC4C202B2E09101DC9062 = F55BC4C202B2E09101DC9062; + F55BC4C302B2E09101DC9062 = F55BC4C302B2E09101DC9062; + F55BC4C402B2E09101DC9062 = F55BC4C402B2E09101DC9062; + F55BC4C702B2E09101DC9062 = F55BC4C702B2E09101DC9062; + F5A439D1029B6B5501DC9064 = F5A439D1029B6B5501DC9064; + F5A439D2029B6B5501DC9064 = F5A439D2029B6B5501DC9064; + F5A439D3029B6B5501DC9064 = F5A439D3029B6B5501DC9064; + F5A439D4029B6B5501DC9064 = F5A439D4029B6B5501DC9064; + F5A439D5029B6B5501DC9064 = F5A439D5029B6B5501DC9064; + F5A439D6029B6B5501DC9064 = F5A439D6029B6B5501DC9064; + F5A439D7029B6B5501DC9064 = F5A439D7029B6B5501DC9064; + F5A439DA029B6B5501DC9064 = F5A439DA029B6B5501DC9064; + F5A439DB029B6B5501DC9064 = F5A439DB029B6B5501DC9064; + F5A439DE029B6B5501DC9064 = F5A439DE029B6B5501DC9064; + F5A439DF029B6B5501DC9064 = F5A439DF029B6B5501DC9064; + F5A439E0029B6B5501DC9064 = F5A439E0029B6B5501DC9064; + F5A439E1029B6B5501DC9064 = F5A439E1029B6B5501DC9064; + F5A439E2029B6B5501DC9064 = F5A439E2029B6B5501DC9064; + F5A439E3029B6B5501DC9064 = F5A439E3029B6B5501DC9064; + F5A439E4029B6B5501DC9064 = F5A439E4029B6B5501DC9064; + F5A439E5029B6B5501DC9064 = F5A439E5029B6B5501DC9064; + F5A439E6029B6B5501DC9064 = F5A439E6029B6B5501DC9064; + F5A439E7029B6B5501DC9064 = F5A439E7029B6B5501DC9064; + F5A439E8029B6B5501DC9064 = F5A439E8029B6B5501DC9064; + F5BE671E029B6FEE01DC9064 = F5BE671E029B6FEE01DC9064; + F5BE671F029B6FEE01DC9064 = F5BE671F029B6FEE01DC9064; + F5BFE59402F984FA01DC9062 = F5BFE59402F984FA01DC9062; + F5BFE59502F984FA01DC9062 = F5BFE59502F984FA01DC9062; + F5BFE59602F984FA01DC9062 = F5BFE59602F984FA01DC9062; + F5BFE59702F984FA01DC9062 = F5BFE59702F984FA01DC9062; + F5BFE59802F984FA01DC9062 = F5BFE59802F984FA01DC9062; + F5BFE59902F984FA01DC9062 = F5BFE59902F984FA01DC9062; + F5BFE59B02F984FA01DC9062 = F5BFE59B02F984FA01DC9062; + F5BFE59C02F984FA01DC9062 = F5BFE59C02F984FA01DC9062; + F5BFE59D02F984FA01DC9062 = F5BFE59D02F984FA01DC9062; + F5BFE59E02F984FA01DC9062 = F5BFE59E02F984FA01DC9062; + F5BFE59F02F984FA01DC9062 = F5BFE59F02F984FA01DC9062; + F5BFE5A002F984FA01DC9062 = F5BFE5A002F984FA01DC9062; + F5BFE5A102F984FA01DC9062 = F5BFE5A102F984FA01DC9062; + F5BFE5A202F984FA01DC9062 = F5BFE5A202F984FA01DC9062; + F5BFE5A402F984FA01DC9062 = F5BFE5A402F984FA01DC9062; + F5BFE5A502F984FA01DC9062 = F5BFE5A502F984FA01DC9062; + F5BFE5A602F984FA01DC9062 = F5BFE5A602F984FA01DC9062; + F5BFE5A702F984FA01DC9062 = F5BFE5A702F984FA01DC9062; + F5BFE5A802F984FA01DC9062 = F5BFE5A802F984FA01DC9062; + F5BFE5AA02F984FA01DC9062 = F5BFE5AA02F984FA01DC9062; + F5BFE5AB02F984FA01DC9062 = F5BFE5AB02F984FA01DC9062; + F5BFE5AC02F984FA01DC9062 = F5BFE5AC02F984FA01DC9062; + F5BFE5AD02F984FA01DC9062 = F5BFE5AD02F984FA01DC9062; + F5BFE5AE02F984FA01DC9062 = F5BFE5AE02F984FA01DC9062; + F5BFE5AF02F984FA01DC9062 = F5BFE5AF02F984FA01DC9062; + F5BFE5B002F984FA01DC9062 = F5BFE5B002F984FA01DC9062; + F5BFE5B202F984FA01DC9062 = F5BFE5B202F984FA01DC9062; + F5BFE5B302F984FA01DC9062 = F5BFE5B302F984FA01DC9062; + F5BFE5B402F984FA01DC9062 = F5BFE5B402F984FA01DC9062; + F5BFE5B502F984FA01DC9062 = F5BFE5B502F984FA01DC9062; + F5BFE5B702F984FA01DC9062 = F5BFE5B702F984FA01DC9062; + F5BFE5B802F984FA01DC9062 = F5BFE5B802F984FA01DC9062; + F5BFE5B902F984FA01DC9062 = F5BFE5B902F984FA01DC9062; + F5BFE5BB02F984FA01DC9062 = F5BFE5BB02F984FA01DC9062; + F5BFE5BC02F984FA01DC9062 = F5BFE5BC02F984FA01DC9062; + F5BFE5BD02F984FA01DC9062 = F5BFE5BD02F984FA01DC9062; + F5BFE5BE02F984FA01DC9062 = F5BFE5BE02F984FA01DC9062; + F5BFE5BF02F984FA01DC9062 = F5BFE5BF02F984FA01DC9062; + F5BFE5C002F984FA01DC9062 = F5BFE5C002F984FA01DC9062; + F5BFE5C102F984FA01DC9062 = F5BFE5C102F984FA01DC9062; + F5BFE5C402F984FA01DC9062 = F5BFE5C402F984FA01DC9062; + }; + projectwideBuildSettings = { + OBJROOT = "/Volumes/TheCloset/jingham/tcl-tk/source/tcl-merge/Objects"; + SYMROOT = "/Volumes/TheCloset/jingham/tcl-tk/source/tcl-merge/Products"; + }; + wantsIndex = 1; + wantsSCM = -1; + }; + F53755DF016C38D201DC9062 = { + activeExec = 0; + }; + F53756A0016C4DD401DC9062 = { + activeExec = 0; + executables = ( + F53756AB016C4DD401DC9062, + ); + }; + F53756AB016C4DD401DC9062 = { + activeArgIndex = 2147483647; + argumentStrings = ( + ); + debuggerPlugin = GDBDebugging; + dylibVariantSuffix = ""; + enableDebugStr = 1; + environmentEntries = ( + ); + isa = PBXExecutable; + name = "Wish Shell"; + shlibInfoDictList = ( + ); + sourceDirectories = ( + ); + }; + F55BC4B602B2DFB901DC9062 = { + fileReference = F5375580016C389901DC9062; + isa = PBXFileBreakpoint; + lineNumber = 201; + state = 2; + }; + F55BC4B902B2E09101DC9062 = { + fRef = F5375553016C376E01DC9062; + isa = PBXTextBookmark; + name = "tkMacOSXEvent.c: 242"; + rLen = 0; + rLoc = 6185; + rType = 0; + vrLen = 1438; + vrLoc = 5937; + }; + F55BC4BA02B2E09101DC9062 = { + fRef = F55BC46A02B2D3F301DC9062; + isa = PBXTextBookmark; + name = "panedwindow.tcl: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 1395; + vrLoc = 0; + }; + F55BC4BD02B2E09101DC9062 = { + bstl = F537552C016C352C01DC9062; + isa = PBXBuildStyleBookmark; + }; + F55BC4BF02B2E09101DC9062 = { + fRef = F5375553016C376E01DC9062; + isa = PBXTextBookmark; + name = "tkMacOSXEvent.c: 242"; + rLen = 0; + rLoc = 6185; + rType = 0; + vrLen = 1438; + vrLoc = 5937; + }; + F55BC4C002B2E09101DC9062 = { + isa = PBXTargetBookmark; + trg = F53755DF016C38D201DC9062; + }; + F55BC4C102B2E09101DC9062 = { + fRef = F55BC46A02B2D3F301DC9062; + isa = PBXTextBookmark; + name = "panedwindow.tcl: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 1395; + vrLoc = 0; + }; + F55BC4C202B2E09101DC9062 = { + isa = PBXTargetBookmark; + trg = F53755DF016C38D201DC9062; + }; + F55BC4C302B2E09101DC9062 = { + fRef = F55BC46A02B2D3F301DC9062; + isa = PBXTextBookmark; + name = "panedwindow.tcl: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 1395; + vrLoc = 0; + }; + F55BC4C402B2E09101DC9062 = { + isa = PBXTargetBookmark; + trg = F53755DF016C38D201DC9062; + }; + F55BC4C702B2E09101DC9062 = { + bstl = F537552C016C352C01DC9062; + isa = PBXBuildStyleBookmark; + }; + F566083B0197283B01DC9062 = { + fileReference = F5375548016C376E01DC9062; + isa = PBXFileBreakpoint; + lineNumber = 214; + state = 2; + }; + F566083C0197823801DC9062 = { + isa = PBXSymbolicBreakpoint; + state = 2; + symbolName = Tcl_CreateObjCommand; + }; + F571FE470179562E01DC9062 = { + fileReference = F5375583016C389901DC9062; + isa = PBXFileBreakpoint; + lineNumber = 1711; + state = 2; + }; + F571FE4A0179695001DC9062 = { + fileReference = F5375558016C376E01DC9062; + isa = PBXFileBreakpoint; + lineNumber = 175; + state = 2; + }; + F571FE4C01796B1101DC9062 = { + fileReference = F5375558016C376E01DC9062; + isa = PBXFileBreakpoint; + lineNumber = 172; + state = 2; + }; + F571FE4D01796CAF01DC9062 = { + fileReference = F5375558016C376E01DC9062; + isa = PBXFileBreakpoint; + lineNumber = 229; + state = 2; + }; + F571FE4E01796F9201DC9062 = { + fileReference = F53755C8016C389901DC9062; + isa = PBXFileBreakpoint; + lineNumber = 408; + state = 2; + }; + F571FE4F0179702301DC9062 = { + fileReference = F537559A016C389901DC9062; + isa = PBXFileBreakpoint; + lineNumber = 444; + state = 2; + }; + F571FE500179702301DC9062 = { + fileReference = F537559A016C389901DC9062; + isa = PBXFileBreakpoint; + lineNumber = 469; + state = 2; + }; + F583DC0E018D092D01DC9062 = { + fileReference = F5375551016C376E01DC9062; + isa = PBXFileBreakpoint; + lineNumber = 531; + state = 2; + }; + F583DC0F018D0CB501DC9062 = { + fileReference = F5375551016C376E01DC9062; + isa = PBXFileBreakpoint; + lineNumber = 547; + state = 2; + }; + F583DC13018D2B4A01DC9062 = { + fileReference = F5375551016C376E01DC9062; + isa = PBXFileBreakpoint; + lineNumber = 1478; + state = 2; + }; + F58907BE018DCE8F01DC9062 = { + fileReference = F5375548016C376E01DC9062; + isa = PBXFileBreakpoint; + lineNumber = 196; + state = 2; + }; + F58907C5018DD1C301DC9062 = { + fileReference = F5375551016C376E01DC9062; + isa = PBXFileBreakpoint; + lineNumber = 502; + state = 2; + }; + F5978FD602B3190701DC9062 = { + fileReference = F5375580016C389901DC9062; + isa = PBXFileBreakpoint; + lineNumber = 224; + state = 2; + }; + F5A439C0029B609C01DC9064 = { + fileReference = F5375548016C376E01DC9062; + isa = PBXFileBreakpoint; + lineNumber = 74; + state = 1; + }; + F5A439C2029B60ED01DC9064 = { + fileReference = F5375548016C376E01DC9062; + isa = PBXFileBreakpoint; + lineNumber = 155; + state = 1; + }; + F5A439CA029B620901DC9064 = { + fileReference = F5375548016C376E01DC9062; + isa = PBXFileBreakpoint; + lineNumber = 306; + state = 1; + }; + F5A439D1029B6B5501DC9064 = { + fRef = F5A439F3029B6B5601DC9064; + isa = PBXTextBookmark; + name = "CarbonEvents.h: 4483"; + rLen = 19; + rLoc = 173576; + rType = 0; + vrLen = 804; + vrLoc = 173125; + }; + F5A439D2029B6B5501DC9064 = { + fRef = F5375548016C376E01DC9062; + isa = PBXTextBookmark; + name = "tkMacOSXAppInit.c: Tcl_AppInit"; + rLen = 0; + rLoc = 9908; + rType = 0; + vrLen = 1370; + vrLoc = 8362; + }; + F5A439D3029B6B5501DC9064 = { + fRef = F5A439F4029B6B5601DC9064; + isa = PBXTextBookmark; + name = "MacWindows.h: 1410"; + rLen = 105; + rLoc = 57285; + rType = 0; + vrLen = 1155; + vrLoc = 56795; + }; + F5A439D4029B6B5501DC9064 = { + fRef = F5A439F5029B6B5601DC9064; + isa = PBXBookmark; + }; + F5A439D5029B6B5501DC9064 = { + fRef = F5A439F6029B6B5601DC9064; + isa = PBXBookmark; + }; + F5A439D6029B6B5501DC9064 = { + fRef = F5A439F7029B6B5601DC9064; + isa = PBXBookmark; + }; + F5A439D7029B6B5501DC9064 = { + fRef = F5A439F8029B6B5601DC9064; + isa = PBXBookmark; + }; + F5A439DA029B6B5501DC9064 = { + fRef = F5375553016C376E01DC9062; + isa = PBXTextBookmark; + name = "tkMacOSXEvent.c: TkMacOSXProcessEvent"; + rLen = 25; + rLoc = 4656; + rType = 0; + vrLen = 1260; + vrLoc = 4407; + }; + F5A439DB029B6B5501DC9064 = { + fRef = F537555C016C376E01DC9062; + isa = PBXTextBookmark; + name = "tkMacOSXMouseEvent.c: TkMacOSXProcessMouseEvent"; + rLen = 0; + rLoc = 6037; + rType = 0; + vrLen = 1438; + vrLoc = 5075; + }; + F5A439DE029B6B5501DC9064 = { + fRef = F5375553016C376E01DC9062; + isa = PBXTextBookmark; + name = "tkMacOSXEvent.c: ReceiveAndProcessEvent"; + rLen = 0; + rLoc = 7098; + rType = 0; + vrLen = 1455; + vrLoc = 5920; + }; + F5A439DF029B6B5501DC9064 = { + fRef = F5375548016C376E01DC9062; + isa = PBXTextBookmark; + name = "tkMacOSXAppInit.c: Tcl_AppInit"; + rLen = 0; + rLoc = 9908; + rType = 0; + vrLen = 673; + vrLoc = 7806; + }; + F5A439E0029B6B5501DC9064 = { + fRef = F5375567016C376E01DC9062; + isa = PBXTextBookmark; + name = "tkMacOSXWm.c: TkMacOSXMakeRealWindowExist"; + rLen = 15; + rLoc = 148454; + rType = 0; + vrLen = 695; + vrLoc = 112860; + }; + F5A439E1029B6B5501DC9064 = { + fRef = F5A439FB029B6B5601DC9064; + isa = PBXTextBookmark; + name = "MacWindows.h: 1410"; + rLen = 0; + rLoc = 57304; + rType = 0; + vrLen = 659; + vrLoc = 56953; + }; + F5A439E2029B6B5501DC9064 = { + fRef = F5375548016C376E01DC9062; + isa = PBXTextBookmark; + name = "tkMacOSXAppInit.c: Tcl_AppInit"; + rLen = 0; + rLoc = 9908; + rType = 0; + vrLen = 1370; + vrLoc = 8362; + }; + F5A439E3029B6B5501DC9064 = { + fRef = F5A439EF029B6B5601DC9064; + isa = PBXTextBookmark; + name = "MacWindows.h: 1410"; + rLen = 105; + rLoc = 57285; + rType = 0; + vrLen = 1155; + vrLoc = 56795; + }; + F5A439E4029B6B5501DC9064 = { + fRef = F5A439F1029B6B5601DC9064; + isa = PBXBookmark; + }; + F5A439E5029B6B5501DC9064 = { + fRef = F5A439FD029B6B5601DC9064; + isa = PBXBookmark; + }; + F5A439E6029B6B5501DC9064 = { + fRef = F5A439FE029B6B5601DC9064; + isa = PBXBookmark; + }; + F5A439E7029B6B5501DC9064 = { + fRef = F5A439EE029B6B5601DC9064; + isa = PBXBookmark; + }; + F5A439E8029B6B5501DC9064 = { + fRef = F5A439F2029B6B5601DC9064; + isa = PBXBookmark; + }; + F5A439EE029B6B5601DC9064 = { + isa = PBXFileReference; + name = Carbon.html; + path = /Developer/Documentation/Carbon/Carbon.html; + refType = 0; + }; + F5A439EF029B6B5601DC9064 = { + isa = PBXFileReference; + name = MacWindows.h; + path = /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/Headers/MacWindows.h; + refType = 0; + }; + F5A439F1029B6B5601DC9064 = { + isa = PBXFileReference; + name = Carbon.html; + path = /Developer/Documentation/Carbon/Carbon.html; + refType = 0; + }; + F5A439F2029B6B5601DC9064 = { + isa = PBXFileReference; + name = carboneventmanager.html; + path = /Developer/Documentation/Carbon/oss/CarbonEventManager/carboneventmanager.html; + refType = 0; + }; + F5A439F3029B6B5601DC9064 = { + isa = PBXFileReference; + name = CarbonEvents.h; + path = /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/Headers/CarbonEvents.h; + refType = 0; + }; + F5A439F4029B6B5601DC9064 = { + isa = PBXFileReference; + name = MacWindows.h; + path = /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/Headers/MacWindows.h; + refType = 0; + }; + F5A439F5029B6B5601DC9064 = { + isa = PBXFileReference; + name = windowmanager.html; + path = /Developer/Documentation/Carbon/HumanInterfaceToolbox/WindowManager/windowmanager.html; + refType = 0; + }; + F5A439F6029B6B5601DC9064 = { + isa = PBXFileReference; + name = index.html; + path = /Developer/Documentation/Carbon/HumanInterfaceToolbox/WindowManager/Window_Manager/index.html; + refType = 0; + }; + F5A439F7029B6B5601DC9064 = { + isa = PBXFileReference; + name = Carbon.html; + path = /Developer/Documentation/Carbon/Carbon.html; + refType = 0; + }; + F5A439F8029B6B5601DC9064 = { + isa = PBXFileReference; + name = carboneventmanager.html; + path = /Developer/Documentation/Carbon/oss/CarbonEventManager/carboneventmanager.html; + refType = 0; + }; + F5A439FB029B6B5601DC9064 = { + isa = PBXFileReference; + name = MacWindows.h; + path = /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/Headers/MacWindows.h; + refType = 0; + }; + F5A439FD029B6B5601DC9064 = { + isa = PBXFileReference; + name = windowmanager.html; + path = /Developer/Documentation/Carbon/HumanInterfaceToolbox/WindowManager/windowmanager.html; + refType = 0; + }; + F5A439FE029B6B5601DC9064 = { + isa = PBXFileReference; + name = index.html; + path = /Developer/Documentation/Carbon/HumanInterfaceToolbox/WindowManager/Window_Manager/index.html; + refType = 0; + }; + F5A5146F01D05DC201DC9062 = { + fileReference = F5375550016C376E01DC9062; + isa = PBXFileBreakpoint; + lineNumber = 651; + state = 1; + }; + F5A5147001D0758C01DC9062 = { + fileReference = F5375550016C376E01DC9062; + isa = PBXFileBreakpoint; + lineNumber = 838; + state = 1; + }; + F5A852D6020F6C6C01DC9062 = { + fileReference = F5375550016C376E01DC9062; + isa = PBXFileBreakpoint; + lineNumber = 277; + state = 1; + }; + F5B2CDC10175829501DC9062 = { + fileReference = F5375583016C389901DC9062; + isa = PBXFileBreakpoint; + lineNumber = 2584; + state = 2; + }; + F5BE671E029B6FEE01DC9064 = { + fRef = F5BE6723029B6FEE01DC9064; + isa = PBXBookmark; + }; + F5BE671F029B6FEE01DC9064 = { + fRef = F5BE6722029B6FEE01DC9064; + isa = PBXBookmark; + }; + F5BE6722029B6FEE01DC9064 = { + isa = PBXFileReference; + name = index.html; + path = /Developer/Documentation/Carbon/oss/CarbonEventManager/Carbon_Event_Manager_Ref/index.html; + refType = 0; + }; + F5BE6723029B6FEE01DC9064 = { + isa = PBXFileReference; + name = index.html; + path = /Developer/Documentation/Carbon/oss/CarbonEventManager/Carbon_Event_Manager_Ref/index.html; + refType = 0; + }; + F5BFE59402F984FA01DC9062 = { + isa = PBXTargetBookmark; + trg = F53755DF016C38D201DC9062; + }; + F5BFE59502F984FA01DC9062 = { + fRef = F53755BC016C389901DC9062; + isa = PBXTextBookmark; + name = "tkTest.c: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 1168; + vrLoc = 0; + }; + F5BFE59602F984FA01DC9062 = { + fRef = F5BFE58C02F8C41501DC9062; + isa = PBXTextBookmark; + name = "tkUndo.c: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 723; + vrLoc = 0; + }; + F5BFE59702F984FA01DC9062 = { + fRef = F5BFE58F02F8C45B01DC9062; + isa = PBXTextBookmark; + name = "tkUndo.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 1028; + vrLoc = 0; + }; + F5BFE59802F984FA01DC9062 = { + fRef = F5375575016C37A601DC9062; + isa = PBXTextBookmark; + name = "tkIntDecls.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 959; + vrLoc = 52384; + }; + F5BFE59902F984FA01DC9062 = { + fRef = F537556A016C37A601DC9062; + isa = PBXTextBookmark; + name = "ks_names.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 963; + vrLoc = 0; + }; + F5BFE59B02F984FA01DC9062 = { + fRef = F537559F016C389901DC9062; + isa = PBXTextBookmark; + name = "tkGet.c: Tk_GetUid"; + rLen = 50; + rLoc = 13445; + rType = 0; + vrLen = 1360; + vrLoc = 12671; + }; + F5BFE59C02F984FA01DC9062 = { + fRef = F5375545016C376E01DC9062; + isa = PBXTextBookmark; + name = "tkMacOSXWm.h: 104"; + rLen = 6; + rLoc = 4294; + rType = 0; + vrLen = 1558; + vrLoc = 8742; + }; + F5BFE59D02F984FA01DC9062 = { + fRef = F537556B016C37A601DC9062; + isa = PBXTextBookmark; + name = "tk.h: 1606"; + rLen = 0; + rLoc = 56812; + rType = 0; + vrLen = 897; + vrLoc = 55983; + }; + F5BFE59E02F984FA01DC9062 = { + exec = F53756AB016C4DD401DC9062; + isa = PBXExecutableBookmark; + }; + F5BFE59F02F984FA01DC9062 = { + fRef = F5BFE5E102F984FA01DC9062; + isa = PBXBookmark; + }; + F5BFE5A002F984FA01DC9062 = { + fRef = F5BFE5DA02F984FA01DC9062; + isa = PBXBookmark; + }; + F5BFE5A102F984FA01DC9062 = { + fRef = F5BFE5DC02F984FA01DC9062; + isa = PBXBookmark; + }; + F5BFE5A202F984FA01DC9062 = { + fRef = F5BFE5DB02F984FA01DC9062; + isa = PBXBookmark; + }; + F5BFE5A402F984FA01DC9062 = { + fRef = F5BFE5DD02F984FA01DC9062; + isa = PBXBookmark; + }; + F5BFE5A502F984FA01DC9062 = { + fRef = F5375567016C376E01DC9062; + isa = PBXTextBookmark; + name = "tkMacOSXWm.c: TkUnsupported1Cmd"; + rLen = 15; + rLoc = 148454; + rType = 0; + vrLen = 1386; + vrLoc = 112609; + }; + F5BFE5A602F984FA01DC9062 = { + fRef = F5375568016C376E01DC9062; + isa = PBXTextBookmark; + name = "tkMacOSXXStubs.c: TkpCloseDisplay"; + rLen = 0; + rLoc = 5311; + rType = 0; + vrLen = 437; + vrLoc = 4370; + }; + F5BFE5A702F984FA01DC9062 = { + fRef = F53755C8016C389901DC9062; + isa = PBXTextBookmark; + name = "tkWindow.c: TkCloseDisplay"; + rLen = 0; + rLoc = 9153; + rType = 0; + vrLen = 453; + vrLoc = 8833; + }; + F5BFE5A802F984FA01DC9062 = { + fRef = F537555C016C376E01DC9062; + isa = PBXTextBookmark; + name = "tkMacOSXMouseEvent.c: TkMacOSXProcessMouseEvent"; + rLen = 0; + rLoc = 6187; + rType = 0; + vrLen = 742; + vrLoc = 11312; + }; + F5BFE5AA02F984FA01DC9062 = { + isa = PBXTargetBookmark; + trg = F53755DF016C38D201DC9062; + }; + F5BFE5AB02F984FA01DC9062 = { + fRef = F53755BC016C389901DC9062; + isa = PBXTextBookmark; + name = "tkTest.c: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 1168; + vrLoc = 0; + }; + F5BFE5AC02F984FA01DC9062 = { + fRef = F5BFE58C02F8C41501DC9062; + isa = PBXTextBookmark; + name = "tkUndo.c: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 723; + vrLoc = 0; + }; + F5BFE5AD02F984FA01DC9062 = { + fRef = F5BFE58F02F8C45B01DC9062; + isa = PBXTextBookmark; + name = "tkUndo.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 1028; + vrLoc = 0; + }; + F5BFE5AE02F984FA01DC9062 = { + fRef = F5375575016C37A601DC9062; + isa = PBXTextBookmark; + name = "tkIntDecls.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 959; + vrLoc = 52384; + }; + F5BFE5AF02F984FA01DC9062 = { + fRef = F537556A016C37A601DC9062; + isa = PBXTextBookmark; + name = "ks_names.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 963; + vrLoc = 0; + }; + F5BFE5B002F984FA01DC9062 = { + fRef = F537556B016C37A601DC9062; + isa = PBXTextBookmark; + name = "tk.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 882; + vrLoc = 55769; + }; + F5BFE5B202F984FA01DC9062 = { + fRef = F537559F016C389901DC9062; + isa = PBXTextBookmark; + name = "tkGet.c: Tk_GetUid"; + rLen = 50; + rLoc = 13445; + rType = 0; + vrLen = 1360; + vrLoc = 12671; + }; + F5BFE5B302F984FA01DC9062 = { + fRef = F5375545016C376E01DC9062; + isa = PBXTextBookmark; + name = "tkMacOSXWm.h: 104"; + rLen = 6; + rLoc = 4294; + rType = 0; + vrLen = 1558; + vrLoc = 8742; + }; + F5BFE5B402F984FA01DC9062 = { + fRef = F537556B016C37A601DC9062; + isa = PBXTextBookmark; + name = "tk.h: 1606"; + rLen = 0; + rLoc = 56812; + rType = 0; + vrLen = 897; + vrLoc = 55983; + }; + F5BFE5B502F984FA01DC9062 = { + exec = F53756AB016C4DD401DC9062; + isa = PBXExecutableBookmark; + }; + F5BFE5B702F984FA01DC9062 = { + fRef = F5BFE5DF02F984FA01DC9062; + isa = PBXBookmark; + }; + F5BFE5B802F984FA01DC9062 = { + fRef = F5BFE5D902F984FA01DC9062; + isa = PBXBookmark; + }; + F5BFE5B902F984FA01DC9062 = { + fRef = F5BFE5E502F984FA01DC9062; + isa = PBXBookmark; + }; + F5BFE5BB02F984FA01DC9062 = { + fRef = F5BFE5D802F984FA01DC9062; + isa = PBXBookmark; + }; + F5BFE5BC02F984FA01DC9062 = { + fRef = F5375567016C376E01DC9062; + isa = PBXTextBookmark; + name = "tkMacOSXWm.c: TkUnsupported1Cmd"; + rLen = 15; + rLoc = 148454; + rType = 0; + vrLen = 1386; + vrLoc = 112609; + }; + F5BFE5BD02F984FA01DC9062 = { + fRef = F5375568016C376E01DC9062; + isa = PBXTextBookmark; + name = "tkMacOSXXStubs.c: 92"; + rLen = 14; + rLoc = 2403; + rType = 0; + vrLen = 1501; + vrLoc = 2945; + }; + F5BFE5BE02F984FA01DC9062 = { + fRef = F53755C8016C389901DC9062; + isa = PBXTextBookmark; + name = "tkWindow.c: DeleteWindowsExitProc"; + rLen = 0; + rLoc = 79080; + rType = 0; + vrLen = 1549; + vrLoc = 78212; + }; + F5BFE5BF02F984FA01DC9062 = { + fRef = F5375568016C376E01DC9062; + isa = PBXTextBookmark; + name = "tkMacOSXXStubs.c: TkpCloseDisplay"; + rLen = 0; + rLoc = 5311; + rType = 0; + vrLen = 437; + vrLoc = 4370; + }; + F5BFE5C002F984FA01DC9062 = { + fRef = F53755C8016C389901DC9062; + isa = PBXTextBookmark; + name = "tkWindow.c: TkCloseDisplay"; + rLen = 0; + rLoc = 9153; + rType = 0; + vrLen = 453; + vrLoc = 8833; + }; + F5BFE5C102F984FA01DC9062 = { + fRef = F537555C016C376E01DC9062; + isa = PBXTextBookmark; + name = "tkMacOSXMouseEvent.c: TkMacOSXProcessMouseEvent"; + rLen = 0; + rLoc = 6187; + rType = 0; + vrLen = 742; + vrLoc = 11312; + }; + F5BFE5C402F984FA01DC9062 = { + fRef = F5375568016C376E01DC9062; + isa = PBXTextBookmark; + name = "tkMacOSXXStubs.c: TkpCloseDisplay"; + rLen = 0; + rLoc = 5311; + rType = 0; + vrLen = 500; + vrLoc = 4894; + }; + F5BFE5D802F984FA01DC9062 = { + isa = PBXFileReference; + name = README.html; + path = /Developer/Documentation/Help/README/README.html; + refType = 0; + }; + F5BFE5D902F984FA01DC9062 = { + isa = PBXFileReference; + name = index.html; + path = /Developer/Documentation/ReleaseNotes/index.html; + refType = 0; + }; + F5BFE5DA02F984FA01DC9062 = { + isa = PBXFileReference; + name = devessentials.html; + path = /Developer/Documentation/Essentials/devessentials.html; + refType = 0; + }; + F5BFE5DB02F984FA01DC9062 = { + isa = PBXFileReference; + name = index.html; + path = /Developer/Documentation/ReleaseNotes/index.html; + refType = 0; + }; + F5BFE5DC02F984FA01DC9062 = { + isa = PBXFileReference; + name = MallocOptions.html; + path = /Developer/Documentation/ReleaseNotes/MallocOptions.html; + refType = 0; + }; + F5BFE5DD02F984FA01DC9062 = { + isa = PBXFileReference; + name = README.html; + path = /Developer/Documentation/Help/README/README.html; + refType = 0; + }; + F5BFE5DF02F984FA01DC9062 = { + isa = PBXFileReference; + name = devessentials.html; + path = /Developer/Documentation/Essentials/devessentials.html; + refType = 0; + }; + F5BFE5E102F984FA01DC9062 = { + isa = PBXFileReference; + name = devtools.html; + path = /Developer/Documentation/DeveloperTools/devtools.html; + refType = 0; + }; + F5BFE5E502F984FA01DC9062 = { + isa = PBXFileReference; + name = README.html; + path = /Developer/Documentation/Help/README/README.html; + refType = 0; + }; +} diff --git a/macosx/Wish.pbproj/project.pbxproj b/macosx/Wish.pbproj/project.pbxproj new file mode 100644 index 0000000..b3a7b98 --- /dev/null +++ b/macosx/Wish.pbproj/project.pbxproj @@ -0,0 +1,3593 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 38; + objects = { + F50D96120196176E01DC9062 = { + isa = PBXFrameworkReference; + name = ApplicationServices.framework; + path = /System/Library/Frameworks/ApplicationServices.framework; + refType = 0; + }; + F50D96130196176E01DC9062 = { + fileRef = F50D96120196176E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F50D96140196176E01DC9062 = { + fileRef = F50D96120196176E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F51D903E0181474301DC9062 = { + fileRef = F5875C7B016FEF1D01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F51D903F018149BD01DC9062 = { + buildActionMask = 2147483647; + dstPath = "Versions/$(FRAMEWORK_VERSION)/Headers/X11"; + dstSubfolderSpec = 1; + files = ( + F51D9040018149FD01DC9062, + F51D9041018149FD01DC9062, + F51D9042018149FD01DC9062, + F51D9043018149FD01DC9062, + F51D9044018149FD01DC9062, + F51D9045018149FD01DC9062, + F51D9046018149FD01DC9062, + F51D9047018149FD01DC9062, + F51D9048018149FD01DC9062, + ); + isa = PBXCopyFilesBuildPhase; + runOnlyForDeploymentPostprocessing = 0; + }; + F51D9040018149FD01DC9062 = { + fileRef = F53755CE016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F51D9041018149FD01DC9062 = { + fileRef = F53755CF016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F51D9042018149FD01DC9062 = { + fileRef = F53755D0016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F51D9043018149FD01DC9062 = { + fileRef = F53755D1016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F51D9044018149FD01DC9062 = { + fileRef = F53755D2016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F51D9045018149FD01DC9062 = { + fileRef = F53755D3016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F51D9046018149FD01DC9062 = { + fileRef = F53755D4016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F51D9047018149FD01DC9062 = { + fileRef = F53755D5016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F51D9048018149FD01DC9062 = { + fileRef = F53755D6016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F52D38C5031F4259016F146B = { + buildActionMask = 2147483647; + files = ( + ); + generatedFileNames = ( + ); + isa = PBXShellScriptBuildPhase; + neededFileNames = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "if [ \"${BUILD_STYLE}\" = \"Development\" ]; then\n\t# keep copy of debug library around, so that\n\t# Deployment build can be installed on top\n\t# of Development build without overwriting it\n\tcd \"${TARGET_BUILD_DIR}/${PRODUCT_NAME}.${WRAPPER_EXTENSION}/Versions/${FRAMEWORK_VERSION}\"\n\tcp -fp \"${PRODUCT_NAME}\" \"${PRODUCT_NAME}_debug\"\n\n\t# force Deployment build to be relinked next time\n\tif [ -f \"${OBJROOT}/Deployment.build/${PROJECT_NAME}.build/${TARGET_NAME}.build/Objects-normal/LinkFileList\" ]; then\n\t touch -t `date -r \\`expr \\\\\\`date +\"%s\"\\\\\\` + 30\\` +\"%G%m%d%H%M.%S\"` \"${OBJROOT}/Deployment.build/${PROJECT_NAME}.build/${TARGET_NAME}.build/Objects-normal/LinkFileList\"\n\tfi\nelse\n\t# force Development build to be relinked next time\n\tif [ -f \"${OBJROOT}/Development.build/${PROJECT_NAME}.build/${TARGET_NAME}.build/Objects-normal/LinkFileList\" ]; then\n\t touch -t `date -r \\`expr \\\\\\`date +\"%s\"\\\\\\` + 30\\` +\"%G%m%d%H%M.%S\"` \"${OBJROOT}/Development.build/${PROJECT_NAME}.build/${TARGET_NAME}.build/Objects-normal/LinkFileList\"\n\tfi\nfi"; + }; + F537552A016C352C01DC9062 = { + buildStyles = ( + F537552C016C352C01DC9062, + F537552D016C352C01DC9062, + ); + isa = PBXProject; + mainGroup = F537552B016C352C01DC9062; + productRefGroup = F53755DD016C38D201DC9062; + projectDirPath = ""; + targets = ( + F53756A0016C4DD401DC9062, + F53755DF016C38D201DC9062, + F548F8CE0313CEF0016F146B, + ); + }; + F537552B016C352C01DC9062 = { + children = ( + F5C88659017D625C01DC9062, + F5DF07A7016CD03801DC9062, + F5375688016C3F1001DC9062, + F5375531016C376E01DC9062, + F537552E016C376E01DC9062, + F537553C016C376E01DC9062, + F53755C9016C389901DC9062, + F53755CC016C389901DC9062, + F537567C016C3ADB01DC9062, + F53755DD016C38D201DC9062, + ); + isa = PBXGroup; + refType = 4; + }; + F537552C016C352C01DC9062 = { + buildRules = ( + ); + buildSettings = { + TEMP_DIR = "${OBJROOT}/Development.build/$(PROJECT_NAME).build/$(TARGET_NAME).build"; + UNSTRIPPED_PRODUCT = YES; + }; + isa = PBXBuildStyle; + name = Development; + }; + F537552D016C352C01DC9062 = { + buildRules = ( + ); + buildSettings = { + DEBUGGING_SYMBOLS = NO; + OPTIMIZATION_CFLAGS = "-Os"; + TEMP_DIR = "${OBJROOT}/Deployment.build/$(PROJECT_NAME).build/$(TARGET_NAME).build"; + }; + isa = PBXBuildStyle; + name = Deployment; + }; + F537552E016C376E01DC9062 = { + children = ( + F537552F016C376E01DC9062, + F5375530016C376E01DC9062, + ); + isa = PBXGroup; + name = Generic; + refType = 4; + }; + F537552F016C376E01DC9062 = { + children = ( + F5375569016C37A601DC9062, + F537556A016C37A601DC9062, + F537556B016C37A601DC9062, + F537556C016C37A601DC9062, + F537556D016C37A601DC9062, + F537556E016C37A601DC9062, + F537556F016C37A601DC9062, + F5375570016C37A601DC9062, + F5375571016C37A601DC9062, + F5375572016C37A601DC9062, + F5375573016C37A601DC9062, + F5375574016C37A601DC9062, + F5375575016C37A601DC9062, + F5375576016C37A601DC9062, + F5375577016C37A601DC9062, + F5375578016C37A601DC9062, + F5375579016C37A601DC9062, + F537557A016C37A601DC9062, + F537557B016C37A601DC9062, + F537557C016C37A601DC9062, + F537557D016C37A601DC9062, + F537557E016C37A601DC9062, + F537557F016C37A601DC9062, + F5BFE58F02F8C45B01DC9062, + ); + isa = PBXGroup; + name = Headers; + refType = 4; + }; + F5375530016C376E01DC9062 = { + children = ( + F5375580016C389901DC9062, + F5375581016C389901DC9062, + F5375582016C389901DC9062, + F5375583016C389901DC9062, + F5375584016C389901DC9062, + F5375585016C389901DC9062, + F5375586016C389901DC9062, + F5375587016C389901DC9062, + F5375588016C389901DC9062, + F5375589016C389901DC9062, + F537558A016C389901DC9062, + F537558B016C389901DC9062, + F537558C016C389901DC9062, + F537558D016C389901DC9062, + F537558E016C389901DC9062, + F537558F016C389901DC9062, + F5375590016C389901DC9062, + F5375591016C389901DC9062, + F5375592016C389901DC9062, + F5375593016C389901DC9062, + F5375594016C389901DC9062, + F5375595016C389901DC9062, + F5375596016C389901DC9062, + F5375597016C389901DC9062, + F5375598016C389901DC9062, + F5375599016C389901DC9062, + F537559A016C389901DC9062, + F537559B016C389901DC9062, + F537559C016C389901DC9062, + F537559D016C389901DC9062, + F537559E016C389901DC9062, + F537559F016C389901DC9062, + F53755A0016C389901DC9062, + F53755A1016C389901DC9062, + F53755A2016C389901DC9062, + F53755A3016C389901DC9062, + F53755A4016C389901DC9062, + F53755A5016C389901DC9062, + F53755A6016C389901DC9062, + F53755A7016C389901DC9062, + F53755A8016C389901DC9062, + F53755A9016C389901DC9062, + F53755AA016C389901DC9062, + F53755AB016C389901DC9062, + F53755AC016C389901DC9062, + F53755AD016C389901DC9062, + F53755AE016C389901DC9062, + F53755AF016C389901DC9062, + F53755B0016C389901DC9062, + F53755B1016C389901DC9062, + F53755B2016C389901DC9062, + F55BC46802B2D38B01DC9062, + F53755B3016C389901DC9062, + F53755B4016C389901DC9062, + F53755B5016C389901DC9062, + F53755B6016C389901DC9062, + F53755B7016C389901DC9062, + F53755B8016C389901DC9062, + F53755B9016C389901DC9062, + F53755BA016C389901DC9062, + F53755BB016C389901DC9062, + F5BFE58B02F8C41501DC9062, + F53755BC016C389901DC9062, + F53755BD016C389901DC9062, + F53755BE016C389901DC9062, + F53755BF016C389901DC9062, + F53755C0016C389901DC9062, + F53755C1016C389901DC9062, + F53755C2016C389901DC9062, + F53755C3016C389901DC9062, + F53755C4016C389901DC9062, + F53755C5016C389901DC9062, + F5BFE58C02F8C41501DC9062, + F53755C6016C389901DC9062, + F53755C7016C389901DC9062, + F53755C8016C389901DC9062, + ); + isa = PBXGroup; + name = Source; + refType = 4; + }; + F5375531016C376E01DC9062 = { + children = ( + F5375532016C376E01DC9062, + F537553B016C376E01DC9062, + ); + isa = PBXGroup; + name = Resources; + refType = 4; + }; + F5375532016C376E01DC9062 = { + children = ( + F5375533016C376E01DC9062, + F5375534016C376E01DC9062, + F5375535016C376E01DC9062, + F5375536016C376E01DC9062, + F5375538016C376E01DC9062, + F5375539016C376E01DC9062, + F537553A016C376E01DC9062, + ); + isa = PBXGroup; + name = "Resource Manager Resources"; + refType = 4; + }; + F5375533016C376E01DC9062 = { + isa = PBXFileReference; + path = tkAboutDlg.r; + refType = 4; + }; + F5375534016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXApplication.r; + refType = 4; + }; + F5375535016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXCursors.r; + refType = 4; + }; + F5375536016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXLibrary.r; + refType = 4; + }; + F5375538016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXMenu.r; + refType = 4; + }; + F5375539016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXResource.r; + refType = 4; + }; + F537553A016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXXCursors.r; + refType = 4; + }; + F537553B016C376E01DC9062 = { + isa = PBXFileReference; + path = Wish.icns; + refType = 4; + }; + F537553C016C376E01DC9062 = { + children = ( + F537553D016C376E01DC9062, + F5375546016C376E01DC9062, + ); + isa = PBXGroup; + name = "MacOS X"; + refType = 4; + }; + F537553D016C376E01DC9062 = { + children = ( + F537553E016C376E01DC9062, + F537553F016C376E01DC9062, + F5375540016C376E01DC9062, + F5375541016C376E01DC9062, + F5375542016C376E01DC9062, + F5375543016C376E01DC9062, + F5375544016C376E01DC9062, + F5375545016C376E01DC9062, + ); + isa = PBXGroup; + name = Headers; + refType = 4; + }; + F537553E016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSX.h; + refType = 2; + }; + F537553F016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXDebug.h; + refType = 2; + }; + F5375540016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXDefault.h; + refType = 2; + }; + F5375541016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXEvent.h; + refType = 2; + }; + F5375542016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXInt.h; + refType = 2; + }; + F5375543016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXPort.h; + refType = 2; + }; + F5375544016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXUtil.h; + refType = 2; + }; + F5375545016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXWm.h; + refType = 2; + }; + F5375546016C376E01DC9062 = { + children = ( + F5375548016C376E01DC9062, + F5375549016C376E01DC9062, + F537554A016C376E01DC9062, + F537554B016C376E01DC9062, + F537554C016C376E01DC9062, + F537554D016C376E01DC9062, + F537554E016C376E01DC9062, + F537554F016C376E01DC9062, + F5375550016C376E01DC9062, + F5375551016C376E01DC9062, + F5375552016C376E01DC9062, + F5375553016C376E01DC9062, + F5375554016C376E01DC9062, + F5375555016C376E01DC9062, + F5375556016C376E01DC9062, + F5375557016C376E01DC9062, + F5375558016C376E01DC9062, + F5375559016C376E01DC9062, + F537555A016C376E01DC9062, + F537555B016C376E01DC9062, + F537555C016C376E01DC9062, + F537555D016C376E01DC9062, + F537555E016C376E01DC9062, + F5375560016C376E01DC9062, + F5375561016C376E01DC9062, + F5375562016C376E01DC9062, + F5375563016C376E01DC9062, + F5375564016C376E01DC9062, + F5375565016C376E01DC9062, + F5375567016C376E01DC9062, + F5375568016C376E01DC9062, + ); + isa = PBXGroup; + name = Source; + refType = 4; + }; + F5375548016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXAppInit.c; + refType = 4; + }; + F5375549016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXBitmap.c; + refType = 4; + }; + F537554A016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXButton.c; + refType = 4; + }; + F537554B016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXClipboard.c; + refType = 4; + }; + F537554C016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXColor.c; + refType = 4; + }; + F537554D016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXConfig.c; + refType = 4; + }; + F537554E016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXCursor.c; + refType = 4; + }; + F537554F016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXDebug.c; + refType = 4; + }; + F5375550016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXDialog.c; + refType = 4; + }; + F5375551016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXDraw.c; + refType = 4; + }; + F5375552016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXEmbed.c; + refType = 4; + }; + F5375553016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXEvent.c; + refType = 4; + }; + F5375554016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXFont.c; + refType = 4; + }; + F5375555016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXHLEvents.c; + refType = 4; + }; + F5375556016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXInit.c; + refType = 4; + }; + F5375557016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXKeyboard.c; + refType = 4; + }; + F5375558016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXKeyEvent.c; + refType = 4; + }; + F5375559016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXMenu.c; + refType = 4; + }; + F537555A016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXMenubutton.c; + refType = 4; + }; + F537555B016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXMenus.c; + refType = 4; + }; + F537555C016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXMouseEvent.c; + refType = 4; + }; + F537555D016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXNotify.c; + refType = 4; + }; + F537555E016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXRegion.c; + refType = 4; + }; + F5375560016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXScrlbr.c; + refType = 4; + }; + F5375561016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXSend.c; + refType = 4; + }; + F5375562016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXSubwindows.c; + refType = 4; + }; + F5375563016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXTest.c; + refType = 4; + }; + F5375564016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXUtil.c; + refType = 4; + }; + F5375565016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXWindowEvent.c; + refType = 4; + }; + F5375567016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXWm.c; + refType = 4; + }; + F5375568016C376E01DC9062 = { + isa = PBXFileReference; + path = tkMacOSXXStubs.c; + refType = 4; + }; + F5375569016C37A601DC9062 = { + isa = PBXFileReference; + name = default.h; + path = ../generic/default.h; + refType = 2; + }; + F537556A016C37A601DC9062 = { + isa = PBXFileReference; + name = ks_names.h; + path = ../generic/ks_names.h; + refType = 2; + }; + F537556B016C37A601DC9062 = { + isa = PBXFileReference; + name = tk.h; + path = ../generic/tk.h; + refType = 2; + }; + F537556C016C37A601DC9062 = { + isa = PBXFileReference; + name = tk3d.h; + path = ../generic/tk3d.h; + refType = 2; + }; + F537556D016C37A601DC9062 = { + isa = PBXFileReference; + name = tkButton.h; + path = ../generic/tkButton.h; + refType = 2; + }; + F537556E016C37A601DC9062 = { + isa = PBXFileReference; + name = tkCanvas.h; + path = ../generic/tkCanvas.h; + refType = 2; + }; + F537556F016C37A601DC9062 = { + isa = PBXFileReference; + name = tkColor.h; + path = ../generic/tkColor.h; + refType = 2; + }; + F5375570016C37A601DC9062 = { + isa = PBXFileReference; + name = tkDecls.h; + path = ../generic/tkDecls.h; + refType = 2; + }; + F5375571016C37A601DC9062 = { + isa = PBXFileReference; + name = tkFileFilter.h; + path = ../generic/tkFileFilter.h; + refType = 2; + }; + F5375572016C37A601DC9062 = { + isa = PBXFileReference; + name = tkFont.h; + path = ../generic/tkFont.h; + refType = 2; + }; + F5375573016C37A601DC9062 = { + isa = PBXFileReference; + name = tkInitScript.h; + path = ../generic/tkInitScript.h; + refType = 2; + }; + F5375574016C37A601DC9062 = { + isa = PBXFileReference; + name = tkInt.h; + path = ../generic/tkInt.h; + refType = 2; + }; + F5375575016C37A601DC9062 = { + isa = PBXFileReference; + name = tkIntDecls.h; + path = ../generic/tkIntDecls.h; + refType = 2; + }; + F5375576016C37A601DC9062 = { + isa = PBXFileReference; + name = tkIntPlatDecls.h; + path = ../generic/tkIntPlatDecls.h; + refType = 2; + }; + F5375577016C37A601DC9062 = { + isa = PBXFileReference; + name = tkIntXlibDecls.h; + path = ../generic/tkIntXlibDecls.h; + refType = 2; + }; + F5375578016C37A601DC9062 = { + isa = PBXFileReference; + name = tkMenu.h; + path = ../generic/tkMenu.h; + refType = 2; + }; + F5375579016C37A601DC9062 = { + isa = PBXFileReference; + name = tkMenubutton.h; + path = ../generic/tkMenubutton.h; + refType = 2; + }; + F537557A016C37A601DC9062 = { + isa = PBXFileReference; + name = tkPlatDecls.h; + path = ../generic/tkPlatDecls.h; + refType = 2; + }; + F537557B016C37A601DC9062 = { + isa = PBXFileReference; + name = tkPort.h; + path = ../generic/tkPort.h; + refType = 2; + }; + F537557C016C37A601DC9062 = { + isa = PBXFileReference; + name = tkScale.h; + path = ../generic/tkScale.h; + refType = 2; + }; + F537557D016C37A601DC9062 = { + isa = PBXFileReference; + name = tkScrollbar.h; + path = ../generic/tkScrollbar.h; + refType = 2; + }; + F537557E016C37A601DC9062 = { + isa = PBXFileReference; + name = tkSelect.h; + path = ../generic/tkSelect.h; + refType = 2; + }; + F537557F016C37A601DC9062 = { + isa = PBXFileReference; + name = tkText.h; + path = ../generic/tkText.h; + refType = 2; + }; + F5375580016C389901DC9062 = { + isa = PBXFileReference; + name = tk3d.c; + path = ../generic/tk3d.c; + refType = 2; + }; + F5375581016C389901DC9062 = { + isa = PBXFileReference; + name = tkArgv.c; + path = ../generic/tkArgv.c; + refType = 2; + }; + F5375582016C389901DC9062 = { + isa = PBXFileReference; + name = tkAtom.c; + path = ../generic/tkAtom.c; + refType = 2; + }; + F5375583016C389901DC9062 = { + isa = PBXFileReference; + name = tkBind.c; + path = ../generic/tkBind.c; + refType = 2; + }; + F5375584016C389901DC9062 = { + isa = PBXFileReference; + name = tkBitmap.c; + path = ../generic/tkBitmap.c; + refType = 2; + }; + F5375585016C389901DC9062 = { + isa = PBXFileReference; + name = tkButton.c; + path = ../generic/tkButton.c; + refType = 2; + }; + F5375586016C389901DC9062 = { + isa = PBXFileReference; + name = tkCanvArc.c; + path = ../generic/tkCanvArc.c; + refType = 2; + }; + F5375587016C389901DC9062 = { + isa = PBXFileReference; + name = tkCanvas.c; + path = ../generic/tkCanvas.c; + refType = 2; + }; + F5375588016C389901DC9062 = { + isa = PBXFileReference; + name = tkCanvBmap.c; + path = ../generic/tkCanvBmap.c; + refType = 2; + }; + F5375589016C389901DC9062 = { + isa = PBXFileReference; + name = tkCanvImg.c; + path = ../generic/tkCanvImg.c; + refType = 2; + }; + F537558A016C389901DC9062 = { + isa = PBXFileReference; + name = tkCanvLine.c; + path = ../generic/tkCanvLine.c; + refType = 2; + }; + F537558B016C389901DC9062 = { + isa = PBXFileReference; + name = tkCanvPoly.c; + path = ../generic/tkCanvPoly.c; + refType = 2; + }; + F537558C016C389901DC9062 = { + isa = PBXFileReference; + name = tkCanvPs.c; + path = ../generic/tkCanvPs.c; + refType = 2; + }; + F537558D016C389901DC9062 = { + isa = PBXFileReference; + name = tkCanvText.c; + path = ../generic/tkCanvText.c; + refType = 2; + }; + F537558E016C389901DC9062 = { + isa = PBXFileReference; + name = tkCanvUtil.c; + path = ../generic/tkCanvUtil.c; + refType = 2; + }; + F537558F016C389901DC9062 = { + isa = PBXFileReference; + name = tkCanvWind.c; + path = ../generic/tkCanvWind.c; + refType = 2; + }; + F5375590016C389901DC9062 = { + isa = PBXFileReference; + name = tkClipboard.c; + path = ../generic/tkClipboard.c; + refType = 2; + }; + F5375591016C389901DC9062 = { + isa = PBXFileReference; + name = tkCmds.c; + path = ../generic/tkCmds.c; + refType = 2; + }; + F5375592016C389901DC9062 = { + isa = PBXFileReference; + name = tkColor.c; + path = ../generic/tkColor.c; + refType = 2; + }; + F5375593016C389901DC9062 = { + isa = PBXFileReference; + name = tkConfig.c; + path = ../generic/tkConfig.c; + refType = 2; + }; + F5375594016C389901DC9062 = { + isa = PBXFileReference; + name = tkConsole.c; + path = ../generic/tkConsole.c; + refType = 2; + }; + F5375595016C389901DC9062 = { + isa = PBXFileReference; + name = tkCursor.c; + path = ../generic/tkCursor.c; + refType = 2; + }; + F5375596016C389901DC9062 = { + isa = PBXFileReference; + name = tkEntry.c; + path = ../generic/tkEntry.c; + refType = 2; + }; + F5375597016C389901DC9062 = { + isa = PBXFileReference; + name = tkError.c; + path = ../generic/tkError.c; + refType = 2; + }; + F5375598016C389901DC9062 = { + isa = PBXFileReference; + name = tkEvent.c; + path = ../generic/tkEvent.c; + refType = 2; + }; + F5375599016C389901DC9062 = { + isa = PBXFileReference; + name = tkFileFilter.c; + path = ../generic/tkFileFilter.c; + refType = 2; + }; + F537559A016C389901DC9062 = { + isa = PBXFileReference; + name = tkFocus.c; + path = ../generic/tkFocus.c; + refType = 2; + }; + F537559B016C389901DC9062 = { + isa = PBXFileReference; + name = tkFont.c; + path = ../generic/tkFont.c; + refType = 2; + }; + F537559C016C389901DC9062 = { + isa = PBXFileReference; + name = tkFrame.c; + path = ../generic/tkFrame.c; + refType = 2; + }; + F537559D016C389901DC9062 = { + isa = PBXFileReference; + name = tkGC.c; + path = ../generic/tkGC.c; + refType = 2; + }; + F537559E016C389901DC9062 = { + isa = PBXFileReference; + name = tkGeometry.c; + path = ../generic/tkGeometry.c; + refType = 2; + }; + F537559F016C389901DC9062 = { + isa = PBXFileReference; + name = tkGet.c; + path = ../generic/tkGet.c; + refType = 2; + }; + F53755A0016C389901DC9062 = { + isa = PBXFileReference; + name = tkGrab.c; + path = ../generic/tkGrab.c; + refType = 2; + }; + F53755A1016C389901DC9062 = { + isa = PBXFileReference; + name = tkGrid.c; + path = ../generic/tkGrid.c; + refType = 2; + }; + F53755A2016C389901DC9062 = { + isa = PBXFileReference; + name = tkImage.c; + path = ../generic/tkImage.c; + refType = 2; + }; + F53755A3016C389901DC9062 = { + isa = PBXFileReference; + name = tkImgBmap.c; + path = ../generic/tkImgBmap.c; + refType = 2; + }; + F53755A4016C389901DC9062 = { + isa = PBXFileReference; + name = tkImgGIF.c; + path = ../generic/tkImgGIF.c; + refType = 2; + }; + F53755A5016C389901DC9062 = { + isa = PBXFileReference; + name = tkImgPhoto.c; + path = ../generic/tkImgPhoto.c; + refType = 2; + }; + F53755A6016C389901DC9062 = { + isa = PBXFileReference; + name = tkImgPPM.c; + path = ../generic/tkImgPPM.c; + refType = 2; + }; + F53755A7016C389901DC9062 = { + isa = PBXFileReference; + name = tkImgUtil.c; + path = ../generic/tkImgUtil.c; + refType = 2; + }; + F53755A8016C389901DC9062 = { + isa = PBXFileReference; + name = tkListbox.c; + path = ../generic/tkListbox.c; + refType = 2; + }; + F53755A9016C389901DC9062 = { + isa = PBXFileReference; + name = tkMacWinMenu.c; + path = ../generic/tkMacWinMenu.c; + refType = 2; + }; + F53755AA016C389901DC9062 = { + isa = PBXFileReference; + name = tkMain.c; + path = ../generic/tkMain.c; + refType = 2; + }; + F53755AB016C389901DC9062 = { + isa = PBXFileReference; + name = tkMenu.c; + path = ../generic/tkMenu.c; + refType = 2; + }; + F53755AC016C389901DC9062 = { + isa = PBXFileReference; + name = tkMenubutton.c; + path = ../generic/tkMenubutton.c; + refType = 2; + }; + F53755AD016C389901DC9062 = { + isa = PBXFileReference; + name = tkMenuDraw.c; + path = ../generic/tkMenuDraw.c; + refType = 2; + }; + F53755AE016C389901DC9062 = { + isa = PBXFileReference; + name = tkMessage.c; + path = ../generic/tkMessage.c; + refType = 2; + }; + F53755AF016C389901DC9062 = { + isa = PBXFileReference; + name = tkObj.c; + path = ../generic/tkObj.c; + refType = 2; + }; + F53755B0016C389901DC9062 = { + isa = PBXFileReference; + name = tkOldConfig.c; + path = ../generic/tkOldConfig.c; + refType = 2; + }; + F53755B1016C389901DC9062 = { + isa = PBXFileReference; + name = tkOption.c; + path = ../generic/tkOption.c; + refType = 2; + }; + F53755B2016C389901DC9062 = { + isa = PBXFileReference; + name = tkPack.c; + path = ../generic/tkPack.c; + refType = 2; + }; + F53755B3016C389901DC9062 = { + isa = PBXFileReference; + name = tkPlace.c; + path = ../generic/tkPlace.c; + refType = 2; + }; + F53755B4016C389901DC9062 = { + isa = PBXFileReference; + name = tkPointer.c; + path = ../generic/tkPointer.c; + refType = 2; + }; + F53755B5016C389901DC9062 = { + isa = PBXFileReference; + name = tkRectOval.c; + path = ../generic/tkRectOval.c; + refType = 2; + }; + F53755B6016C389901DC9062 = { + isa = PBXFileReference; + name = tkScale.c; + path = ../generic/tkScale.c; + refType = 2; + }; + F53755B7016C389901DC9062 = { + isa = PBXFileReference; + name = tkScrollbar.c; + path = ../generic/tkScrollbar.c; + refType = 2; + }; + F53755B8016C389901DC9062 = { + isa = PBXFileReference; + name = tkSelect.c; + path = ../generic/tkSelect.c; + refType = 2; + }; + F53755B9016C389901DC9062 = { + isa = PBXFileReference; + name = tkStubImg.c; + path = ../generic/tkStubImg.c; + refType = 2; + }; + F53755BA016C389901DC9062 = { + isa = PBXFileReference; + name = tkStubInit.c; + path = ../generic/tkStubInit.c; + refType = 2; + }; + F53755BB016C389901DC9062 = { + isa = PBXFileReference; + name = tkStubLib.c; + path = ../generic/tkStubLib.c; + refType = 2; + }; + F53755BC016C389901DC9062 = { + isa = PBXFileReference; + name = tkTest.c; + path = ../generic/tkTest.c; + refType = 2; + }; + F53755BD016C389901DC9062 = { + isa = PBXFileReference; + name = tkText.c; + path = ../generic/tkText.c; + refType = 2; + }; + F53755BE016C389901DC9062 = { + isa = PBXFileReference; + name = tkTextBTree.c; + path = ../generic/tkTextBTree.c; + refType = 2; + }; + F53755BF016C389901DC9062 = { + isa = PBXFileReference; + name = tkTextDisp.c; + path = ../generic/tkTextDisp.c; + refType = 2; + }; + F53755C0016C389901DC9062 = { + isa = PBXFileReference; + name = tkTextImage.c; + path = ../generic/tkTextImage.c; + refType = 2; + }; + F53755C1016C389901DC9062 = { + isa = PBXFileReference; + name = tkTextIndex.c; + path = ../generic/tkTextIndex.c; + refType = 2; + }; + F53755C2016C389901DC9062 = { + isa = PBXFileReference; + name = tkTextMark.c; + path = ../generic/tkTextMark.c; + refType = 2; + }; + F53755C3016C389901DC9062 = { + isa = PBXFileReference; + name = tkTextTag.c; + path = ../generic/tkTextTag.c; + refType = 2; + }; + F53755C4016C389901DC9062 = { + isa = PBXFileReference; + name = tkTextWind.c; + path = ../generic/tkTextWind.c; + refType = 2; + }; + F53755C5016C389901DC9062 = { + isa = PBXFileReference; + name = tkTrig.c; + path = ../generic/tkTrig.c; + refType = 2; + }; + F53755C6016C389901DC9062 = { + isa = PBXFileReference; + name = tkUtil.c; + path = ../generic/tkUtil.c; + refType = 2; + }; + F53755C7016C389901DC9062 = { + isa = PBXFileReference; + name = tkVisual.c; + path = ../generic/tkVisual.c; + refType = 2; + }; + F53755C8016C389901DC9062 = { + isa = PBXFileReference; + name = tkWindow.c; + path = ../generic/tkWindow.c; + refType = 2; + }; + F53755C9016C389901DC9062 = { + children = ( + F53755CA016C389901DC9062, + F53755CB016C389901DC9062, + ); + isa = PBXGroup; + name = Unix; + refType = 4; + }; + F53755CA016C389901DC9062 = { + isa = PBXFileReference; + name = tkUnix3d.c; + path = ../unix/tkUnix3d.c; + refType = 2; + }; + F53755CB016C389901DC9062 = { + isa = PBXFileReference; + name = tkUnixScale.c; + path = ../unix/tkUnixScale.c; + refType = 2; + }; + F53755CC016C389901DC9062 = { + children = ( + F53755CD016C389901DC9062, + F53755D7016C389901DC9062, + ); + isa = PBXGroup; + name = "X Emulation"; + refType = 4; + }; + F53755CD016C389901DC9062 = { + children = ( + F53755CE016C389901DC9062, + F53755CF016C389901DC9062, + F53755D0016C389901DC9062, + F53755D1016C389901DC9062, + F53755D2016C389901DC9062, + F53755D3016C389901DC9062, + F53755D4016C389901DC9062, + F53755D5016C389901DC9062, + F53755D6016C389901DC9062, + ); + isa = PBXGroup; + name = Headers; + refType = 4; + }; + F53755CE016C389901DC9062 = { + isa = PBXFileReference; + name = xbytes.h; + path = ../xlib/xbytes.h; + refType = 2; + }; + F53755CF016C389901DC9062 = { + isa = PBXFileReference; + name = cursorfont.h; + path = ../xlib/X11/cursorfont.h; + refType = 2; + }; + F53755D0016C389901DC9062 = { + isa = PBXFileReference; + name = keysym.h; + path = ../xlib/X11/keysym.h; + refType = 2; + }; + F53755D1016C389901DC9062 = { + isa = PBXFileReference; + name = keysymdef.h; + path = ../xlib/X11/keysymdef.h; + refType = 2; + }; + F53755D2016C389901DC9062 = { + isa = PBXFileReference; + name = X.h; + path = ../xlib/X11/X.h; + refType = 2; + }; + F53755D3016C389901DC9062 = { + isa = PBXFileReference; + name = Xatom.h; + path = ../xlib/X11/Xatom.h; + refType = 2; + }; + F53755D4016C389901DC9062 = { + isa = PBXFileReference; + name = Xfuncproto.h; + path = ../xlib/X11/Xfuncproto.h; + refType = 2; + }; + F53755D5016C389901DC9062 = { + isa = PBXFileReference; + name = Xlib.h; + path = ../xlib/X11/Xlib.h; + refType = 2; + }; + F53755D6016C389901DC9062 = { + isa = PBXFileReference; + name = Xutil.h; + path = ../xlib/X11/Xutil.h; + refType = 2; + }; + F53755D7016C389901DC9062 = { + children = ( + F53755D8016C389901DC9062, + F53755D9016C389901DC9062, + F53755DA016C389901DC9062, + F53755DB016C389901DC9062, + F53755DC016C389901DC9062, + ); + isa = PBXGroup; + name = Source; + refType = 4; + }; + F53755D8016C389901DC9062 = { + isa = PBXFileReference; + name = xcolors.c; + path = ../xlib/xcolors.c; + refType = 2; + }; + F53755D9016C389901DC9062 = { + isa = PBXFileReference; + name = xdraw.c; + path = ../xlib/xdraw.c; + refType = 2; + }; + F53755DA016C389901DC9062 = { + isa = PBXFileReference; + name = xgc.c; + path = ../xlib/xgc.c; + refType = 2; + }; + F53755DB016C389901DC9062 = { + isa = PBXFileReference; + name = ximage.c; + path = ../xlib/ximage.c; + refType = 2; + }; + F53755DC016C389901DC9062 = { + isa = PBXFileReference; + name = xutil.c; + path = ../xlib/xutil.c; + refType = 2; + }; + F53755DD016C38D201DC9062 = { + children = ( + F53755DE016C38D201DC9062, + F537569F016C4DD401DC9062, + F548F8CF0313CEF0016F146B, + ); + isa = PBXGroup; + name = Products; + refType = 4; + }; + F53755DE016C38D201DC9062 = { + isa = PBXFrameworkReference; + path = Tk.framework; + refType = 3; + }; + F53755DF016C38D201DC9062 = { + buildPhases = ( + F5877FB7031F97ED016F146B, + F53755E0016C38D201DC9062, + F53755E1016C38D301DC9062, + F53755E2016C38D301DC9062, + F53755E3016C38D301DC9062, + F53755E4016C38D301DC9062, + F5B1FC08016FFE3501DC9062, + F51D903F018149BD01DC9062, + F548F8C80313C9E0016F146B, + F52D38C5031F4259016F146B, + F5877FBC031FA968016F146B, + F5C1D51901B88F9A01DC9062, + ); + buildSettings = { + DYLIB_COMPATIBILITY_VERSION = 8.4; + DYLIB_CURRENT_VERSION = 8.4; + FRAMEWORK_SEARCH_PATHS = "\"$(SYMROOT)\""; + FRAMEWORK_VERSION = 8.4; + GLOBAL_CFLAGS = "`source \"${SYMROOT}/Tcl.framework/Resources/tclConfig.sh\"; echo $${}{TCL_EXTRA_CFLAGS} $${}{TCL_DEFS} | sed -e 's|\\\\\\\\\\\\\\\"|\\\"|g' | sed -e 's| -DTCL_WIDE_INT_TYPE=long. long||'` -U_REENTRANT"; + HEADER_SEARCH_PATHS = "../../tcl/generic ../../tcl/unix ../bitmaps ../generic ../xlib"; + INSTALL_PATH = /Library/Frameworks; + LIBRARY_SEARCH_PATHS = ""; + OPTIMIZATION_CFLAGS = "-O0"; + OTHER_CFLAGS = "-DMAC_OSX_TK -DTCL_WIDE_INT_TYPE=\"long long\""; + OTHER_LDFLAGS = "-seg1addr 0xb000000"; + OTHER_LIBTOOL_FLAGS = ""; + OTHER_REZFLAGS = "-i \"../../tcl/generic\" -i \"../generic\""; + PRINCIPAL_CLASS = ""; + PRODUCT_NAME = Tk; + SECTORDER_FLAGS = ""; + TK_MAJOR_VERSION = 8; + TK_MINOR_VERSION = 4; + TK_PATCH_LEVEL = b3; + USE_GCC3_PFE_SUPPORT = NO; + WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas -Wno-unused-variable"; + WRAPPER_EXTENSION = framework; + }; + dependencies = ( + F548F8D20313CF93016F146B, + ); + isa = PBXFrameworkTarget; + name = TkLibrary; + productInstallPath = /Library/Frameworks; + productName = TkLibrary; + productReference = F53755DE016C38D201DC9062; + productSettingsXML = "<?xml version=\"1.0\" encoding=\"UTF-8\"?> +<!DOCTYPE plist PUBLIC \"-//Apple Computer//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\"> +<plist version=\"1.0\"> +<dict> + <key>CFBundleDevelopmentRegion</key> + <string>English</string> + <key>CFBundleExecutable</key> + <string>Tk</string> + <key>CFBundleGetInfoString</key> + <string>Tk Library 8.4b3 +MacOS X Port by Jim Ingham & Ian Reid +jingham@apple.com +Copyright Apple Computer, Inc 2001</string> + <key>CFBundleIconFile</key> + <string></string> + <key>CFBundleIdentifier</key> + <string>com.tcltk.tklibrary</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundleName</key> + <string>Tk Library 8.4b3</string> + <key>CFBundlePackageType</key> + <string>FMWK</string> + <key>CFBundleShortVersionString</key> + <string>libtk8.4b3</string> + <key>CFBundleSignature</key> + <string>WiSH</string> + <key>CFBundleVersion</key> + <string>8.4b3</string> +</dict> +</plist> +"; + shouldUseHeadermap = 0; + }; + F53755E0016C38D201DC9062 = { + buildActionMask = 2147483647; + files = ( + F53755E5016C390401DC9062, + F53755E6016C390401DC9062, + F53755E7016C390401DC9062, + F53755E8016C390401DC9062, + F53755E9016C390401DC9062, + F53755EA016C390401DC9062, + F53755EB016C390401DC9062, + F53755EC016C390401DC9062, + F53755ED016C390401DC9062, + F53755EE016C390401DC9062, + F53755EF016C390401DC9062, + F53755F0016C390401DC9062, + F53755F1016C390401DC9062, + F53755F2016C390401DC9062, + F53755F3016C390401DC9062, + F53755F4016C390401DC9062, + F53755F5016C390401DC9062, + F53755F6016C390401DC9062, + F53755F7016C390401DC9062, + F53755F8016C390401DC9062, + F53755F9016C390401DC9062, + F53755FA016C390401DC9062, + F53755FB016C390401DC9062, + F53755FC016C397D01DC9062, + F53755FD016C397D01DC9062, + F53755FE016C397D01DC9062, + F53755FF016C397D01DC9062, + F5375600016C397D01DC9062, + F5375601016C397D01DC9062, + F5375602016C397D01DC9062, + F5375603016C397D01DC9062, + F537566E016C3A1F01DC9062, + F537566F016C3A1F01DC9062, + F5375670016C3A1F01DC9062, + F5375671016C3A1F01DC9062, + F5375672016C3A1F01DC9062, + F5375673016C3A1F01DC9062, + F5375674016C3A1F01DC9062, + F5375675016C3A1F01DC9062, + F5375676016C3A1F01DC9062, + F5375693016C3F1001DC9062, + F5375694016C3F1001DC9062, + F5375695016C3F1001DC9062, + F5375696016C3F1001DC9062, + F5375697016C3F1001DC9062, + F5375698016C3F1001DC9062, + F5375699016C3F1001DC9062, + F537569A016C3F1001DC9062, + F537569B016C3F1001DC9062, + F537569C016C3F1001DC9062, + F5BFE59002F8C45B01DC9062, + ); + isa = PBXHeadersBuildPhase; + runOnlyForDeploymentPostprocessing = 0; + }; + F53755E1016C38D301DC9062 = { + buildActionMask = 2147483647; + files = ( + ); + isa = PBXResourcesBuildPhase; + runOnlyForDeploymentPostprocessing = 0; + }; + F53755E2016C38D301DC9062 = { + buildActionMask = 2147483647; + files = ( + F5375604016C397D01DC9062, + F5375605016C397D01DC9062, + F5375606016C397D01DC9062, + F5375607016C397D01DC9062, + F5375608016C397D01DC9062, + F5375609016C397D01DC9062, + F537560A016C397D01DC9062, + F537560B016C397D01DC9062, + F537560C016C397D01DC9062, + F537560D016C397D01DC9062, + F537560E016C397D01DC9062, + F537560F016C397D01DC9062, + F5375610016C397D01DC9062, + F5375611016C397D01DC9062, + F5375612016C397D01DC9062, + F5375613016C397D01DC9062, + F5375614016C397D01DC9062, + F5375615016C397D01DC9062, + F5375616016C397D01DC9062, + F5375617016C397D01DC9062, + F5375618016C397D01DC9062, + F5375619016C397D01DC9062, + F537561A016C397D01DC9062, + F537561B016C397D01DC9062, + F537561C016C397D01DC9062, + F537561D016C397D01DC9062, + F537561E016C397D01DC9062, + F537561F016C397D01DC9062, + F5375620016C397D01DC9062, + F5375621016C397D01DC9062, + F5375622016C397D01DC9062, + F5375623016C397D01DC9062, + F5375624016C397D01DC9062, + F5375625016C397D01DC9062, + F5375626016C397D01DC9062, + F5375627016C397D01DC9062, + F5375628016C397D01DC9062, + F5375629016C397D01DC9062, + F537562A016C397D01DC9062, + F537562B016C397D01DC9062, + F537562C016C397D01DC9062, + F537562D016C397D01DC9062, + F537562E016C397D01DC9062, + F537562F016C397D01DC9062, + F5375630016C397D01DC9062, + F5375631016C397D01DC9062, + F5375632016C397D01DC9062, + F5375633016C397D01DC9062, + F5375634016C397D01DC9062, + F5375635016C397D01DC9062, + F5375636016C397D01DC9062, + F5375637016C397D01DC9062, + F5375638016C397D01DC9062, + F5375639016C397D01DC9062, + F537563A016C397D01DC9062, + F537563B016C397D01DC9062, + F537563C016C397D01DC9062, + F537563D016C397D01DC9062, + F537563F016C397D01DC9062, + F5375640016C397D01DC9062, + F5375641016C397D01DC9062, + F5375642016C397D01DC9062, + F5375643016C397D01DC9062, + F5375644016C397D01DC9062, + F5375645016C397D01DC9062, + F5375646016C397D01DC9062, + F5375647016C397D01DC9062, + F5375648016C397D01DC9062, + F5375649016C397D01DC9062, + F537564A016C397D01DC9062, + F537564D016C39A101DC9062, + F537564E016C39A101DC9062, + F537564F016C39A101DC9062, + F5375650016C39A101DC9062, + F5375651016C39A101DC9062, + F5375652016C39A101DC9062, + F5375653016C39A101DC9062, + F5375654016C39A101DC9062, + F5375655016C39A101DC9062, + F5375656016C39A101DC9062, + F5375657016C39A101DC9062, + F5375658016C39A101DC9062, + F5375659016C39A101DC9062, + F537565A016C39A101DC9062, + F537565B016C39A101DC9062, + F537565C016C39A101DC9062, + F537565D016C39A101DC9062, + F537565E016C39A101DC9062, + F537565F016C39A101DC9062, + F5375660016C39A101DC9062, + F5375661016C39A101DC9062, + F5375662016C39A101DC9062, + F5375664016C39A101DC9062, + F5375665016C39A101DC9062, + F5375666016C39A101DC9062, + F5375667016C39A101DC9062, + F5375668016C39A101DC9062, + F537566A016C39A101DC9062, + F537566B016C39A101DC9062, + F537566C016C39F201DC9062, + F537566D016C39F201DC9062, + F5375677016C3A6D01DC9062, + F5375678016C3A6D01DC9062, + F5375679016C3A6D01DC9062, + F537567A016C3A6D01DC9062, + F537567B016C3A6D01DC9062, + F537569E016C49C301DC9062, + F55BC46902B2D38B01DC9062, + F5BFE58D02F8C41501DC9062, + F5BFE58E02F8C41501DC9062, + ); + isa = PBXSourcesBuildPhase; + runOnlyForDeploymentPostprocessing = 0; + }; + F53755E3016C38D301DC9062 = { + buildActionMask = 2147483647; + files = ( + F51D903E0181474301DC9062, + F537567E016C3ADB01DC9062, + F50D96130196176E01DC9062, + ); + isa = PBXFrameworksBuildPhase; + runOnlyForDeploymentPostprocessing = 0; + }; + F53755E4016C38D301DC9062 = { + buildActionMask = 2147483647; + files = ( + F537567F016C3ADB01DC9062, + F5375680016C3ADB01DC9062, + F5375681016C3ADB01DC9062, + F5375682016C3ADB01DC9062, + ); + isa = PBXRezBuildPhase; + runOnlyForDeploymentPostprocessing = 0; + }; + F53755E5016C390401DC9062 = { + fileRef = F5375569016C37A601DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F53755E6016C390401DC9062 = { + fileRef = F537556A016C37A601DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F53755E7016C390401DC9062 = { + fileRef = F537556B016C37A601DC9062; + isa = PBXBuildFile; + settings = { + ATTRIBUTES = ( + Public, + ); + }; + }; + F53755E8016C390401DC9062 = { + fileRef = F537556C016C37A601DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F53755E9016C390401DC9062 = { + fileRef = F537556D016C37A601DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F53755EA016C390401DC9062 = { + fileRef = F537556E016C37A601DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F53755EB016C390401DC9062 = { + fileRef = F537556F016C37A601DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F53755EC016C390401DC9062 = { + fileRef = F5375570016C37A601DC9062; + isa = PBXBuildFile; + settings = { + ATTRIBUTES = ( + Public, + ); + }; + }; + F53755ED016C390401DC9062 = { + fileRef = F5375571016C37A601DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F53755EE016C390401DC9062 = { + fileRef = F5375572016C37A601DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F53755EF016C390401DC9062 = { + fileRef = F5375573016C37A601DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F53755F0016C390401DC9062 = { + fileRef = F5375574016C37A601DC9062; + isa = PBXBuildFile; + settings = { + ATTRIBUTES = ( + Private, + ); + }; + }; + F53755F1016C390401DC9062 = { + fileRef = F5375575016C37A601DC9062; + isa = PBXBuildFile; + settings = { + ATTRIBUTES = ( + Private, + ); + }; + }; + F53755F2016C390401DC9062 = { + fileRef = F5375576016C37A601DC9062; + isa = PBXBuildFile; + settings = { + ATTRIBUTES = ( + Private, + ); + }; + }; + F53755F3016C390401DC9062 = { + fileRef = F5375577016C37A601DC9062; + isa = PBXBuildFile; + settings = { + ATTRIBUTES = ( + Private, + ); + }; + }; + F53755F4016C390401DC9062 = { + fileRef = F5375578016C37A601DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F53755F5016C390401DC9062 = { + fileRef = F5375579016C37A601DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F53755F6016C390401DC9062 = { + fileRef = F537557A016C37A601DC9062; + isa = PBXBuildFile; + settings = { + ATTRIBUTES = ( + Public, + ); + }; + }; + F53755F7016C390401DC9062 = { + fileRef = F537557B016C37A601DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F53755F8016C390401DC9062 = { + fileRef = F537557C016C37A601DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F53755F9016C390401DC9062 = { + fileRef = F537557D016C37A601DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F53755FA016C390401DC9062 = { + fileRef = F537557E016C37A601DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F53755FB016C390401DC9062 = { + fileRef = F537557F016C37A601DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F53755FC016C397D01DC9062 = { + fileRef = F537553E016C376E01DC9062; + isa = PBXBuildFile; + settings = { + ATTRIBUTES = ( + Public, + ); + }; + }; + F53755FD016C397D01DC9062 = { + fileRef = F537553F016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F53755FE016C397D01DC9062 = { + fileRef = F5375540016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F53755FF016C397D01DC9062 = { + fileRef = F5375541016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375600016C397D01DC9062 = { + fileRef = F5375542016C376E01DC9062; + isa = PBXBuildFile; + settings = { + ATTRIBUTES = ( + Private, + ); + }; + }; + F5375601016C397D01DC9062 = { + fileRef = F5375543016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375602016C397D01DC9062 = { + fileRef = F5375544016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375603016C397D01DC9062 = { + fileRef = F5375545016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375604016C397D01DC9062 = { + fileRef = F5375580016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375605016C397D01DC9062 = { + fileRef = F5375581016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375606016C397D01DC9062 = { + fileRef = F5375582016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375607016C397D01DC9062 = { + fileRef = F5375583016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375608016C397D01DC9062 = { + fileRef = F5375584016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375609016C397D01DC9062 = { + fileRef = F5375585016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537560A016C397D01DC9062 = { + fileRef = F5375586016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537560B016C397D01DC9062 = { + fileRef = F5375587016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537560C016C397D01DC9062 = { + fileRef = F5375588016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537560D016C397D01DC9062 = { + fileRef = F5375589016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537560E016C397D01DC9062 = { + fileRef = F537558A016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537560F016C397D01DC9062 = { + fileRef = F537558B016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375610016C397D01DC9062 = { + fileRef = F537558C016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375611016C397D01DC9062 = { + fileRef = F537558D016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375612016C397D01DC9062 = { + fileRef = F537558E016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375613016C397D01DC9062 = { + fileRef = F537558F016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375614016C397D01DC9062 = { + fileRef = F5375590016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375615016C397D01DC9062 = { + fileRef = F5375591016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375616016C397D01DC9062 = { + fileRef = F5375592016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375617016C397D01DC9062 = { + fileRef = F5375593016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375618016C397D01DC9062 = { + fileRef = F5375594016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375619016C397D01DC9062 = { + fileRef = F5375595016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537561A016C397D01DC9062 = { + fileRef = F5375596016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537561B016C397D01DC9062 = { + fileRef = F5375597016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537561C016C397D01DC9062 = { + fileRef = F5375598016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537561D016C397D01DC9062 = { + fileRef = F5375599016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537561E016C397D01DC9062 = { + fileRef = F537559A016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537561F016C397D01DC9062 = { + fileRef = F537559B016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375620016C397D01DC9062 = { + fileRef = F537559C016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375621016C397D01DC9062 = { + fileRef = F537559D016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375622016C397D01DC9062 = { + fileRef = F537559E016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375623016C397D01DC9062 = { + fileRef = F537559F016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375624016C397D01DC9062 = { + fileRef = F53755A0016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375625016C397D01DC9062 = { + fileRef = F53755A1016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375626016C397D01DC9062 = { + fileRef = F53755A2016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375627016C397D01DC9062 = { + fileRef = F53755A3016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375628016C397D01DC9062 = { + fileRef = F53755A4016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375629016C397D01DC9062 = { + fileRef = F53755A5016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537562A016C397D01DC9062 = { + fileRef = F53755A6016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537562B016C397D01DC9062 = { + fileRef = F53755A7016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537562C016C397D01DC9062 = { + fileRef = F53755A8016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537562D016C397D01DC9062 = { + fileRef = F53755A9016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537562E016C397D01DC9062 = { + fileRef = F53755AA016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537562F016C397D01DC9062 = { + fileRef = F53755AB016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375630016C397D01DC9062 = { + fileRef = F53755AC016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375631016C397D01DC9062 = { + fileRef = F53755AD016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375632016C397D01DC9062 = { + fileRef = F53755AE016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375633016C397D01DC9062 = { + fileRef = F53755AF016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375634016C397D01DC9062 = { + fileRef = F53755B0016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375635016C397D01DC9062 = { + fileRef = F53755B1016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375636016C397D01DC9062 = { + fileRef = F53755B2016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375637016C397D01DC9062 = { + fileRef = F53755B3016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375638016C397D01DC9062 = { + fileRef = F53755B4016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375639016C397D01DC9062 = { + fileRef = F53755B5016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537563A016C397D01DC9062 = { + fileRef = F53755B6016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537563B016C397D01DC9062 = { + fileRef = F53755B7016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537563C016C397D01DC9062 = { + fileRef = F53755B8016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537563D016C397D01DC9062 = { + fileRef = F53755BA016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537563F016C397D01DC9062 = { + fileRef = F53755BD016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375640016C397D01DC9062 = { + fileRef = F53755BE016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375641016C397D01DC9062 = { + fileRef = F53755BF016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375642016C397D01DC9062 = { + fileRef = F53755C0016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375643016C397D01DC9062 = { + fileRef = F53755C1016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375644016C397D01DC9062 = { + fileRef = F53755C2016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375645016C397D01DC9062 = { + fileRef = F53755C3016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375646016C397D01DC9062 = { + fileRef = F53755C4016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375647016C397D01DC9062 = { + fileRef = F53755C5016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375648016C397D01DC9062 = { + fileRef = F53755C6016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375649016C397D01DC9062 = { + fileRef = F53755C7016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537564A016C397D01DC9062 = { + fileRef = F53755C8016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537564D016C39A101DC9062 = { + fileRef = F5375549016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537564E016C39A101DC9062 = { + fileRef = F537554A016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537564F016C39A101DC9062 = { + fileRef = F537554B016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375650016C39A101DC9062 = { + fileRef = F537554C016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375651016C39A101DC9062 = { + fileRef = F537554D016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375652016C39A101DC9062 = { + fileRef = F537554E016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375653016C39A101DC9062 = { + fileRef = F537554F016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375654016C39A101DC9062 = { + fileRef = F5375550016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375655016C39A101DC9062 = { + fileRef = F5375551016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375656016C39A101DC9062 = { + fileRef = F5375552016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375657016C39A101DC9062 = { + fileRef = F5375553016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375658016C39A101DC9062 = { + fileRef = F5375554016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375659016C39A101DC9062 = { + fileRef = F5375555016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537565A016C39A101DC9062 = { + fileRef = F5375556016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537565B016C39A101DC9062 = { + fileRef = F5375557016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537565C016C39A101DC9062 = { + fileRef = F5375558016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537565D016C39A101DC9062 = { + fileRef = F5375559016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537565E016C39A101DC9062 = { + fileRef = F537555A016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537565F016C39A101DC9062 = { + fileRef = F537555B016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375660016C39A101DC9062 = { + fileRef = F537555C016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375661016C39A101DC9062 = { + fileRef = F537555D016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375662016C39A101DC9062 = { + fileRef = F537555E016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375664016C39A101DC9062 = { + fileRef = F5375560016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375665016C39A101DC9062 = { + fileRef = F5375561016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375666016C39A101DC9062 = { + fileRef = F5375562016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375667016C39A101DC9062 = { + fileRef = F5375564016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375668016C39A101DC9062 = { + fileRef = F5375565016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537566A016C39A101DC9062 = { + fileRef = F5375567016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537566B016C39A101DC9062 = { + fileRef = F5375568016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537566C016C39F201DC9062 = { + fileRef = F53755CA016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537566D016C39F201DC9062 = { + fileRef = F53755CB016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537566E016C3A1F01DC9062 = { + fileRef = F53755CE016C389901DC9062; + isa = PBXBuildFile; + settings = { + ATTRIBUTES = ( + ); + }; + }; + F537566F016C3A1F01DC9062 = { + fileRef = F53755CF016C389901DC9062; + isa = PBXBuildFile; + settings = { + ATTRIBUTES = ( + ); + }; + }; + F5375670016C3A1F01DC9062 = { + fileRef = F53755D0016C389901DC9062; + isa = PBXBuildFile; + settings = { + ATTRIBUTES = ( + ); + }; + }; + F5375671016C3A1F01DC9062 = { + fileRef = F53755D1016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375672016C3A1F01DC9062 = { + fileRef = F53755D2016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375673016C3A1F01DC9062 = { + fileRef = F53755D3016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375674016C3A1F01DC9062 = { + fileRef = F53755D4016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375675016C3A1F01DC9062 = { + fileRef = F53755D5016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375676016C3A1F01DC9062 = { + fileRef = F53755D6016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375677016C3A6D01DC9062 = { + fileRef = F53755D8016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375678016C3A6D01DC9062 = { + fileRef = F53755D9016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375679016C3A6D01DC9062 = { + fileRef = F53755DA016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537567A016C3A6D01DC9062 = { + fileRef = F53755DB016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537567B016C3A6D01DC9062 = { + fileRef = F53755DC016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537567C016C3ADB01DC9062 = { + children = ( + F50D96120196176E01DC9062, + F5875C7B016FEF1D01DC9062, + F537567D016C3ADB01DC9062, + ); + isa = PBXGroup; + name = "External Frameworks"; + refType = 4; + }; + F537567D016C3ADB01DC9062 = { + isa = PBXFrameworkReference; + name = Carbon.framework; + path = /System/Library/Frameworks/Carbon.framework; + refType = 0; + }; + F537567E016C3ADB01DC9062 = { + fileRef = F537567D016C3ADB01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537567F016C3ADB01DC9062 = { + fileRef = F5375533016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375680016C3ADB01DC9062 = { + fileRef = F5375535016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375681016C3ADB01DC9062 = { + fileRef = F5375538016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375682016C3ADB01DC9062 = { + fileRef = F537553A016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375688016C3F1001DC9062 = { + children = ( + F5375689016C3F1001DC9062, + F537568A016C3F1001DC9062, + F537568B016C3F1001DC9062, + F537568C016C3F1001DC9062, + F537568D016C3F1001DC9062, + F537568E016C3F1001DC9062, + F537568F016C3F1001DC9062, + F5375690016C3F1001DC9062, + F5375691016C3F1001DC9062, + F5375692016C3F1001DC9062, + ); + isa = PBXGroup; + name = Bitmaps; + refType = 4; + }; + F5375689016C3F1001DC9062 = { + isa = PBXFileReference; + name = error.bmp; + path = ../bitmaps/error.bmp; + refType = 2; + }; + F537568A016C3F1001DC9062 = { + isa = PBXFileReference; + name = gray12.bmp; + path = ../bitmaps/gray12.bmp; + refType = 2; + }; + F537568B016C3F1001DC9062 = { + isa = PBXFileReference; + name = gray25.bmp; + path = ../bitmaps/gray25.bmp; + refType = 2; + }; + F537568C016C3F1001DC9062 = { + isa = PBXFileReference; + name = gray50.bmp; + path = ../bitmaps/gray50.bmp; + refType = 2; + }; + F537568D016C3F1001DC9062 = { + isa = PBXFileReference; + name = gray75.bmp; + path = ../bitmaps/gray75.bmp; + refType = 2; + }; + F537568E016C3F1001DC9062 = { + isa = PBXFileReference; + name = hourglass.bmp; + path = ../bitmaps/hourglass.bmp; + refType = 2; + }; + F537568F016C3F1001DC9062 = { + isa = PBXFileReference; + name = info.bmp; + path = ../bitmaps/info.bmp; + refType = 2; + }; + F5375690016C3F1001DC9062 = { + isa = PBXFileReference; + name = questhead.bmp; + path = ../bitmaps/questhead.bmp; + refType = 2; + }; + F5375691016C3F1001DC9062 = { + isa = PBXFileReference; + name = question.bmp; + path = ../bitmaps/question.bmp; + refType = 2; + }; + F5375692016C3F1001DC9062 = { + isa = PBXFileReference; + name = warning.bmp; + path = ../bitmaps/warning.bmp; + refType = 2; + }; + F5375693016C3F1001DC9062 = { + fileRef = F5375689016C3F1001DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375694016C3F1001DC9062 = { + fileRef = F537568A016C3F1001DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375695016C3F1001DC9062 = { + fileRef = F537568B016C3F1001DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375696016C3F1001DC9062 = { + fileRef = F537568C016C3F1001DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375697016C3F1001DC9062 = { + fileRef = F537568D016C3F1001DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375698016C3F1001DC9062 = { + fileRef = F537568E016C3F1001DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5375699016C3F1001DC9062 = { + fileRef = F537568F016C3F1001DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537569A016C3F1001DC9062 = { + fileRef = F5375690016C3F1001DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537569B016C3F1001DC9062 = { + fileRef = F5375691016C3F1001DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537569C016C3F1001DC9062 = { + fileRef = F5375692016C3F1001DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537569E016C49C301DC9062 = { + fileRef = F53755BB016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F537569F016C4DD401DC9062 = { + isa = PBXApplicationReference; + path = "Wish Shell.app"; + refType = 3; + }; + F53756A0016C4DD401DC9062 = { + buildPhases = ( + F5877FB8031F982D016F146B, + F53756A1016C4DD401DC9062, + F53756A2016C4DD401DC9062, + F53756A4016C4DD401DC9062, + F53756A6016C4DD401DC9062, + F53756AA016C4DD401DC9062, + F5877FBD031FAC6A016F146B, + ); + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "\"$(SYMROOT)\""; + GLOBAL_CFLAGS = "`source \"${SYMROOT}/Tcl.framework/Resources/tclConfig.sh\"; echo $${}{TCL_EXTRA_CFLAGS} $${}{TCL_DEFS} | sed -e 's|\\\\\\\\\\\\\\\"|\\\"|g' | sed -e 's| -DTCL_WIDE_INT_TYPE=long. long||'` -U_REENTRANT"; + HEADER_SEARCH_PATHS = "../../tcl/generic ../../tcl/unix ../generic ../xlib"; + INSTALL_PATH = /Applications/Utilities; + LIBRARY_SEARCH_PATHS = ""; + OPTIMIZATION_CFLAGS = "-O0"; + OTHER_CFLAGS = "-DMAC_OSX_TK -DTCL_WIDE_INT_TYPE=\"long long\""; + OTHER_LDFLAGS = "-sectcreate __TEXT __info_plist \"$TEMP_DIR/Info.plist\""; + OTHER_REZFLAGS = "-i \"../../tcl/generic\" -i \"../generic\""; + PRODUCT_NAME = "Wish Shell"; + SECTORDER_FLAGS = ""; + USE_GCC3_PFE_SUPPORT = NO; + WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; + WRAPPER_EXTENSION = app; + }; + dependencies = ( + F53756B2016C525F01DC9062, + ); + isa = PBXApplicationTarget; + name = Wish; + productInstallPath = /Applications/Utilities; + productName = "Wish Shell"; + productReference = F537569F016C4DD401DC9062; + productSettingsXML = "<?xml version=\"1.0\" encoding=\"UTF-8\"?> +<!DOCTYPE plist PUBLIC \"-//Apple Computer//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\"> +<plist version=\"1.0\"> +<dict> + <key>CFBundleDevelopmentRegion</key> + <string>English</string> + <key>CFBundleExecutable</key> + <string>Wish Shell</string> + <key>CFBundleGetInfoString</key> + <string>Wish Shell 8.4b3 +MacOS X Port by Jim Ingham & Ian Reid +jingham@apple.com +Copyright Apple Computer, Inc 2002</string> + <key>CFBundleIconFile</key> + <string>Wish.icns</string> + <key>CFBundleIdentifier</key> + <string>com.apple.wish</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundleName</key> + <string>Wish</string> + <key>CFBundlePackageType</key> + <string>APPL</string> + <key>CFBundleShortVersionString</key> + <string>Wish8.4b3</string> + <key>CFBundleSignature</key> + <string>WiSH</string> + <key>CFBundleVersion</key> + <string>8.4b3</string> +</dict> +</plist> +"; + shouldUseHeadermap = 0; + }; + F53756A1016C4DD401DC9062 = { + buildActionMask = 2147483647; + files = ( + F53756AC016C4E1D01DC9062, + F53756AD016C4E1D01DC9062, + F53756AE016C4E1D01DC9062, + ); + isa = PBXHeadersBuildPhase; + runOnlyForDeploymentPostprocessing = 0; + }; + F53756A2016C4DD401DC9062 = { + buildActionMask = 2147483647; + files = ( + F53756A3016C4DD401DC9062, + ); + isa = PBXResourcesBuildPhase; + runOnlyForDeploymentPostprocessing = 0; + }; + F53756A3016C4DD401DC9062 = { + fileRef = F537553B016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F53756A4016C4DD401DC9062 = { + buildActionMask = 2147483647; + files = ( + F53756A5016C4DD401DC9062, + ); + isa = PBXSourcesBuildPhase; + runOnlyForDeploymentPostprocessing = 0; + }; + F53756A5016C4DD401DC9062 = { + fileRef = F5375548016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F53756A6016C4DD401DC9062 = { + buildActionMask = 2147483647; + files = ( + F53756A8016C4DD401DC9062, + F5875C7D016FEF1D01DC9062, + F53756A7016C4DD401DC9062, + F50D96140196176E01DC9062, + F5877FB9031F9F49016F146B, + ); + isa = PBXFrameworksBuildPhase; + runOnlyForDeploymentPostprocessing = 0; + }; + F53756A7016C4DD401DC9062 = { + fileRef = F53755DE016C38D201DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F53756A8016C4DD401DC9062 = { + fileRef = F537567D016C3ADB01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F53756AA016C4DD401DC9062 = { + buildActionMask = 2147483647; + files = ( + ); + isa = PBXRezBuildPhase; + runOnlyForDeploymentPostprocessing = 0; + }; + F53756AC016C4E1D01DC9062 = { + fileRef = F537556B016C37A601DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F53756AD016C4E1D01DC9062 = { + fileRef = F5375570016C37A601DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F53756AE016C4E1D01DC9062 = { + fileRef = F537553E016C376E01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F53756B2016C525F01DC9062 = { + isa = PBXTargetDependency; + target = F53755DF016C38D201DC9062; + }; + F548F8C80313C9E0016F146B = { + buildActionMask = 2147483647; + dstPath = "Versions/$(FRAMEWORK_VERSION)"; + dstSubfolderSpec = 1; + files = ( + F5877FBA031F9F4B016F146B, + ); + isa = PBXCopyFilesBuildPhase; + runOnlyForDeploymentPostprocessing = 0; + }; + F548F8CA0313CEF0016F146B = { + buildActionMask = 2147483647; + files = ( + ); + isa = PBXHeadersBuildPhase; + runOnlyForDeploymentPostprocessing = 0; + }; + F548F8CB0313CEF0016F146B = { + buildActionMask = 2147483647; + files = ( + F548F8D10313CF14016F146B, + F548F8D00313CF11016F146B, + ); + isa = PBXSourcesBuildPhase; + runOnlyForDeploymentPostprocessing = 0; + }; + F548F8CC0313CEF0016F146B = { + buildActionMask = 2147483647; + files = ( + ); + isa = PBXFrameworksBuildPhase; + runOnlyForDeploymentPostprocessing = 0; + }; + F548F8CD0313CEF0016F146B = { + buildActionMask = 2147483647; + files = ( + ); + isa = PBXRezBuildPhase; + runOnlyForDeploymentPostprocessing = 0; + }; + F548F8CE0313CEF0016F146B = { + buildPhases = ( + F548F8CA0313CEF0016F146B, + F548F8CB0313CEF0016F146B, + F548F8CC0313CEF0016F146B, + F548F8CD0313CEF0016F146B, + ); + buildSettings = { + GLOBAL_CFLAGS = "`source \"${SYMROOT}/Tcl.framework/Resources/tclConfig.sh\"; echo $${}{TCL_EXTRA_CFLAGS} $${}{TCL_DEFS} | sed -e 's|\\\\\\\\\\\\\\\"|\\\"|g' | sed -e 's| -DTCL_WIDE_INT_TYPE=long. long||'` -U_REENTRANT"; + HEADER_SEARCH_PATHS = "../../tcl/generic ../../tcl/unix ../generic ../xlib"; + LIBRARY_STYLE = STATIC; + OPTIMIZATION_CFLAGS = "-O0"; + OTHER_CFLAGS = "-DMAC_OSX_TK -DTCL_WIDE_INT_TYPE=\"long long\""; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOL_FLAGS = ""; + PRODUCT_NAME = libtkstub8.4.a; + REZ_EXECUTABLE = YES; + SECTORDER_FLAGS = ""; + WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; + }; + dependencies = ( + ); + isa = PBXLibraryTarget; + name = TkStubLibrary; + productInstallPath = /usr/local/lib; + productName = TkStub; + productReference = F548F8CF0313CEF0016F146B; + shouldUseHeadermap = 0; + }; + F548F8CF0313CEF0016F146B = { + isa = PBXLibraryReference; + path = libtkstub8.4.a; + refType = 3; + }; + F548F8D00313CF11016F146B = { + fileRef = F53755B9016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F548F8D10313CF14016F146B = { + fileRef = F53755BB016C389901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F548F8D20313CF93016F146B = { + isa = PBXTargetDependency; + target = F548F8CE0313CEF0016F146B; + }; + F55BC46802B2D38B01DC9062 = { + isa = PBXFileReference; + name = tkPanedWindow.c; + path = ../generic/tkPanedWindow.c; + refType = 2; + }; + F55BC46902B2D38B01DC9062 = { + fileRef = F55BC46802B2D38B01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F55BC46A02B2D3F301DC9062 = { + isa = PBXFileReference; + name = panedwindow.tcl; + path = ../library/panedwindow.tcl; + refType = 2; + }; + F55BC46B02B2D3F301DC9062 = { + fileRef = F55BC46A02B2D3F301DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5875C7B016FEF1D01DC9062 = { + isa = PBXFrameworkReference; + path = Tcl.framework; + refType = 3; + }; + F5875C7D016FEF1D01DC9062 = { + fileRef = F5875C7B016FEF1D01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5877FB7031F97ED016F146B = { + buildActionMask = 8; + files = ( + ); + generatedFileNames = ( + ); + isa = PBXShellScriptBuildPhase; + neededFileNames = ( + ); + runOnlyForDeploymentPostprocessing = 1; + shellPath = /bin/sh; + shellScript = "# ensure we can overwrite a previous install\nif [ -d \"${INSTALL_ROOT}${INSTALL_PATH}/${PRODUCT_NAME}.${WRAPPER_EXTENSION}\" ]; then\n chmod -RH u+w \"${INSTALL_ROOT}${INSTALL_PATH}/${PRODUCT_NAME}.${WRAPPER_EXTENSION}\"\nfi"; + }; + F5877FB8031F982D016F146B = { + buildActionMask = 8; + files = ( + ); + generatedFileNames = ( + ); + isa = PBXShellScriptBuildPhase; + neededFileNames = ( + ); + runOnlyForDeploymentPostprocessing = 1; + shellPath = /bin/sh; + shellScript = "# ensure we can overwrite a previous install\nif [ -d \"${INSTALL_ROOT}${INSTALL_PATH}/${PRODUCT_NAME}.${WRAPPER_EXTENSION}\" ]; then\n chmod -RH u+w \"${INSTALL_ROOT}${INSTALL_PATH}/${PRODUCT_NAME}.${WRAPPER_EXTENSION}\"\nfi"; + }; + F5877FB9031F9F49016F146B = { + fileRef = F548F8CF0313CEF0016F146B; + isa = PBXBuildFile; + settings = { + }; + }; + F5877FBA031F9F4B016F146B = { + fileRef = F548F8CF0313CEF0016F146B; + isa = PBXBuildFile; + settings = { + }; + }; + F5877FBC031FA968016F146B = { + buildActionMask = 8; + files = ( + ); + generatedFileNames = ( + ); + isa = PBXShellScriptBuildPhase; + neededFileNames = ( + ); + runOnlyForDeploymentPostprocessing = 1; + shellPath = /bin/sh; + shellScript = "# redo prebinding\nif [ ! -d \"${INSTALL_ROOT}/usr/lib\" ]; then ln -fs /usr/lib \"${INSTALL_ROOT}/usr/\"; RM_USRLIB=1; fi\nif [ ! -d \"${INSTALL_ROOT}/System\" ]; then ln -fs /System \"${INSTALL_ROOT}/\"; RM_SYSTEM=1; fi\nredo_prebinding -r \"${INSTALL_ROOT}\" \"${INSTALL_ROOT}${INSTALL_PATH}/${PRODUCT_NAME}.${WRAPPER_EXTENSION}/Versions/${FRAMEWORK_VERSION}/${PRODUCT_NAME}\"\nif [ -n \"${RM_USRLIB:-}\" ]; then rm -f \"${INSTALL_ROOT}/usr/lib\"; fi\nif [ -n \"${RM_SYSTEM:-}\" ]; then rm -f ${INSTALL_ROOT}/System; fi"; + }; + F5877FBD031FAC6A016F146B = { + buildActionMask = 8; + files = ( + ); + generatedFileNames = ( + ); + isa = PBXShellScriptBuildPhase; + neededFileNames = ( + ); + runOnlyForDeploymentPostprocessing = 1; + shellPath = /bin/sh; + shellScript = "# redo prebinding\nif [ ! -d \"${INSTALL_ROOT}/usr/lib\" ]; then ln -fs /usr/lib \"${INSTALL_ROOT}/usr/\"; RM_USRLIB=1; fi\nif [ ! -d \"${INSTALL_ROOT}/System\" ]; then ln -fs /System \"${INSTALL_ROOT}/\"; RM_SYSTEM=1; fi\nredo_prebinding -r \"${INSTALL_ROOT}\" \"${INSTALL_ROOT}${INSTALL_PATH}/${PRODUCT_NAME}.${WRAPPER_EXTENSION}/Contents/MacOS/${PRODUCT_NAME}\"\nif [ -n \"${RM_USRLIB:-}\" ]; then rm -f \"${INSTALL_ROOT}/usr/lib\"; fi\nif [ -n \"${RM_SYSTEM:-}\" ]; then rm -f ${INSTALL_ROOT}/System; fi"; + }; + F5B1FC08016FFE3501DC9062 = { + buildActionMask = 2147483647; + dstPath = "Versions/$(FRAMEWORK_VERSION)/Resources/Scripts"; + dstSubfolderSpec = 1; + files = ( + F5B1FC09016FFE3501DC9062, + F5B1FC0A016FFE3501DC9062, + F5B1FC0B016FFE3501DC9062, + F5B1FC0C016FFE3501DC9062, + F5B1FC0D016FFE3501DC9062, + F5B1FC0E016FFE3501DC9062, + F5B1FC0F016FFE3501DC9062, + F5B1FC10016FFE3501DC9062, + F5B1FC11016FFE3501DC9062, + F5B1FC12016FFE3501DC9062, + F5B1FC13016FFE3501DC9062, + F5B1FC14016FFE3501DC9062, + F5B1FC15016FFE3501DC9062, + F5B1FC16016FFE3501DC9062, + F5B1FC17016FFE3501DC9062, + F5B1FC18016FFE3501DC9062, + F5B1FC19016FFE3501DC9062, + F5B1FC1A016FFE3501DC9062, + F55BC46B02B2D3F301DC9062, + F5B1FC1B016FFE3501DC9062, + F5B1FC1C016FFE3501DC9062, + F5B1FC1D016FFE3501DC9062, + F5B1FC1E016FFE3501DC9062, + F5B1FC1F016FFE3501DC9062, + F5B1FC20016FFE3501DC9062, + F5B1FC21016FFE3501DC9062, + F5B1FC22016FFE3501DC9062, + F5B1FC23016FFE3501DC9062, + F5B1FC24016FFE3501DC9062, + F5B1FC25016FFE3501DC9062, + F5B1FC26016FFE3501DC9062, + ); + isa = PBXCopyFilesBuildPhase; + runOnlyForDeploymentPostprocessing = 0; + }; + F5B1FC09016FFE3501DC9062 = { + fileRef = F5DF0928016CD3F901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5B1FC0A016FFE3501DC9062 = { + fileRef = F5DF0929016CD3F901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5B1FC0B016FFE3501DC9062 = { + fileRef = F5DF092A016CD3F901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5B1FC0C016FFE3501DC9062 = { + fileRef = F5DF092B016CD3F901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5B1FC0D016FFE3501DC9062 = { + fileRef = F5DF092C016CD3F901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5B1FC0E016FFE3501DC9062 = { + fileRef = F5DF092D016CD3F901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5B1FC0F016FFE3501DC9062 = { + fileRef = F5DF092E016CD3F901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5B1FC10016FFE3501DC9062 = { + fileRef = F5DF092F016CD3F901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5B1FC11016FFE3501DC9062 = { + fileRef = F5DF0930016CD3F901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5B1FC12016FFE3501DC9062 = { + fileRef = F5DF0931016CD3F901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5B1FC13016FFE3501DC9062 = { + fileRef = F5DF0932016CD3F901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5B1FC14016FFE3501DC9062 = { + fileRef = F5DF0933016CD3F901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5B1FC15016FFE3501DC9062 = { + fileRef = F5DF0934016CD3F901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5B1FC16016FFE3501DC9062 = { + fileRef = F5DF0935016CD3F901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5B1FC17016FFE3501DC9062 = { + fileRef = F5DF0936016CD3F901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5B1FC18016FFE3501DC9062 = { + fileRef = F5DF0937016CD3F901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5B1FC19016FFE3501DC9062 = { + fileRef = F5DF0938016CD3F901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5B1FC1A016FFE3501DC9062 = { + fileRef = F5DF0939016CD3F901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5B1FC1B016FFE3501DC9062 = { + fileRef = F5DF093A016CD3F901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5B1FC1C016FFE3501DC9062 = { + fileRef = F5DF093B016CD3F901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5B1FC1D016FFE3501DC9062 = { + fileRef = F5DF093C016CD3F901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5B1FC1E016FFE3501DC9062 = { + fileRef = F5DF093D016CD3F901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5B1FC1F016FFE3501DC9062 = { + fileRef = F5DF093E016CD3F901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5B1FC20016FFE3501DC9062 = { + fileRef = F5DF093F016CD3F901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5B1FC21016FFE3501DC9062 = { + fileRef = F5DF0940016CD3F901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5B1FC22016FFE3501DC9062 = { + fileRef = F5DF0941016CD3F901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5B1FC23016FFE3501DC9062 = { + fileRef = F5DF0942016CD3F901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5B1FC24016FFE3501DC9062 = { + fileRef = F5DF0943016CD3F901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5B1FC25016FFE3501DC9062 = { + fileRef = F5DF0944016CD3F901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5B1FC26016FFE3501DC9062 = { + fileRef = F5DF0945016CD3F901DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5BFE58B02F8C41501DC9062 = { + isa = PBXFileReference; + name = tkStyle.c; + path = ../generic/tkStyle.c; + refType = 2; + }; + F5BFE58C02F8C41501DC9062 = { + isa = PBXFileReference; + name = tkUndo.c; + path = ../generic/tkUndo.c; + refType = 2; + }; + F5BFE58D02F8C41501DC9062 = { + fileRef = F5BFE58B02F8C41501DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5BFE58E02F8C41501DC9062 = { + fileRef = F5BFE58C02F8C41501DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5BFE58F02F8C45B01DC9062 = { + isa = PBXFileReference; + name = tkUndo.h; + path = ../generic/tkUndo.h; + refType = 2; + }; + F5BFE59002F8C45B01DC9062 = { + fileRef = F5BFE58F02F8C45B01DC9062; + isa = PBXBuildFile; + settings = { + }; + }; + F5C1D51901B88F9A01DC9062 = { + buildActionMask = 8; + files = ( + ); + generatedFileNames = ( + ); + isa = PBXShellScriptBuildPhase; + neededFileNames = ( + ); + runOnlyForDeploymentPostprocessing = 1; + shellPath = /bin/sh; + shellScript = "#source buildConfig"; + }; + F5C88659017D625C01DC9062 = { + children = ( + F5C8865A017D625C01DC9062, + F5C8865B017D625C01DC9062, + ); + isa = PBXGroup; + name = "Header Tools"; + refType = 4; + }; + F5C8865A017D625C01DC9062 = { + isa = PBXFileReference; + name = tk.decls; + path = ../generic/tk.decls; + refType = 2; + }; + F5C8865B017D625C01DC9062 = { + isa = PBXFileReference; + name = tkInt.decls; + path = ../generic/tkInt.decls; + refType = 2; + }; + F5DF07A7016CD03801DC9062 = { + children = ( + F5DF0928016CD3F901DC9062, + F5DF0929016CD3F901DC9062, + F5DF092A016CD3F901DC9062, + F5DF092B016CD3F901DC9062, + F5DF092C016CD3F901DC9062, + F5DF092D016CD3F901DC9062, + F5DF092E016CD3F901DC9062, + F5DF092F016CD3F901DC9062, + F5DF0930016CD3F901DC9062, + F5DF0931016CD3F901DC9062, + F5DF0932016CD3F901DC9062, + F5DF0933016CD3F901DC9062, + F5DF0934016CD3F901DC9062, + F5DF0935016CD3F901DC9062, + F5DF0936016CD3F901DC9062, + F5DF0937016CD3F901DC9062, + F5DF0938016CD3F901DC9062, + F5DF0939016CD3F901DC9062, + F55BC46A02B2D3F301DC9062, + F5DF093A016CD3F901DC9062, + F5DF093B016CD3F901DC9062, + F5DF093C016CD3F901DC9062, + F5DF093D016CD3F901DC9062, + F5DF093E016CD3F901DC9062, + F5DF093F016CD3F901DC9062, + F5DF0940016CD3F901DC9062, + F5DF0941016CD3F901DC9062, + F5DF0942016CD3F901DC9062, + F5DF0943016CD3F901DC9062, + F5DF0944016CD3F901DC9062, + F5DF0945016CD3F901DC9062, + ); + isa = PBXGroup; + name = Scripts; + refType = 4; + }; + F5DF0928016CD3F901DC9062 = { + isa = PBXFileReference; + name = bgerror.tcl; + path = ../library/bgerror.tcl; + refType = 2; + }; + F5DF0929016CD3F901DC9062 = { + isa = PBXFileReference; + name = button.tcl; + path = ../library/button.tcl; + refType = 2; + }; + F5DF092A016CD3F901DC9062 = { + isa = PBXFileReference; + name = choosedir.tcl; + path = ../library/choosedir.tcl; + refType = 2; + }; + F5DF092B016CD3F901DC9062 = { + isa = PBXFileReference; + name = clrpick.tcl; + path = ../library/clrpick.tcl; + refType = 2; + }; + F5DF092C016CD3F901DC9062 = { + isa = PBXFileReference; + name = comdlg.tcl; + path = ../library/comdlg.tcl; + refType = 2; + }; + F5DF092D016CD3F901DC9062 = { + isa = PBXFileReference; + name = console.tcl; + path = ../library/console.tcl; + refType = 2; + }; + F5DF092E016CD3F901DC9062 = { + includeInIndex = 0; + isa = PBXFolderReference; + name = demos; + path = ../library/demos; + refType = 2; + }; + F5DF092F016CD3F901DC9062 = { + isa = PBXFileReference; + name = dialog.tcl; + path = ../library/dialog.tcl; + refType = 2; + }; + F5DF0930016CD3F901DC9062 = { + isa = PBXFileReference; + name = entry.tcl; + path = ../library/entry.tcl; + refType = 2; + }; + F5DF0931016CD3F901DC9062 = { + isa = PBXFileReference; + name = focus.tcl; + path = ../library/focus.tcl; + refType = 2; + }; + F5DF0932016CD3F901DC9062 = { + includeInIndex = 0; + isa = PBXFolderReference; + name = images; + path = ../library/images; + refType = 2; + }; + F5DF0933016CD3F901DC9062 = { + isa = PBXFileReference; + name = listbox.tcl; + path = ../library/listbox.tcl; + refType = 2; + }; + F5DF0934016CD3F901DC9062 = { + isa = PBXFileReference; + name = menu.tcl; + path = ../library/menu.tcl; + refType = 2; + }; + F5DF0935016CD3F901DC9062 = { + isa = PBXFileReference; + name = msgbox.tcl; + path = ../library/msgbox.tcl; + refType = 2; + }; + F5DF0936016CD3F901DC9062 = { + includeInIndex = 0; + isa = PBXFolderReference; + name = msgs; + path = ../library/msgs; + refType = 2; + }; + F5DF0937016CD3F901DC9062 = { + isa = PBXFileReference; + name = obsolete.tcl; + path = ../library/obsolete.tcl; + refType = 2; + }; + F5DF0938016CD3F901DC9062 = { + isa = PBXFileReference; + name = optMenu.tcl; + path = ../library/optMenu.tcl; + refType = 2; + }; + F5DF0939016CD3F901DC9062 = { + isa = PBXFileReference; + name = palette.tcl; + path = ../library/palette.tcl; + refType = 2; + }; + F5DF093A016CD3F901DC9062 = { + isa = PBXFileReference; + name = prolog.ps; + path = ../library/prolog.ps; + refType = 2; + }; + F5DF093B016CD3F901DC9062 = { + isa = PBXFileReference; + name = safetk.tcl; + path = ../library/safetk.tcl; + refType = 2; + }; + F5DF093C016CD3F901DC9062 = { + isa = PBXFileReference; + name = scale.tcl; + path = ../library/scale.tcl; + refType = 2; + }; + F5DF093D016CD3F901DC9062 = { + isa = PBXFileReference; + name = scrlbar.tcl; + path = ../library/scrlbar.tcl; + refType = 2; + }; + F5DF093E016CD3F901DC9062 = { + isa = PBXFileReference; + name = spinbox.tcl; + path = ../library/spinbox.tcl; + refType = 2; + }; + F5DF093F016CD3F901DC9062 = { + isa = PBXFileReference; + name = tclIndex; + path = ../library/tclIndex; + refType = 2; + }; + F5DF0940016CD3F901DC9062 = { + isa = PBXFileReference; + name = tearoff.tcl; + path = ../library/tearoff.tcl; + refType = 2; + }; + F5DF0941016CD3F901DC9062 = { + isa = PBXFileReference; + name = text.tcl; + path = ../library/text.tcl; + refType = 2; + }; + F5DF0942016CD3F901DC9062 = { + isa = PBXFileReference; + name = tk.tcl; + path = ../library/tk.tcl; + refType = 2; + }; + F5DF0943016CD3F901DC9062 = { + isa = PBXFileReference; + name = tkfbox.tcl; + path = ../library/tkfbox.tcl; + refType = 2; + }; + F5DF0944016CD3F901DC9062 = { + isa = PBXFileReference; + name = unsupported.tcl; + path = ../library/unsupported.tcl; + refType = 2; + }; + F5DF0945016CD3F901DC9062 = { + isa = PBXFileReference; + name = xmfbox.tcl; + path = ../library/xmfbox.tcl; + refType = 2; + }; + }; + rootObject = F537552A016C352C01DC9062; +} |