summaryrefslogtreecommitdiffstats
path: root/macosx/Wish.pbproj
diff options
context:
space:
mode:
authordas <das>2005-11-27 02:36:13 (GMT)
committerdas <das>2005-11-27 02:36:13 (GMT)
commit3dadea6fa58518be89d8e48e340285cd5d916887 (patch)
tree98dfe1d79c84fe0819c1b167cb9764496c2c9a72 /macosx/Wish.pbproj
parentc0223b885cb724c64ed47ceefc90b7f883a6b4df (diff)
downloadtk-3dadea6fa58518be89d8e48e340285cd5d916887.zip
tk-3dadea6fa58518be89d8e48e340285cd5d916887.tar.gz
tk-3dadea6fa58518be89d8e48e340285cd5d916887.tar.bz2
* unix/tcl.m4 (Darwin): add 64bit support, check for Tiger copyfile(),
add CFLAGS to SHLIB_LD to support passing -isysroot in env(CFLAGS) to configure (flag can't be present twice, so can't be in both CFLAGS and LDFLAGS during configure), don't use -prebind when deploying on 10.4, define TCL_IO_TRACK_OS_FOR_DRIVER_WITH_BAD_BLOCKING (rdar://3171542). (SC_ENABLE_LANGINFO, SC_TIME_HANDLER): add/fix caching, fix obsolete autoconf macros. Sync with tcl/unix/tcl.m4. * unix/configure.in: fix obsolete autoconf macros, sync gratuitous formatting/ordering differences with tcl/unix/configure.in. * unix/Makefile.in: add CFLAGS to wish/tktest link to make executable linking the same as during configure (needed to avoid loosing any linker relevant flags in CFLAGS, in particular flags that can't be in LDFLAGS). Avoid concurrent linking of wish and compiling of tkTestInit.o during parallel make, fix dependencies and flags for building tkMacOSXInit.o (checkstubs, checkexports): dependency and Darwin fixes (dist): add new macosx files. * macosx/tkMacOSXEvent.c (TkMacOSXProcessEvent): * macosx/tkMacOSXEvent.h: * macosx/tkMacOSXMouseEvent.c (TkMacOSXProcessMouseEvent): * macosx/tkMacOSXCarbonEvents.c: install standard application event handler, add & call functions to start and stop carbon even timer that runs the tcl event loop periodically during a nested carbon event loop in the toolbox (e.g. during menutracking) to ensure tcl timers etc continue to fire, register app event handler for menu tracking and HI command carbon events, move menu event handling to new handlers for those carbon events, no longer register for/handle appleevent carbon event (now dealt with by standard application event handler), event debugging code dynamically acquires carbon event debugging functions to allow use on Tiger where they are no longer exported from HIToolbox. * macosx/tkMacOSXFont.c (TkMacOSXUseAntialiasedText): * macosx/tkMacOSXKeyEvent.c (GetKeyboardLayout): * macosx/tkMacOSXCarbonEvents.c (TkMacOSXInitCarbonEvents): * macosx/tkMacOSXInit.c: * macosx/tkMacOSXInt.h: abstract common code to dynamically acquire address of a named symbol (from a loaded dynamic library) into new function TkMacOSXGetNamedSymbol() and macro TkMacOSXInitNamedSymbol. * macosx/tkMacOSXMenu.c (TkpNewMenu): * macosx/tkMacOSXMenubutton.c (MenuButtonInitControl): * macosx/tkMacOSXMenus.c (TkMacOSXHandleMenuSelect): switch to modern utf8 aware menu manager API, remove obsolete code, add error handling. * macosx/tkMacOSXMouseEvent.c: define OSX 10.3 or later only constants if necessary to allow compilation on OSX 10.2 * macosx/tkMacOSXWm.c (UpdateSizeHints): remove code that is never executed. * xlib/xgc.c (XCreateGC): sync with core-8-4-branch change. * generic/tk.h: add/correct location of version numbers in macosx files. * generic/tkInt.h: clarify fat compile comment. * macosx/Wish.pbproj/default.pbxuser (new file): * macosx/Wish.pbproj/jingham.pbxuser: * macosx/Wish.pbproj/project.pbxproj: * macosx/Wish.xcode/default.pbxuser: * macosx/Wish.xcode/project.pbxproj: * macosx/Wish.xcodeproj/default.pbxuser (new file): * macosx/Wish.xcodeproj/project.pbxproj (new file): new/updated projects for Xcode 2.2 on 10.4, Xcode 1.5 on 10.3 & ProjectBuilder on 10.2, with native tktest targets and support for universal (fat) compiles. * macosx/Tk-Info.plist (removed): * macosx/Wish-Info.plist (removed): * macosx/buildTkConfig.tcl (removed): remove obsolete build files. * macosx/README: clarification/cleanup, document new Xcode projects and universal (fat) builds via CFLAGS (i.e. ppc and i386 at the same time). * unix/Makefile.in: * unix/aclocal.m4: * unix/configure.in: * macosx/configure.ac (new file): add support for inclusion of unix/configure.in by macosx/configure.ac, allows generation of a config headers enabled configure script in macosx (required by Xcode projects). * macosx/GNUmakefile: rename from Makefile to avoid overwriting by configure run in tk/macosx, add support for reusing configure cache, build target fixes. * generic/tk3d.h: * generic/tkButton.h: * generic/tkCanvas.c: * generic/tkCanvas.h: * generic/tkColor.h: * generic/tkEntry.h: * generic/tkFileFilter.h: * generic/tkFont.c: * generic/tkFont.h: * generic/tkImage.c: * generic/tkImgPhoto.c: * generic/tkInt.h: * generic/tkMenu.c: * generic/tkMenu.h: * generic/tkMenubutton.h: * generic/tkScale.h: * generic/tkScrollbar.h: * generic/tkSelect.h: * generic/tkStubInit.c: * generic/tkStubLib.c: * generic/tkText.h: * generic/tkUndo.h: * macosx/tkMacOSXButton.c: * macosx/tkMacOSXDebug.c: * macosx/tkMacOSXDebug.h: * macosx/tkMacOSXDialog.c: * macosx/tkMacOSXDraw.c: * macosx/tkMacOSXEntry.c: * macosx/tkMacOSXFont.c: * macosx/tkMacOSXInt.h: * macosx/tkMacOSXMenu.c: * macosx/tkMacOSXMenubutton.c: * macosx/tkMacOSXMouseEvent.c: * macosx/tkMacOSXSend.c: * macosx/tkMacOSXSubwindows.c: * macosx/tkMacOSXWindowEvent.c: * macosx/tkMacOSXWm.c: * macosx/tkMacOSXXStubs.c: * unix/tkUnixButton.c: * unix/tkUnixMenu.c: * xlib/xgc.c: ensure externally visible symbols not contained in stubs table are declared as MODULE_SCOPE (or as static if not used outside of own source file), #ifdef out a few Xlib and aqua functions that are never called. These changes allow 'make checkstubs' to complete without error on Darwin with gcc 4. * macosx/tkMacOSXTest.c: * macosx/tkMacOSXPort.h: * win/tkWinTest.c: * generic/tkInt.decls: add functions needed by tktest to internal stubs table, correct signature of TkMacOSXHandleMenuSelect, add XSync to aqua Xlib stubs. * unix/tkUnixSend.c: * generic/tkText.c: * generic/tkTest.c: #ifdef unix only declarations. (TestmetricsCmd): unify win and mac implementation. (TestsendCmd): move to tkUnixSend.c to avoid access to global var. (TesttextCmd): move to tkText.c to avoid having to put all the internal text functions it uses into the stubs table. * generic/tkTextDisp.c: * macosx/tkMacOSXInit.c: * macosx/tkMacOSXKeyEvent.c: * macosx/tkMacOSXWindowEvent.c: * macosx/tkMacOSXXStubs.c: fix gcc 4 warnings. * macosx/tkMacOSXNotify.c: * macosx/tkMacOSXScrlbr.c: sync with core-8-4-branch. * generic/tkIntDecls.h: * generic/tkIntPlatDecls.h: * generic/tkIntXlibDecls.h: * generic/tkStubInit.c: * unix/configure: * unix/tkConfig.h.in: regen.
Diffstat (limited to 'macosx/Wish.pbproj')
-rw-r--r--macosx/Wish.pbproj/default.pbxuser178
-rw-r--r--macosx/Wish.pbproj/jingham.pbxuser1147
-rw-r--r--macosx/Wish.pbproj/project.pbxproj2116
3 files changed, 355 insertions, 3086 deletions
diff --git a/macosx/Wish.pbproj/default.pbxuser b/macosx/Wish.pbproj/default.pbxuser
new file mode 100644
index 0000000..aafee5a
--- /dev/null
+++ b/macosx/Wish.pbproj/default.pbxuser
@@ -0,0 +1,178 @@
+// !$*UTF8*$!
+{
+ F537552A016C352C01DC9062 = {
+ activeBuildStyle = F537552C016C352C01DC9062;
+ activeExecutable = F9F6B1E308E8648C00C9CB24;
+ activeTarget = F9D6747B08E84DC100688CAA;
+ addToTargets = (
+ );
+ codeSenseManager = F9D7368F06AD399F00DC3A31;
+ executables = (
+ F9F6B1EB08E864DC00C9CB24,
+ F9F6B1E308E8648C00C9CB24,
+ );
+ sourceControlManager = F9D7368E06AD399F00DC3A31;
+ userBuildSettings = {
+ SYMROOT = "${SRCROOT}/../../build/tk";
+ };
+ };
+ F9D6747B08E84DC100688CAA = {
+ activeExec = 0;
+ };
+ F9D7368E06AD399F00DC3A31 = {
+ fallbackIsa = XCSourceControlManager;
+ isSCMEnabled = 0;
+ isa = PBXSourceControlManager;
+ scmConfiguration = {
+ };
+ scmType = scm.cvs;
+ };
+ F9D7368F06AD399F00DC3A31 = {
+ indexTemplatePath = "";
+ isa = PBXCodeSenseManager;
+ usesDefaults = 1;
+ wantsCodeCompletion = 1;
+ wantsCodeCompletionAutoSuggestions = 1;
+ wantsCodeCompletionCaseSensitivity = 1;
+ wantsCodeCompletionListAlways = 1;
+ wantsCodeCompletionOnlyMatchingItems = 1;
+ wantsCodeCompletionParametersIncluded = 1;
+ wantsCodeCompletionPlaceholdersInserted = 1;
+ wantsCodeCompletionTabCompletes = 1;
+ wantsIndex = 1;
+ };
+ F9F6B1E308E8648C00C9CB24 = {
+ activeArgIndex = 2147483647;
+ activeArgIndices = (
+ );
+ argumentStrings = (
+ );
+ configStateDict = {
+ "PBXLSLaunchAction-0" = {
+ PBXLSLaunchAction = 0;
+ PBXLSLaunchStartAction = 1;
+ PBXLSLaunchStdioStyle = 2;
+ PBXLSLaunchStyle = 0;
+ class = PBXLSRunLaunchConfig;
+ displayName = "Executable Runner";
+ identifier = com.apple.Xcode.launch.runConfig;
+ remoteHostInfo = "";
+ startActionInfo = "";
+ };
+ "PBXLSLaunchAction-1" = {
+ PBXLSLaunchAction = 1;
+ PBXLSLaunchStartAction = 1;
+ PBXLSLaunchStdioStyle = 2;
+ PBXLSLaunchStyle = 0;
+ class = PBXGDB_LaunchConfig;
+ displayName = GDB;
+ identifier = com.apple.Xcode.launch.GDBMI_Config;
+ remoteHostInfo = "";
+ startActionInfo = "";
+ };
+ };
+ cppStopOnCatchEnabled = 0;
+ cppStopOnThrowEnabled = 0;
+ customDataFormattersEnabled = 1;
+ debuggerPlugin = GDBDebugging;
+ disassemblyDisplayState = 0;
+ dylibVariantSuffix = _debug;
+ enableDebugStr = 0;
+ environmentEntries = (
+ {
+ active = NO;
+ name = DYLD_PRINT_LIBRARIES;
+ },
+ );
+ isa = PBXExecutable;
+ launchableReference = F9F6B1E408E8648C00C9CB24;
+ libgmallocEnabled = 0;
+ name = Wish;
+ shlibInfoDictList = (
+ );
+ sourceDirectories = (
+ );
+ };
+ F9F6B1E408E8648C00C9CB24 = {
+ isa = PBXFileReference;
+ lastKnownFileType = wrapper.application;
+ path = Wish.app;
+ refType = 3;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ F9F6B1EB08E864DC00C9CB24 = {
+ activeArgIndex = 2147483647;
+ activeArgIndices = (
+ NO,
+ NO,
+ NO,
+ );
+ argumentStrings = (
+ "${SRCROOT}/../../tcl/tests/all.tcl",
+ "${SRCROOT}/../../tk/tests/all.tcl",
+ "-verbose \"\"",
+ );
+ configStateDict = {
+ "PBXLSLaunchAction-0" = {
+ PBXLSLaunchAction = 0;
+ PBXLSLaunchStartAction = 1;
+ PBXLSLaunchStdioStyle = 2;
+ PBXLSLaunchStyle = 0;
+ class = PBXLSRunLaunchConfig;
+ displayName = "Executable Runner";
+ identifier = com.apple.Xcode.launch.runConfig;
+ remoteHostInfo = "";
+ startActionInfo = "";
+ };
+ "PBXLSLaunchAction-1" = {
+ PBXLSLaunchAction = 1;
+ PBXLSLaunchStartAction = 1;
+ PBXLSLaunchStdioStyle = 2;
+ PBXLSLaunchStyle = 0;
+ class = PBXGDB_LaunchConfig;
+ displayName = GDB;
+ identifier = com.apple.Xcode.launch.GDBMI_Config;
+ remoteHostInfo = "";
+ startActionInfo = "";
+ };
+ };
+ cppStopOnCatchEnabled = 0;
+ cppStopOnThrowEnabled = 0;
+ customDataFormattersEnabled = 1;
+ debuggerPlugin = GDBDebugging;
+ disassemblyDisplayState = 0;
+ dylibVariantSuffix = _debug;
+ enableDebugStr = 0;
+ environmentEntries = (
+ {
+ active = YES;
+ name = TCL_LIBRARY;
+ value = "${SRCROOT}/../../tcl/library";
+ },
+ {
+ active = YES;
+ name = TK_LIBRARY;
+ value = "${SRCROOT}/../../tk/library";
+ },
+ {
+ active = NO;
+ name = DYLD_PRINT_LIBRARIES;
+ },
+ );
+ isa = PBXExecutable;
+ launchableReference = F9F6B1EC08E864DC00C9CB24;
+ libgmallocEnabled = 0;
+ name = tktest;
+ shlibInfoDictList = (
+ );
+ sourceDirectories = (
+ );
+ };
+ F9F6B1EC08E864DC00C9CB24 = {
+ isa = PBXFileReference;
+ lastKnownFileType = "compiled.mach-o.executable";
+ path = tktest;
+ refType = 3;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+}
diff --git a/macosx/Wish.pbproj/jingham.pbxuser b/macosx/Wish.pbproj/jingham.pbxuser
index fbdc40d..aafee5a 100644
--- a/macosx/Wish.pbproj/jingham.pbxuser
+++ b/macosx/Wish.pbproj/jingham.pbxuser
@@ -1,253 +1,25 @@
// !$*UTF8*$!
{
- 4C148E2007ECCFAC0033822E = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {494, 4311}}";
- sepNavSelRange = "{0, 0}";
- sepNavVisRect = "{{0, 0}, {490, 743}}";
- };
- };
- 4C148E2407ECCFCF0033822E = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {798, 4577}}";
- sepNavSelRange = "{6127, 0}";
- sepNavVisRect = "{{0, 1997}, {798, 411}}";
- sepNavWindowFrame = "{{332, 49}, {851, 1045}}";
+ F537552A016C352C01DC9062 = {
+ activeBuildStyle = F537552C016C352C01DC9062;
+ activeExecutable = F9F6B1E308E8648C00C9CB24;
+ activeTarget = F9D6747B08E84DC100688CAA;
+ addToTargets = (
+ );
+ codeSenseManager = F9D7368F06AD399F00DC3A31;
+ executables = (
+ F9F6B1EB08E864DC00C9CB24,
+ F9F6B1E308E8648C00C9CB24,
+ );
+ sourceControlManager = F9D7368E06AD399F00DC3A31;
+ userBuildSettings = {
+ SYMROOT = "${SRCROOT}/../../build/tk";
};
};
- 4C148E2607ECCFE30033822E = {
- fRef = F5375551016C376E01DC9062;
- isa = PBXTextBookmark;
- name = "eCTM(outContext, a, b);\n\t\tarc1 = ra";
- rLen = 35;
- rLoc = 42860;
- rType = 0;
- vrLen = 2073;
- vrLoc = 41923;
- };
- 4C148E2707ECCFE30033822E = {
- fRef = 4C148E2007ECCFAC0033822E;
- isa = PBXTextBookmark;
- name = "tkEntry.h: 1";
- rLen = 0;
- rLoc = 0;
- rType = 0;
- vrLen = 1522;
- vrLoc = 0;
- };
- 4C148E2907ECCFE30033822E = {
- fRef = F5375551016C376E01DC9062;
- isa = PBXTextBookmark;
- name = "eCTM(outContext, a, b);\n\t\tarc1 = ra";
- rLen = 35;
- rLoc = 42860;
- rType = 0;
- vrLen = 2073;
- vrLoc = 41923;
- };
- 4C148E2A07ECCFE30033822E = {
- fRef = 4C148E2007ECCFAC0033822E;
- isa = PBXTextBookmark;
- name = "tkEntry.h: 1";
- rLen = 0;
- rLoc = 0;
- rType = 0;
- vrLen = 1522;
- vrLoc = 0;
- };
- 4C148EA707ED3FB90033822E = {
- fRef = F5375553016C376E01DC9062;
- isa = PBXTextBookmark;
- name = "tkMacOSXEvent.c: 1";
- rLen = 0;
- rLoc = 0;
- rType = 0;
- vrLen = 1600;
- vrLoc = 0;
- };
- 4C148EA907ED3FB90033822E = {
- fRef = 4C148E2407ECCFCF0033822E;
- isa = PBXTextBookmark;
- name = "tkMacOSXEntry.c: 199";
- rLen = 0;
- rLoc = 8942;
- rType = 0;
- vrLen = 2219;
- vrLoc = 5710;
- };
- 4C148EAA07ED3FB90033822E = {
- fRef = F5375553016C376E01DC9062;
- isa = PBXTextBookmark;
- name = "tkMacOSXEvent.c: 1";
- rLen = 0;
- rLoc = 0;
- rType = 0;
- vrLen = 1600;
- vrLoc = 0;
- };
- 4C148EC207ED443A0033822E = {
- fRef = F537555C016C376E01DC9062;
- isa = PBXTextBookmark;
- name = GetEventParameter;
- rLen = 17;
- rLoc = 5758;
- rType = 0;
- vrLen = 2269;
- vrLoc = 5171;
- };
- 4C148EC307ED443A0033822E = {
- fRef = F5375598016C389901DC9062;
- isa = PBXTextBookmark;
- name = "tkEvent.c: 1308";
- rLen = 0;
- rLoc = 36330;
- rType = 0;
- vrLen = 2148;
- vrLoc = 43353;
- };
- 4C148EC507ED443A0033822E = {
- fRef = F537555C016C376E01DC9062;
- isa = PBXTextBookmark;
- name = GetEventParameter;
- rLen = 17;
- rLoc = 5758;
- rType = 0;
- vrLen = 2269;
- vrLoc = 5171;
- };
- 4C148EC607ED443A0033822E = {
- fRef = F5375598016C389901DC9062;
- isa = PBXTextBookmark;
- name = "tkEvent.c: 1308";
- rLen = 0;
- rLoc = 36330;
- rType = 0;
- vrLen = 2148;
- vrLoc = 43353;
- };
- 4C278C7807F285D40034F48B = {
- fRef = 4C148E2407ECCFCF0033822E;
- isa = PBXTextBookmark;
- rLen = 1;
- rLoc = 235;
- rType = 1;
- };
- 4C278C8207F2868D0034F48B = {
- fRef = F5375596016C389901DC9062;
- isa = PBXTextBookmark;
- name = EntryComputeGeometry;
- rLen = 20;
- rLoc = 61869;
- rType = 0;
- vrLen = 2258;
- vrLoc = 61869;
- };
- 4C278C8307F2868D0034F48B = {
- fRef = F5375596016C389901DC9062;
- isa = PBXTextBookmark;
- name = EntryComputeGeometry;
- rLen = 20;
- rLoc = 61869;
- rType = 0;
- vrLen = 2258;
- vrLoc = 61869;
- };
- 4C278D9C07F29B4F0034F48B = {
- fRef = F5375568016C376E01DC9062;
- isa = PBXTextBookmark;
- rLen = 7;
- rLoc = 3324;
- rType = 0;
- };
- 4C278DBA07F29FC40034F48B = {
- fRef = 4C148E2407ECCFCF0033822E;
- isa = PBXTextBookmark;
- name = "tkMacOSXEntry.c: ComputeIncDecParameters";
- rLen = 0;
- rLoc = 4218;
- rType = 0;
- vrLen = 1889;
- vrLoc = 2853;
- };
- 4C278DBC07F29FC40034F48B = {
- fRef = 4C148E2407ECCFCF0033822E;
- isa = PBXTextBookmark;
- name = "tkMacOSXEntry.c: ComputeIncDecParameters";
- rLen = 0;
- rLoc = 4218;
- rType = 0;
- vrLen = 1889;
- vrLoc = 2853;
- };
- 4C278DC607F2A0260034F48B = {
- fRef = 4CB2D7CF0619F8EB0081E375;
- isa = PBXTextBookmark;
- name = "tkMacOSXScale.c: 252";
- rLen = 0;
- rLoc = 6482;
- rType = 0;
- vrLen = 2177;
- vrLoc = 2979;
- };
- 4C278DC707F2A0260034F48B = {
- fRef = F53755CB016C389901DC9062;
- isa = PBXTextBookmark;
- name = "tkUnixScale.c: 1";
- rLen = 0;
- rLoc = 0;
- rType = 0;
- vrLen = 1734;
- vrLoc = 0;
- };
- 4C278DC807F2A0260034F48B = {
- fRef = 4CB2D7CF0619F8EB0081E375;
- isa = PBXTextBookmark;
- name = "tkMacOSXScale.c: 252";
- rLen = 0;
- rLoc = 6482;
- rType = 0;
- vrLen = 2177;
- vrLoc = 2979;
- };
- 4C278DD607F2A3110034F48B = {
- fRef = F53755CB016C389901DC9062;
- isa = PBXTextBookmark;
- name = "tkUnixScale.c: 1";
- rLen = 0;
- rLoc = 0;
- rType = 0;
- vrLen = 1734;
- vrLoc = 0;
- };
- 4C278DD707F2A3110034F48B = {
- fRef = 4C148E2407ECCFCF0033822E;
- isa = PBXTextBookmark;
- name = "tkMacOSXEntry.c: 179";
- rLen = 0;
- rLoc = 6127;
- rType = 0;
- vrLen = 926;
- vrLoc = 4974;
- };
- 4C278DD807F2A3110034F48B = {
- fRef = F5375568016C376E01DC9062;
- isa = PBXTextBookmark;
- name = " Gestalt(gestaltSystemVersion, (long*)&display->release);\n";
- rLen = 61;
- rLoc = 3320;
- rType = 0;
- vrLen = 1608;
- vrLoc = 2724;
- };
- 4CB2D7CF0619F8EB0081E375 = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {614, 6705}}";
- sepNavSelRange = "{6482, 0}";
- sepNavVisRect = "{{0, 1964}, {614, 982}}";
- sepNavWindowFrame = "{{155, 20}, {623, 726}}";
- };
+ F9D6747B08E84DC100688CAA = {
+ activeExec = 0;
};
- 4CDDF1E7052BE83A00D368E9 = {
+ F9D7368E06AD399F00DC3A31 = {
fallbackIsa = XCSourceControlManager;
isSCMEnabled = 0;
isa = PBXSourceControlManager;
@@ -255,12 +27,12 @@
};
scmType = scm.cvs;
};
- 4CDDF1E8052BE83A00D368E9 = {
+ F9D7368F06AD399F00DC3A31 = {
indexTemplatePath = "";
isa = PBXCodeSenseManager;
usesDefaults = 1;
wantsCodeCompletion = 1;
- wantsCodeCompletionAutoSuggestions = 0;
+ wantsCodeCompletionAutoSuggestions = 1;
wantsCodeCompletionCaseSensitivity = 1;
wantsCodeCompletionListAlways = 1;
wantsCodeCompletionOnlyMatchingItems = 1;
@@ -269,807 +41,138 @@
wantsCodeCompletionTabCompletes = 1;
wantsIndex = 1;
};
- 4CF74254054860EF002A4BED = {
- fileReference = F5375550016C376E01DC9062;
- isa = PBXFileBreakpoint;
- lineNumber = 1056;
- state = 1;
- };
- 4CF742790548732C002A4BED = {
- fileReference = F5375550016C376E01DC9062;
- isa = PBXFileBreakpoint;
- lineNumber = 298;
- state = 1;
- };
- 4CF7428305487DBD002A4BED = {
- fileReference = F5375550016C376E01DC9062;
- isa = PBXFileBreakpoint;
- lineNumber = 827;
- state = 1;
- };
- F537552A016C352C01DC9062 = {
- activeBuildStyle = F537552C016C352C01DC9062;
- activeExecutable = F9B92F14047876F1006F146B;
- activeTarget = F53755DF016C38D201DC9062;
- addToTargets = (
- F53755DF016C38D201DC9062,
- );
- breakpoints = (
- 4CF74254054860EF002A4BED,
- 4CF742790548732C002A4BED,
- 4CF7428305487DBD002A4BED,
+ F9F6B1E308E8648C00C9CB24 = {
+ activeArgIndex = 2147483647;
+ activeArgIndices = (
);
- codeSenseManager = 4CDDF1E8052BE83A00D368E9;
- executables = (
- F9B92F14047876F1006F146B,
+ argumentStrings = (
);
- perUserDictionary = {
- PBXConfiguration.PBXFileTableDataSource3.PBXExecutablesDataSource = {
- PBXFileTableDataSourceColumnSortingDirectionKey = "-1";
- PBXFileTableDataSourceColumnSortingKey = PBXExecutablesDataSource_NameID;
- PBXFileTableDataSourceColumnWidthsKey = (
- 22,
- 91.79736,
- );
- PBXFileTableDataSourceColumnsKey = (
- PBXExecutablesDataSource_ActiveFlagID,
- PBXExecutablesDataSource_NameID,
- );
- };
- PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
- PBXFileTableDataSourceColumnSortingDirectionKey = "-1";
- PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID;
- PBXFileTableDataSourceColumnWidthsKey = (
- 20,
- 391,
- 20,
- 73,
- 43,
- 43,
- 20,
- );
- PBXFileTableDataSourceColumnsKey = (
- PBXFileDataSource_FiletypeID,
- PBXFileDataSource_Filename_ColumnID,
- PBXFileDataSource_Built_ColumnID,
- PBXFileDataSource_ObjectSize_ColumnID,
- PBXFileDataSource_Errors_ColumnID,
- PBXFileDataSource_Warnings_ColumnID,
- PBXFileDataSource_Target_ColumnID,
- );
- };
- PBXConfiguration.PBXFileTableDataSource3.PBXFindDataSource = {
- PBXFileTableDataSourceColumnSortingDirectionKey = "-1";
- PBXFileTableDataSourceColumnSortingKey = PBXFindDataSource_LocationID;
- PBXFileTableDataSourceColumnWidthsKey = (
- 196.2974,
- 198.2085,
- );
- PBXFileTableDataSourceColumnsKey = (
- PBXFindDataSource_MessageID,
- PBXFindDataSource_LocationID,
- );
- };
- PBXConfiguration.PBXTargetDataSource.PBXTargetDataSource = {
- PBXFileTableDataSourceColumnSortingDirectionKey = "-1";
- PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID;
- PBXFileTableDataSourceColumnWidthsKey = (
- 20,
- 10,
- 10,
- 20,
- 10,
- 43,
- 43,
- );
- PBXFileTableDataSourceColumnsKey = (
- PBXFileDataSource_FiletypeID,
- PBXFileDataSource_Filename_ColumnID,
- PBXTargetDataSource_PrimaryAttribute,
- PBXFileDataSource_Built_ColumnID,
- PBXFileDataSource_ObjectSize_ColumnID,
- PBXFileDataSource_Errors_ColumnID,
- PBXFileDataSource_Warnings_ColumnID,
- );
- };
- PBXPerProjectTemplateStateSaveDate = 133329667;
- PBXPrepackagedSmartGroups_v2 = (
- {
- PBXTransientLocationAtTop = bottom;
- absolutePathToBundle = "";
- activationKey = OldTargetSmartGroup;
- clz = PBXTargetSmartGroup;
- description = "Displays all targets of the project.";
- globalID = 1C37FABC04509CD000000102;
- name = Targets;
- preferences = {
- image = Targets;
- };
- },
- {
- PBXTransientLocationAtTop = bottom;
- absolutePathToBundle = "";
- clz = PBXTargetSmartGroup2;
- description = "Displays all targets of the project as well as nested build phases.";
- globalID = 1C37FBAC04509CD000000102;
- name = Targets;
- preferences = {
- image = Targets;
- };
- },
- {
- PBXTransientLocationAtTop = bottom;
- absolutePathToBundle = "";
- clz = PBXExecutablesSmartGroup;
- description = "Displays all executables of the project.";
- globalID = 1C37FAAC04509CD000000102;
- name = Executables;
- preferences = {
- image = Executable;
- };
- },
- {
- " PBXTransientLocationAtTop " = bottom;
- absolutePathToBundle = "";
- clz = PBXErrorsWarningsSmartGroup;
- description = "Displays files with errors or warnings.";
- globalID = 1C08E77C0454961000C914BD;
- name = "Errors and Warnings";
- preferences = {
- fnmatch = "";
- image = WarningsErrors;
- recursive = 1;
- regex = "";
- root = "<PROJECT>";
- };
- },
- {
- PBXTransientLocationAtTop = bottom;
- absolutePathToBundle = "";
- clz = PBXFilenameSmartGroup;
- description = "Filters items in a given group (potentially recursively) based on matching the name with the regular expression of the filter.";
- globalID = 1CC0EA4004350EF90044410B;
- name = "Implementation Files";
- preferences = {
- canSave = 1;
- fnmatch = "";
- image = SmartFolder;
- isLeaf = 0;
- recursive = 1;
- regex = "?*\\.[mcMC]";
- root = "<PROJECT>";
- };
- },
- {
- PBXTransientLocationAtTop = bottom;
- absolutePathToBundle = "";
- clz = PBXFilenameSmartGroup;
- description = "This group displays Interface Builder NIB Files.";
- globalID = 1CC0EA4004350EF90041110B;
- name = "NIB Files";
- preferences = {
- canSave = 1;
- fnmatch = "*.nib";
- image = SmartFolder;
- isLeaf = 0;
- recursive = 1;
- regex = "";
- root = "<PROJECT>";
- };
- },
- {
- PBXTransientLocationAtTop = no;
- absolutePathToBundle = "";
- clz = PBXFindSmartGroup;
- description = "Displays Find Results.";
- globalID = 1C37FABC05509CD000000102;
- name = "Find Results";
- preferences = {
- image = spyglass;
- };
- },
- {
- PBXTransientLocationAtTop = no;
- absolutePathToBundle = "";
- clz = PBXBookmarksSmartGroup;
- description = "Displays Project Bookmarks.";
- globalID = 1C37FABC05539CD112110102;
- name = Bookmarks;
- preferences = {
- image = Bookmarks;
- };
- },
- {
- PBXTransientLocationAtTop = bottom;
- absolutePathToBundle = "";
- clz = XCSCMSmartGroup;
- description = "Displays files with interesting SCM status.";
- globalID = E2644B35053B69B200211256;
- name = SCM;
- preferences = {
- image = PBXRepository;
- isLeaf = 0;
- };
- },
- {
- PBXTransientLocationAtTop = bottom;
- absolutePathToBundle = "";
- clz = PBXSymbolsSmartGroup;
- description = "Displays all symbols for the project.";
- globalID = 1C37FABC04509CD000100104;
- name = "Project Symbols";
- preferences = {
- image = ProjectSymbols;
- isLeaf = 1;
- };
- },
- {
- PBXTransientLocationAtTop = bottom;
- absolutePathToBundle = "";
- clz = PBXFilenameSmartGroup;
- description = "Filters items in a given group (potentially recursively) based on matching the name with the regular expression of the filter.";
- globalID = PBXTemplateMarker;
- name = "Simple Filter SmartGroup";
- preferences = {
- canSave = 1;
- fnmatch = "*.nib";
- image = SmartFolder;
- isLeaf = 0;
- recursive = 1;
- regex = "";
- root = "<PROJECT>";
- };
- },
- {
- PBXTransientLocationAtTop = bottom;
- absolutePathToBundle = "";
- clz = PBXFilenameSmartGroup;
- description = "Filters items in a given group (potentially recursively) based on matching the name with the regular expression of the filter.";
- globalID = PBXTemplateMarker;
- name = "Simple Regular Expression SmartGroup";
- preferences = {
- canSave = 1;
- fnmatch = "";
- image = SmartFolder;
- isLeaf = 0;
- recursive = 1;
- regex = "?*\\.[mcMC]";
- root = "<PROJECT>";
- };
- },
- {
- PBXTransientLocationAtTop = bottom;
- clz = XDDesignSmartGroup;
- description = "Displays Xdesign models";
- globalID = 2E4A936305E6979E00701470;
- name = Design;
- preferences = {
- image = Design;
- isLeaf = 0;
- };
- },
- );
- PBXWorkspaceContents = (
- {
- PBXProjectWorkspaceModule_StateKey_Rev39 = {
- PBXProjectWorkspaceModule_DataSourceSelectionKey_Rev6 = {
- BoundsStr = "{{0, 0}, {194, 474}}";
- Rows = (
- );
- VisibleRectStr = "{{0, 0}, {104, 474}}";
- };
- PBXProjectWorkspaceModule_EditorOpen = false;
- PBXProjectWorkspaceModule_EmbeddedNavigatorGroup = {
- PBXSplitModuleInNavigatorKey = {
- SplitCount = 1;
- };
- };
- PBXProjectWorkspaceModule_GeometryKey_Rev15 = {
- PBXProjectWorkspaceModule_SGTM_Geometry = {
- _collapsingFrameDimension = 199;
- _indexOfCollapsedView = 1;
- _percentageOfCollapsedView = 0.5223097;
- isCollapsed = yes;
- sizes = (
- "{{0, 0}, {301, 470}}",
- );
- };
- };
- PBXProjectWorkspaceModule_OldDetailFrame = "{{0, 0}, {119, 491}}";
- PBXProjectWorkspaceModule_OldEditorFrame = "{{0, 0}, {750, 480}}";
- PBXProjectWorkspaceModule_OldSuperviewFrame = "{{182, 0}, {119, 491}}";
- PBXProjectWorkspaceModule_SGTM = {
- PBXBottomSmartGroupGIDs = (
- 1C37FBAC04509CD000000102,
- 1C37FAAC04509CD000000102,
- 1C08E77C0454961000C914BD,
- 1C37FABC05509CD000000102,
- 1C37FABC05539CD112110102,
- E2644B35053B69B200211256,
- 1C37FABC04509CD000100104,
- 1CC0EA4004350EF90044410B,
- 1CC0EA4004350EF90041110B,
- );
- PBXSmartGroupTreeModuleColumnData = {
- PBXSmartGroupTreeModuleColumnWidthsKey = (
- 22,
- 262,
- );
- PBXSmartGroupTreeModuleColumnsKey_v4 = (
- TargetStatusColumn,
- MainColumn,
- );
- };
- PBXSmartGroupTreeModuleOutlineStateKey_v7 = {
- PBXSmartGroupTreeModuleOutlineStateExpansionKey = (
- F537552B016C352C01DC9062,
- F537552E016C376E01DC9062,
- F5375530016C376E01DC9062,
- F537553C016C376E01DC9062,
- F537553D016C376E01DC9062,
- F5375546016C376E01DC9062,
- F53755C9016C389901DC9062,
- 1C37FAAC04509CD000000102,
- );
- PBXSmartGroupTreeModuleOutlineStateSelectionKey = (
- (
- 64,
- 8,
- 6,
- 0,
- ),
- );
- PBXSmartGroupTreeModuleOutlineStateVisibleRectKey = "{{0, 1017}, {284, 452}}";
- };
- PBXTopSmartGroupGIDs = (
- );
- };
- };
- },
- );
- "PBXWorkspaceContents:PBXConfiguration.PBXModule.PBXBatchFindModule" = {
- };
- "PBXWorkspaceContents:PBXConfiguration.PBXModule.PBXBuildResultsModule" = {
- };
- "PBXWorkspaceContents:PBXConfiguration.PBXModule.PBXCVSModule" = {
- };
- "PBXWorkspaceContents:PBXConfiguration.PBXModule.PBXDebugBreakpointsModule" = {
- };
- "PBXWorkspaceContents:PBXConfiguration.PBXModule.PBXDebugCLIModule" = {
- };
- "PBXWorkspaceContents:PBXConfiguration.PBXModule.PBXDebugSessionModule" = {
- Debugger = {
- HorizontalSplitView = {
- _collapsingFrameDimension = 0;
- _indexOfCollapsedView = 0;
- _percentageOfCollapsedView = 0;
- isCollapsed = yes;
- sizes = (
- "{{0, 0}, {316, 299}}",
- "{{316, 0}, {517, 299}}",
- );
- };
- VerticalSplitView = {
- _collapsingFrameDimension = 0;
- _indexOfCollapsedView = 0;
- _percentageOfCollapsedView = 0;
- isCollapsed = yes;
- sizes = (
- "{{0, 0}, {833, 299}}",
- "{{0, 299}, {833, 306}}",
- );
- };
- };
- LauncherConfigVersion = 8;
- };
- "PBXWorkspaceContents:PBXConfiguration.PBXModule.PBXNavigatorGroup" = {
- PBXSplitModuleInNavigatorKey = {
- SplitCount = 1;
- };
- };
- "PBXWorkspaceContents:PBXConfiguration.PBXModule.PBXProjectWorkspaceModule" = {
- PBXProjectWorkspaceModule_StateKey_Rev39 = {
- PBXProjectWorkspaceModule_DataSourceSelectionKey_Rev6 = {
- BoundsStr = "{{0, 0}, {194, 474}}";
- Rows = (
- );
- VisibleRectStr = "{{0, 0}, {104, 474}}";
- };
- PBXProjectWorkspaceModule_EditorOpen = false;
- PBXProjectWorkspaceModule_EmbeddedNavigatorGroup = {
- PBXSplitModuleInNavigatorKey = {
- SplitCount = 1;
- };
- };
- PBXProjectWorkspaceModule_GeometryKey_Rev15 = {
- PBXProjectWorkspaceModule_SGTM_Geometry = {
- _collapsingFrameDimension = 199;
- _indexOfCollapsedView = 1;
- _percentageOfCollapsedView = 0.5223097;
- isCollapsed = yes;
- sizes = (
- "{{0, 0}, {301, 470}}",
- );
- };
- };
- PBXProjectWorkspaceModule_OldDetailFrame = "{{0, 0}, {119, 491}}";
- PBXProjectWorkspaceModule_OldEditorFrame = "{{0, 0}, {750, 480}}";
- PBXProjectWorkspaceModule_OldSuperviewFrame = "{{182, 0}, {119, 491}}";
- PBXProjectWorkspaceModule_SGTM = {
- PBXBottomSmartGroupGIDs = (
- 1C37FBAC04509CD000000102,
- 1C37FAAC04509CD000000102,
- 1C08E77C0454961000C914BD,
- 1C37FABC05509CD000000102,
- 1C37FABC05539CD112110102,
- E2644B35053B69B200211256,
- 1C37FABC04509CD000100104,
- 1CC0EA4004350EF90044410B,
- 1CC0EA4004350EF90041110B,
- );
- PBXSmartGroupTreeModuleColumnData = {
- PBXSmartGroupTreeModuleColumnWidthsKey = (
- 22,
- 262,
- );
- PBXSmartGroupTreeModuleColumnsKey_v4 = (
- TargetStatusColumn,
- MainColumn,
- );
- };
- PBXSmartGroupTreeModuleOutlineStateKey_v7 = {
- PBXSmartGroupTreeModuleOutlineStateExpansionKey = (
- F537552B016C352C01DC9062,
- F537552E016C376E01DC9062,
- F5375530016C376E01DC9062,
- F537553C016C376E01DC9062,
- F5375546016C376E01DC9062,
- F53755C9016C389901DC9062,
- 1C37FAAC04509CD000000102,
- );
- PBXSmartGroupTreeModuleOutlineStateSelectionKey = (
- (
- 112,
- 87,
- 85,
- 0,
- ),
- );
- PBXSmartGroupTreeModuleOutlineStateVisibleRectKey = "{{0, 1742}, {284, 452}}";
- };
- PBXTopSmartGroupGIDs = (
- );
- };
- };
- };
- "PBXWorkspaceContents:PBXConfiguration.PBXModule.PBXRunSessionModule" = {
- LauncherConfigVersion = 3;
- Runner = {
- HorizontalSplitView = {
- _collapsingFrameDimension = 0;
- _indexOfCollapsedView = 0;
- _percentageOfCollapsedView = 0;
- isCollapsed = yes;
- sizes = (
- "{{0, 0}, {363, 167}}",
- "{{0, 176}, {363, 267}}",
- );
- };
- VerticalSplitView = {
- _collapsingFrameDimension = 0;
- _indexOfCollapsedView = 0;
- _percentageOfCollapsedView = 0;
- isCollapsed = yes;
- sizes = (
- "{{0, 0}, {405, 443}}",
- "{{414, 0}, {514, 443}}",
- );
- };
- };
- };
- PBXWorkspaceGeometries = (
- {
- Frame = "{{0, 0}, {301, 470}}";
- PBXProjectWorkspaceModule_GeometryKey_Rev15 = {
- };
- RubberWindowFrame = "52 234 301 512 0 0 1024 746 ";
- },
- );
- "PBXWorkspaceGeometries:PBXConfiguration.PBXModule.PBXBatchFindModule" = {
- Frame = "{{0, 0}, {543, 158}}";
- WindowFrame = "{{-38, 566}, {543, 158}}";
- };
- "PBXWorkspaceGeometries:PBXConfiguration.PBXModule.PBXBuildResultsModule" = {
- Frame = "{{0, 0}, {908, 553}}";
- PBXModuleWindowStatusBarHidden = YES;
- RubberWindowFrame = "116 97 908 574 0 0 1024 746 ";
- };
- "PBXWorkspaceGeometries:PBXConfiguration.PBXModule.PBXCVSModule" = {
- Frame = "{{0, 0}, {482, 296}}";
- WindowFrame = "{{264, 214}, {482, 318}}";
- };
- "PBXWorkspaceGeometries:PBXConfiguration.PBXModule.PBXDebugBreakpointsModule" = {
- BreakpointsTreeTableConfiguration = (
- enabledColumn,
- 16,
- breakpointColumn,
- 282.583,
- );
- Frame = "{{0, 0}, {208, 494}}";
- WindowFrame = "{{264, 214}, {208, 516}}";
- };
- "PBXWorkspaceGeometries:PBXConfiguration.PBXModule.PBXDebugCLIModule" = {
- Frame = "{{0, 0}, {400, 201}}";
- PBXModuleWindowStatusBarHidden = YES;
- RubberWindowFrame = "50 718 400 222 0 0 1024 746 ";
- };
- "PBXWorkspaceGeometries:PBXConfiguration.PBXModule.PBXDebugSessionModule" = {
- DebugConsoleDrawerSize = "{100, 120}";
- DebugConsoleVisible = None;
- DebugConsoleWindowFrame = "{{248, 4}, {714, 320}}";
- DebugSTDIOWindowFrame = "{{84, 37}, {500, 300}}";
- Frame = "{{0, 0}, {833, 605}}";
- RubberWindowFrame = "170 99 833 647 0 0 1024 746 ";
- };
- "PBXWorkspaceGeometries:PBXConfiguration.PBXModule.PBXNavigatorGroup" = {
- Frame = "{{0, 0}, {750, 481}}";
- PBXModuleWindowStatusBarHidden = YES;
- RubberWindowFrame = "19 239 750 502 0 0 1024 746 ";
- };
- "PBXWorkspaceGeometries:PBXConfiguration.PBXModule.PBXProjectWorkspaceModule" = {
- Frame = "{{0, 0}, {301, 470}}";
- PBXProjectWorkspaceModule_GeometryKey_Rev15 = {
- PBXProjectWorkspaceModule_BuildResultsWindowVisible = true;
- PBXProjectWorkspaceModule_DebuggerWindowVisible = true;
- };
- RubberWindowFrame = "52 234 301 512 0 0 1024 746 ";
- };
- "PBXWorkspaceGeometries:PBXConfiguration.PBXModule.PBXRunSessionModule" = {
- Frame = "{{0, 0}, {745, 422}}";
- RubberWindowFrame = "141 272 745 464 0 0 1024 746 ";
+ configStateDict = {
+ "PBXLSLaunchAction-0" = {
+ PBXLSLaunchAction = 0;
+ PBXLSLaunchStartAction = 1;
+ PBXLSLaunchStdioStyle = 2;
+ PBXLSLaunchStyle = 0;
+ class = PBXLSRunLaunchConfig;
+ displayName = "Executable Runner";
+ identifier = com.apple.Xcode.launch.runConfig;
+ remoteHostInfo = "";
+ startActionInfo = "";
+ };
+ "PBXLSLaunchAction-1" = {
+ PBXLSLaunchAction = 1;
+ PBXLSLaunchStartAction = 1;
+ PBXLSLaunchStdioStyle = 2;
+ PBXLSLaunchStyle = 0;
+ class = PBXGDB_LaunchConfig;
+ displayName = GDB;
+ identifier = com.apple.Xcode.launch.GDBMI_Config;
+ remoteHostInfo = "";
+ startActionInfo = "";
};
- PBXWorkspaceStateSaveDate = 133329667;
- };
- perUserProjectItems = {
- 4C148E2607ECCFE30033822E = 4C148E2607ECCFE30033822E;
- 4C148E2707ECCFE30033822E = 4C148E2707ECCFE30033822E;
- 4C148E2907ECCFE30033822E = 4C148E2907ECCFE30033822E;
- 4C148E2A07ECCFE30033822E = 4C148E2A07ECCFE30033822E;
- 4C148EA707ED3FB90033822E = 4C148EA707ED3FB90033822E;
- 4C148EA907ED3FB90033822E = 4C148EA907ED3FB90033822E;
- 4C148EAA07ED3FB90033822E = 4C148EAA07ED3FB90033822E;
- 4C148EC207ED443A0033822E = 4C148EC207ED443A0033822E;
- 4C148EC307ED443A0033822E = 4C148EC307ED443A0033822E;
- 4C148EC507ED443A0033822E = 4C148EC507ED443A0033822E;
- 4C148EC607ED443A0033822E = 4C148EC607ED443A0033822E;
- 4C278C7807F285D40034F48B = 4C278C7807F285D40034F48B;
- 4C278C8207F2868D0034F48B = 4C278C8207F2868D0034F48B;
- 4C278C8307F2868D0034F48B = 4C278C8307F2868D0034F48B;
- 4C278D9C07F29B4F0034F48B = 4C278D9C07F29B4F0034F48B;
- 4C278DBA07F29FC40034F48B = 4C278DBA07F29FC40034F48B;
- 4C278DBC07F29FC40034F48B = 4C278DBC07F29FC40034F48B;
- 4C278DC607F2A0260034F48B = 4C278DC607F2A0260034F48B;
- 4C278DC707F2A0260034F48B = 4C278DC707F2A0260034F48B;
- 4C278DC807F2A0260034F48B = 4C278DC807F2A0260034F48B;
- 4C278DD607F2A3110034F48B = 4C278DD607F2A3110034F48B;
- 4C278DD707F2A3110034F48B = 4C278DD707F2A3110034F48B;
- 4C278DD807F2A3110034F48B = 4C278DD807F2A3110034F48B;
};
- sourceControlManager = 4CDDF1E7052BE83A00D368E9;
- userBuildSettings = {
- SYMROOT = "${SRCROOT}/../../build/tk";
- };
- };
- F537553E016C376E01DC9062 = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {711, 489}}";
- sepNavSelRange = "{385, 27}";
- sepNavVisRect = "{{0, 0}, {711, 428}}";
- sepNavWindowFrame = "{{203, 39}, {750, 534}}";
- };
- };
- F5375542016C376E01DC9062 = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {711, 2295}}";
- sepNavSelRange = "{502, 22}";
- sepNavVisRect = "{{0, 0}, {711, 428}}";
- sepNavWindowFrame = "{{180, 60}, {750, 534}}";
- };
- };
- F537554A016C376E01DC9062 = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {711, 22847}}";
- sepNavSelRange = "{43750, 22}";
- sepNavVisRect = "{{0, 18179}, {711, 449}}";
- sepNavWindowFrame = "{{11, 212}, {750, 534}}";
- };
- };
- F5375550016C376E01DC9062 = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {671, 23141}}";
- sepNavSelRange = "{25487, 0}";
- sepNavVisRect = "{{0, 11543}, {671, 626}}";
- sepNavWindowFrame = "{{300, 14}, {710, 732}}";
- };
- };
- F5375551016C376E01DC9062 = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {923, 28671}}";
- sepNavSelRange = "{15539, 17}";
- sepNavVisRect = "{{0, 6620}, {923, 522}}";
- sepNavWindowFrame = "{{88, 144}, {750, 534}}";
- };
- };
- F5375553016C376E01DC9062 = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {614, 4031}}";
- sepNavSelRange = "{0, 0}";
- sepNavVisRect = "{{0, 0}, {614, 982}}";
- };
- };
- F5375559016C376E01DC9062 = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {656, 49294}}";
- sepNavSelRange = "{31126, 2}";
- sepNavVisRect = "{{0, 13720}, {561, 154}}";
- };
- };
- F537555A016C376E01DC9062 = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {716, 12221}}";
- sepNavSelRange = "{23385, 2}";
- sepNavVisRect = "{{0, 10164}, {561, 154}}";
- };
- };
- F537555C016C376E01DC9062 = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {841, 11801}}";
- sepNavSelRange = "{5741, 0}";
- sepNavVisRect = "{{0, 2075}, {841, 428}}";
- };
- };
- F5375560016C376E01DC9062 = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {632, 15959}}";
- sepNavSelRange = "{20295, 0}";
- sepNavVisRect = "{{0, 8680}, {619, 641}}";
- sepNavWindowFrame = "{{202, 20}, {658, 726}}";
- };
- };
- F5375568016C376E01DC9062 = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {994, 13691}}";
- sepNavSelRange = "{3320, 61}";
- sepNavVisRect = "{{0, 1498}, {994, 538}}";
- };
- };
- F537557C016C37A601DC9062 = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {711, 3597}}";
- sepNavSelRange = "{522, 0}";
- sepNavVisRect = "{{0, 1483}, {711, 449}}";
- sepNavWindowFrame = "{{65, 165}, {750, 534}}";
- };
- };
- F537557D016C37A601DC9062 = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {653, 2897}}";
- sepNavSelRange = "{0, 0}";
- sepNavVisRect = "{{0, 1352}, {653, 654}}";
- };
- };
- F5375580016C389901DC9062 = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {711, 20075}}";
- sepNavSelRange = "{0, 0}";
- sepNavVisRect = "{{0, 0}, {711, 428}}";
- sepNavWindowFrame = "{{19, 207}, {750, 534}}";
- };
- };
- F5375583016C389901DC9062 = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {848, 66359}}";
- sepNavSelRange = "{6145, 14}";
- sepNavVisRect = "{{0, 2089}, {711, 428}}";
- sepNavWindowFrame = "{{111, 123}, {750, 534}}";
- };
- };
- F5375596016C389901DC9062 = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {614, 62621}}";
- sepNavSelRange = "{61869, 20}";
- sepNavVisRect = "{{0, 26690}, {614, 982}}";
- };
- };
- F5375598016C389901DC9062 = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {614, 28699}}";
- sepNavSelRange = "{36330, 0}";
- sepNavVisRect = "{{0, 22180}, {614, 982}}";
- };
- };
- F5375599016C389901DC9062 = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {794, 6915}}";
- sepNavSelRange = "{4072, 0}";
- sepNavVisRect = "{{0, 1708}, {794, 267}}";
- };
- };
- F53755AA016C389901DC9062 = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {711, 6607}}";
- sepNavSelRange = "{3482, 37}";
- sepNavVisRect = "{{0, 1519}, {711, 449}}";
- sepNavWindowFrame = "{{88, 144}, {750, 534}}";
- };
- };
- F53755B6016C389901DC9062 = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {711, 20313}}";
- sepNavSelRange = "{34727, 19}";
- sepNavVisRect = "{{0, 19864}, {711, 449}}";
- sepNavWindowFrame = "{{19, 207}, {750, 534}}";
- };
- };
- F53755C6016C389901DC9062 = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {923, 13579}}";
- sepNavSelRange = "{15286, 63}";
- sepNavVisRect = "{{0, 7782}, {923, 522}}";
- };
- };
- F53755CB016C389901DC9062 = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {614, 9953}}";
- sepNavSelRange = "{0, 0}";
- sepNavVisRect = "{{0, 0}, {614, 982}}";
- };
- };
- F53755DF016C38D201DC9062 = {
- activeExec = 0;
- };
- F53756A0016C4DD401DC9062 = {
- activeExec = 0;
- executables = (
- F9B92F14047876F1006F146B,
+ cppStopOnCatchEnabled = 0;
+ cppStopOnThrowEnabled = 0;
+ customDataFormattersEnabled = 1;
+ debuggerPlugin = GDBDebugging;
+ disassemblyDisplayState = 0;
+ dylibVariantSuffix = _debug;
+ enableDebugStr = 0;
+ environmentEntries = (
+ {
+ active = NO;
+ name = DYLD_PRINT_LIBRARIES;
+ },
+ );
+ isa = PBXExecutable;
+ launchableReference = F9F6B1E408E8648C00C9CB24;
+ libgmallocEnabled = 0;
+ name = Wish;
+ shlibInfoDictList = (
+ );
+ sourceDirectories = (
);
};
- F548F8CE0313CEF0016F146B = {
- activeExec = 0;
- };
- F92ED9910403D0F0006F146B = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {711, 135155}}";
- sepNavSelRange = "{0, 345}";
- sepNavVisRect = "{{0, 0}, {711, 449}}";
- sepNavWindowFrame = "{{180, 60}, {750, 534}}";
- };
+ F9F6B1E408E8648C00C9CB24 = {
+ isa = PBXFileReference;
+ lastKnownFileType = wrapper.application;
+ path = Wish.app;
+ refType = 3;
+ sourceTree = BUILT_PRODUCTS_DIR;
};
- F9B92F14047876F1006F146B = {
+ F9F6B1EB08E864DC00C9CB24 = {
activeArgIndex = 2147483647;
activeArgIndices = (
+ NO,
+ NO,
+ NO,
);
argumentStrings = (
+ "${SRCROOT}/../../tcl/tests/all.tcl",
+ "${SRCROOT}/../../tk/tests/all.tcl",
+ "-verbose \"\"",
);
configStateDict = {
+ "PBXLSLaunchAction-0" = {
+ PBXLSLaunchAction = 0;
+ PBXLSLaunchStartAction = 1;
+ PBXLSLaunchStdioStyle = 2;
+ PBXLSLaunchStyle = 0;
+ class = PBXLSRunLaunchConfig;
+ displayName = "Executable Runner";
+ identifier = com.apple.Xcode.launch.runConfig;
+ remoteHostInfo = "";
+ startActionInfo = "";
+ };
+ "PBXLSLaunchAction-1" = {
+ PBXLSLaunchAction = 1;
+ PBXLSLaunchStartAction = 1;
+ PBXLSLaunchStdioStyle = 2;
+ PBXLSLaunchStyle = 0;
+ class = PBXGDB_LaunchConfig;
+ displayName = GDB;
+ identifier = com.apple.Xcode.launch.GDBMI_Config;
+ remoteHostInfo = "";
+ startActionInfo = "";
+ };
};
cppStopOnCatchEnabled = 0;
cppStopOnThrowEnabled = 0;
customDataFormattersEnabled = 1;
debuggerPlugin = GDBDebugging;
disassemblyDisplayState = 0;
- dylibVariantSuffix = "";
- enableDebugStr = 1;
+ dylibVariantSuffix = _debug;
+ enableDebugStr = 0;
environmentEntries = (
+ {
+ active = YES;
+ name = TCL_LIBRARY;
+ value = "${SRCROOT}/../../tcl/library";
+ },
+ {
+ active = YES;
+ name = TK_LIBRARY;
+ value = "${SRCROOT}/../../tk/library";
+ },
+ {
+ active = NO;
+ name = DYLD_PRINT_LIBRARIES;
+ },
);
isa = PBXExecutable;
+ launchableReference = F9F6B1EC08E864DC00C9CB24;
libgmallocEnabled = 0;
- name = Wish;
- savedGlobals = {
- };
+ name = tktest;
shlibInfoDictList = (
);
sourceDirectories = (
);
};
+ F9F6B1EC08E864DC00C9CB24 = {
+ isa = PBXFileReference;
+ lastKnownFileType = "compiled.mach-o.executable";
+ path = tktest;
+ refType = 3;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
}
diff --git a/macosx/Wish.pbproj/project.pbxproj b/macosx/Wish.pbproj/project.pbxproj
index 9d40792..b1c72e5 100644
--- a/macosx/Wish.pbproj/project.pbxproj
+++ b/macosx/Wish.pbproj/project.pbxproj
@@ -14,12 +14,6 @@
refType = 2;
sourceTree = SOURCE_ROOT;
};
- 4C148E2107ECCFAC0033822E = {
- fileRef = 4C148E2007ECCFAC0033822E;
- isa = PBXBuildFile;
- settings = {
- };
- };
4C148E2407ECCFCF0033822E = {
fileEncoding = 5;
isa = PBXFileReference;
@@ -28,18 +22,6 @@
refType = 4;
sourceTree = "<group>";
};
- 4C148E2507ECCFCF0033822E = {
- fileRef = 4C148E2407ECCFCF0033822E;
- isa = PBXBuildFile;
- settings = {
- };
- };
- 4C278DC507F2A0050034F48B = {
- fileRef = F53755CB016C389901DC9062;
- isa = PBXBuildFile;
- settings = {
- };
- };
4C3B4CF6040B18B200C916F0 = {
fileEncoding = 5;
isa = PBXFileReference;
@@ -48,32 +30,6 @@
refType = 4;
sourceTree = "<group>";
};
- 4C3B4CF7040B18B200C916F0 = {
- fileRef = 4C3B4CF6040B18B200C916F0;
- isa = PBXBuildFile;
- settings = {
- };
- };
- 4C69CD7D061A6CA500E36205 = {
- fileRef = F53755B6016C389901DC9062;
- isa = PBXBuildFile;
- settings = {
- };
- };
- 4C8A204005E041E800C18A82 = {
- containerPortal = F537552A016C352C01DC9062;
- isa = PBXContainerItemProxy;
- proxyType = 1;
- remoteGlobalIDString = F548F8CE0313CEF0016F146B;
- remoteInfo = TkStubLibrary;
- };
- 4C8A204105E041E800C18A82 = {
- containerPortal = F537552A016C352C01DC9062;
- isa = PBXContainerItemProxy;
- proxyType = 1;
- remoteGlobalIDString = F53755DF016C38D201DC9062;
- remoteInfo = TkLibrary;
- };
4C8A204405E0421900C18A82 = {
fileEncoding = 5;
isa = PBXFileReference;
@@ -82,12 +38,6 @@
refType = 4;
sourceTree = "<group>";
};
- 4C8A204505E0421900C18A82 = {
- fileRef = 4C8A204405E0421900C18A82;
- isa = PBXBuildFile;
- settings = {
- };
- };
4CB2D7CF0619F8EB0081E375 = {
fileEncoding = 5;
isa = PBXFileReference;
@@ -114,12 +64,6 @@
refType = 0;
sourceTree = "<absolute>";
};
- 95911CC9081532D8006F6BCB = {
- fileRef = 95911CC7081532D8006F6BCB;
- isa = PBXBuildFile;
- settings = {
- };
- };
//950
//951
//952
@@ -138,87 +82,6 @@
refType = 0;
sourceTree = "<absolute>";
};
- 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 = (
- );
- isa = PBXShellScriptBuildPhase;
- 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\tln -f \"${PRODUCT_NAME}\" \"${PRODUCT_NAME}_debug\"\n\tln -fs \"Versions/Current/${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\\` +\"%Y%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\\` +\"%Y%m%d%H%M.%S\"` \"${OBJROOT}/Development.build/${PROJECT_NAME}.build/${TARGET_NAME}.build/Objects-normal/LinkFileList\"\n\tfi\nfi\n\n# fixup Framework structure\ncd \"${TARGET_BUILD_DIR}/${PRODUCT_NAME}.${WRAPPER_EXTENSION}/Versions/${FRAMEWORK_VERSION}\"\nln -fs `ls libtkstub* | sed -e \"s|.*|Versions/${FRAMEWORK_VERSION}/&|\"` ../..\nln -fs \"Versions/Current/tkConfig.sh\" ../..\nranlib libtkstub${FRAMEWORK_VERSION}*.a\n\n# create pkgIndex\n( echo \"if {[package vcompare [package provide Tcl] ${FRAMEWORK_VERSION}] != 0} { return }\" && \\\n echo \"package ifneeded Tk ${FRAMEWORK_VERSION} [list load [file join \\$dir .. .. Tk] Tk]\" \\\n) > \"Resources/Scripts/pkgIndex.tcl\"";
- };
F537552A016C352C01DC9062 = {
buildSettings = {
};
@@ -232,9 +95,7 @@
productRefGroup = F53755DD016C38D201DC9062;
projectDirPath = "";
targets = (
- F53756A0016C4DD401DC9062,
- F53755DF016C38D201DC9062,
- F548F8CE0313CEF0016F146B,
+ F9D6747B08E84DC100688CAA,
);
};
F537552B016C352C01DC9062 = {
@@ -257,26 +118,16 @@
};
F537552C016C352C01DC9062 = {
buildSettings = {
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_ENABLE_FIX_AND_CONTINUE = YES;
- GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- OTHER_LDFLAGS = "\U0001-prebind";
- TEMP_DIR = "${OBJROOT}/Development.build/$(PROJECT_NAME).build/$(TARGET_NAME).build";
- UNSTRIPPED_PRODUCT = YES;
- ZERO_LINK = YES;
+ BUILD_STYLE = Development;
+ MAKE_TARGET = develop;
};
isa = PBXBuildStyle;
name = Development;
};
F537552D016C352C01DC9062 = {
buildSettings = {
- DEBUGGING_SYMBOLS = NO;
- GCC_ENABLE_FIX_AND_CONTINUE = NO;
- OPTIMIZATION_CFLAGS = "-Os";
- OTHER_LDFLAGS = "\U0001-prebind";
- TEMP_DIR = "${OBJROOT}/Deployment.build/$(PROJECT_NAME).build/$(TARGET_NAME).build";
- ZERO_LINK = NO;
+ BUILD_STYLE = Deployment;
+ MAKE_TARGET = deploy;
};
isa = PBXBuildStyle;
name = Deployment;
@@ -1893,1198 +1744,15 @@
};
F53755DD016C38D201DC9062 = {
children = (
- F53755DE016C38D201DC9062,
- F537569F016C4DD401DC9062,
- F548F8CF0313CEF0016F146B,
+ F9F6B1C008E863C200C9CB24,
+ F9F6B1BF08E863B300C9CB24,
+ F9F6B1BE08E8639A00C9CB24,
);
isa = PBXGroup;
name = Products;
refType = 4;
sourceTree = "<group>";
};
- F53755DE016C38D201DC9062 = {
- explicitFileType = wrapper.framework;
- isa = PBXFileReference;
- path = Tk.framework;
- refType = 3;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- F53755DF016C38D201DC9062 = {
- buildPhases = (
- F5877FB7031F97ED016F146B,
- F92CCC75080CEBA800E72D64,
- F53755E0016C38D201DC9062,
- F53755E1016C38D301DC9062,
- F53755E2016C38D301DC9062,
- F53755E3016C38D301DC9062,
- F53755E4016C38D301DC9062,
- F5B1FC08016FFE3501DC9062,
- F51D903F018149BD01DC9062,
- F548F8C80313C9E0016F146B,
- F5C1D51901B88F9A01DC9062,
- F52D38C5031F4259016F146B,
- F5877FBC031FA968016F146B,
- F9A61D2F04C2C861006F5A0B,
- );
- buildSettings = {
- DOCDIR = "${INSTALL_PATH}/${PRODUCT_NAME}.${WRAPPER_EXTENSION}/Versions/${FRAMEWORK_VERSION}/Resources/Documentation/Reference";
- DYLIB_COMPATIBILITY_VERSION = 8.5;
- DYLIB_CURRENT_VERSION = "$(FRAMEWORK_VERSION)";
- DYLIB_INSTALL_PATH = /Library/Frameworks;
- FRAMEWORK_SEARCH_PATHS = "\"$(TCL_FRAMEWORK_DIR)\"";
- FRAMEWORK_VERSION = 8.5;
- GLOBAL_CFLAGS = "`source \"${TCL_FRAMEWORK_DIR}/Tcl.framework/tclConfig.sh\"; echo $${}{TCL_EXTRA_CFLAGS} $${}{TCL_DEFS} | sed -e 's|\\\\\\\\\\\\\\\"|\\\"|g' -e 's|\\\\\\\\\\\\ |_|g' -e 's|TCL_WIDE_INT_TYPE|BOGUS_&|'` -U_REENTRANT";
- HEADER_SEARCH_PATHS = "\"$(TCL_FRAMEWORK_DIR)/Tcl.framework/Headers\" \"$(TCL_FRAMEWORK_DIR)/Tcl.framework/PrivateHeaders\" . ../bitmaps ../generic ../xlib";
- INSTALL_PATH = "${DYLIB_INSTALL_PATH}";
- LIBRARY_SEARCH_PATHS = "\"$(TCL_FRAMEWORK_DIR)/Tcl.framework\"";
- OPTIMIZATION_CFLAGS = "-O0";
- OTHER_CFLAGS = "-DMAC_OSX_TK -DUSE_TCL_STUBS -DTCL_WIDE_INT_TYPE=\"long long\" -DTK_FRAMEWORK -DTK_FRAMEWORK_VERSION=\\\\\\\"$(FRAMEWORK_VERSION)\\\\\\\"";
- OTHER_LDFLAGS = "-ltclstub${FRAMEWORK_VERSION} -seg1addr 0xb000000 -Wl,-search_paths_first -Wl,-unexported_symbols_list \"${TEMP_DIR}/tclstub.exp\"";
- OTHER_LIBTOOL_FLAGS = "";
- OTHER_REZFLAGS = "-i \"$(TCL_FRAMEWORK_DIR)/Tcl.framework/Headers\" -i \"../generic\"";
- PRECOMPILE_PREFIX_HEADER = YES;
- PRINCIPAL_CLASS = "";
- PRODUCT_NAME = Tk;
- SECTORDER_FLAGS = "";
- SYMROOT = "${SRCROOT}/../../build/tk";
- TCLSH_DIR = "$(TCL_FRAMEWORK_DIR)";
- TCLTKMAN2HTML = "";
- TCL_FRAMEWORK_DIR = "$(SYMROOT)/../tcl";
- USE_GCC3_PFE_SUPPORT = YES;
- WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas -Wno-deprecated-declarations";
- 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.5, Copyright © 2005 Tcl Core Team.
-Initial MacOS X Port by Jim Ingham &lt;jingham@apple.com&gt; &amp; Ian Reid, Copyright © 2001-2002, Apple Computer, Inc.</string>
- <key>CFBundleIdentifier</key>
- <string>com.tcltk.tklibrary</string>
- <key>CFBundleInfoDictionaryVersion</key>
- <string>6.0</string>
- <key>CFBundleName</key>
- <string>Tk Library 8.5</string>
- <key>CFBundlePackageType</key>
- <string>FMWK</string>
- <key>CFBundleShortVersionString</key>
- <string>8.5a4</string>
- <key>CFBundleSignature</key>
- <string>Tk </string>
- <key>CFBundleVersion</key>
- <string>8.5a4</string>
-</dict>
-</plist>
-";
- };
- 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,
- F5375603016C397D01DC9062,
- F537566E016C3A1F01DC9062,
- F537566F016C3A1F01DC9062,
- F5375670016C3A1F01DC9062,
- F5375671016C3A1F01DC9062,
- F5375672016C3A1F01DC9062,
- F5375673016C3A1F01DC9062,
- F5375674016C3A1F01DC9062,
- F5375675016C3A1F01DC9062,
- F5375676016C3A1F01DC9062,
- F5375693016C3F1001DC9062,
- F5375694016C3F1001DC9062,
- F5375695016C3F1001DC9062,
- F5375696016C3F1001DC9062,
- F5375697016C3F1001DC9062,
- F5375698016C3F1001DC9062,
- F5375699016C3F1001DC9062,
- F537569A016C3F1001DC9062,
- F537569B016C3F1001DC9062,
- F537569C016C3F1001DC9062,
- F5BFE59002F8C45B01DC9062,
- 4C148E2107ECCFAC0033822E,
- );
- 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,
- 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,
- F5375668016C39A101DC9062,
- F537566A016C39A101DC9062,
- F537566B016C39A101DC9062,
- F537566C016C39F201DC9062,
- F5375677016C3A6D01DC9062,
- F5375678016C3A6D01DC9062,
- F5375679016C3A6D01DC9062,
- F537567A016C3A6D01DC9062,
- F537567B016C3A6D01DC9062,
- F537569E016C49C301DC9062,
- F55BC46902B2D38B01DC9062,
- F5BFE58D02F8C41501DC9062,
- F5BFE58E02F8C41501DC9062,
- 4C8A204505E0421900C18A82,
- 4C69CD7D061A6CA500E36205,
- 4C148E2507ECCFCF0033822E,
- 4C278DC507F2A0050034F48B,
- );
- isa = PBXSourcesBuildPhase;
- runOnlyForDeploymentPostprocessing = 0;
- };
- F53755E3016C38D301DC9062 = {
- buildActionMask = 2147483647;
- files = (
- F537567E016C3ADB01DC9062,
- 95911CC9081532D8006F6BCB,
- );
- 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 = (
- Public,
- );
- };
- };
- 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 = {
- ATTRIBUTES = (
- Private,
- );
- };
- };
- 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 = {
- ATTRIBUTES = (
- Private,
- );
- };
- };
- 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 = {
- };
- };
- 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 = {
- };
- };
- F5375668016C39A101DC9062 = {
- fileRef = F5375565016C376E01DC9062;
- isa = PBXBuildFile;
- settings = {
- };
- };
- F537566A016C39A101DC9062 = {
- fileRef = F5375567016C376E01DC9062;
- isa = PBXBuildFile;
- settings = {
- };
- };
- F537566B016C39A101DC9062 = {
- fileRef = F5375568016C376E01DC9062;
- isa = PBXBuildFile;
- settings = {
- };
- };
- F537566C016C39F201DC9062 = {
- fileRef = F53755CA016C389901DC9062;
- 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 = (
F5875C7B016FEF1D01DC9062,
@@ -3105,36 +1773,6 @@ Initial MacOS X Port by Jim Ingham &lt;jingham@apple.com&gt; &amp; Ian Reid, Cop
refType = 0;
sourceTree = "<absolute>";
};
- 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,
@@ -3233,343 +1871,6 @@ Initial MacOS X Port by Jim Ingham &lt;jingham@apple.com&gt; &amp; Ian Reid, Cop
refType = 2;
sourceTree = SOURCE_ROOT;
};
- 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 = {
- explicitFileType = wrapper.application;
- isa = PBXFileReference;
- path = "Wish Shell.app";
- refType = 3;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- F53756A0016C4DD401DC9062 = {
- buildPhases = (
- F5877FB8031F982D016F146B,
- F53756A1016C4DD401DC9062,
- F53756A2016C4DD401DC9062,
- F53756A4016C4DD401DC9062,
- F53756A6016C4DD401DC9062,
- F53756AA016C4DD401DC9062,
- F5EEA7050324680B016F146B,
- F55A164E032A11B1016F146B,
- F5877FBD031FAC6A016F146B,
- );
- buildSettings = {
- APPLICATION_INSTALL_PATH = "${SYSTEM_ADMIN_APPS_DIR}";
- BINDIR = /usr/bin;
- DYLIB_INSTALL_PATH = /Library/Frameworks;
- FRAMEWORK_SEARCH_PATHS = "\"$(TCL_FRAMEWORK_DIR)\" \"$(SYMROOT)\"";
- FRAMEWORK_VERSION = 8.5;
- GLOBAL_CFLAGS = "`source \"${TCL_FRAMEWORK_DIR}/Tcl.framework/tclConfig.sh\"; echo $${}{TCL_EXTRA_CFLAGS} $${}{TCL_DEFS} | sed -e 's|\\\\\\\\\\\\\\\"|\\\"|g' -e 's|\\\\\\\\\\\\ |_|g' -e 's|TCL_WIDE_INT_TYPE|BOGUS_&|'` -U_REENTRANT";
- HEADER_SEARCH_PATHS = "\"$(TCL_FRAMEWORK_DIR)/Tcl.framework/Headers\" \"$(TCL_FRAMEWORK_DIR)/Tcl.framework/PrivateHeaders\" . ../generic ../xlib";
- INSTALL_PATH = "${APPLICATION_INSTALL_PATH}";
- 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\" -headerpad_max_install_names";
- OTHER_REZFLAGS = "-i \"$(TCL_FRAMEWORK_DIR)/Tcl.framework/Headers\" -i \"../generic\"";
- PRODUCT_NAME = "Wish Shell";
- SECTORDER_FLAGS = "";
- SYMROOT = "${SRCROOT}/../../build/tk";
- TCL_FRAMEWORK_DIR = "$(SYMROOT)/../tcl";
- USE_GCC3_PFE_SUPPORT = NO;
- WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas -Wno-deprecated-declarations";
- 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>CFBundleDocumentTypes</key>
- <array>
- <dict>
- <key>CFBundleTypeExtensions</key>
- <array>
- <string>*</string>
- </array>
- <key>CFBundleTypeName</key>
- <string>NSStringPboardType</string>
- <key>CFBundleTypeOSTypes</key>
- <array>
- <string>TEXT</string>
- </array>
- <key>CFBundleTypeRole</key>
- <string>Viewer</string>
- </dict>
- </array>
- <key>CFBundleExecutable</key>
- <string>Wish Shell</string>
- <key>CFBundleGetInfoString</key>
- <string>Wish Shell 8.5, Copyright © 2005 Tcl Core Team.
-Initial MacOS X Port by Jim Ingham &lt;jingham@apple.com&gt; &amp; Ian Reid, Copyright © 2001-2002, Apple Computer, Inc.</string>
- <key>CFBundleIconFile</key>
- <string>Wish.icns</string>
- <key>CFBundleIdentifier</key>
- <string>com.tcltk.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>8.5a4</string>
- <key>CFBundleSignature</key>
- <string>WiSH</string>
- <key>CFBundleVersion</key>
- <string>8.5a4</string>
-</dict>
-</plist>
-";
- };
- F53756A1016C4DD401DC9062 = {
- buildActionMask = 2147483647;
- files = (
- F53756AC016C4E1D01DC9062,
- );
- 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,
- F53756A7016C4DD401DC9062,
- F5877FB9031F9F49016F146B,
- F979766E08499884007D2C84,
- );
- isa = PBXFrameworksBuildPhase;
- runOnlyForDeploymentPostprocessing = 0;
- };
- F53756A7016C4DD401DC9062 = {
- fileRef = F53755DE016C38D201DC9062;
- isa = PBXBuildFile;
- settings = {
- };
- };
- F53756A8016C4DD401DC9062 = {
- fileRef = F537567D016C3ADB01DC9062;
- isa = PBXBuildFile;
- settings = {
- };
- };
- F53756AA016C4DD401DC9062 = {
- buildActionMask = 2147483647;
- files = (
- 4C3B4CF7040B18B200C916F0,
- );
- isa = PBXRezBuildPhase;
- runOnlyForDeploymentPostprocessing = 0;
- };
- F53756AC016C4E1D01DC9062 = {
- fileRef = F537556B016C37A601DC9062;
- isa = PBXBuildFile;
- settings = {
- };
- };
- F53756B2016C525F01DC9062 = {
- isa = PBXTargetDependency;
- target = F53755DF016C38D201DC9062;
- targetProxy = 4C8A204105E041E800C18A82;
- };
- 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;
- };
- F548F8CE0313CEF0016F146B = {
- buildPhases = (
- F548F8CA0313CEF0016F146B,
- F548F8CB0313CEF0016F146B,
- F548F8CC0313CEF0016F146B,
- F59D847903390D7E016F146B,
- );
- buildSettings = {
- GLOBAL_CFLAGS = "`source \"${TCL_FRAMEWORK_DIR}/Tcl.framework/tclConfig.sh\"; echo $${}{TCL_EXTRA_CFLAGS} $${}{TCL_DEFS} | sed -e 's|\\\\\\\\\\\\\\\"|\\\"|g' -e 's|\\\\\\\\\\\\ |_|g' -e 's|TCL_WIDE_INT_TYPE|BOGUS_&|'` -U_REENTRANT";
- HEADER_SEARCH_PATHS = "\"$(TCL_FRAMEWORK_DIR)/Tcl.framework/Headers\" \"$(TCL_FRAMEWORK_DIR)/Tcl.framework/PrivateHeaders\" . ../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.5.a;
- REZ_EXECUTABLE = YES;
- SECTORDER_FLAGS = "";
- SYMROOT = "${SRCROOT}/../../build/tk";
- TCL_FRAMEWORK_DIR = "$(SYMROOT)/../tcl";
- WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas -Wno-deprecated-declarations";
- };
- dependencies = (
- );
- isa = PBXLibraryTarget;
- name = TkStubLibrary;
- productInstallPath = /usr/local/lib;
- productName = TkStub;
- productReference = F548F8CF0313CEF0016F146B;
- };
- F548F8CF0313CEF0016F146B = {
- explicitFileType = "compiled.mach-o.dylib";
- isa = PBXFileReference;
- path = libtkstub8.5.a;
- refType = 3;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- F548F8D00313CF11016F146B = {
- fileRef = F53755B9016C389901DC9062;
- isa = PBXBuildFile;
- settings = {
- };
- };
- F548F8D10313CF14016F146B = {
- fileRef = F53755BB016C389901DC9062;
- isa = PBXBuildFile;
- settings = {
- };
- };
- F548F8D20313CF93016F146B = {
- isa = PBXTargetDependency;
- target = F548F8CE0313CEF0016F146B;
- targetProxy = 4C8A204005E041E800C18A82;
- };
- F55A164E032A11B1016F146B = {
- buildActionMask = 2147483647;
- files = (
- );
- isa = PBXShellScriptBuildPhase;
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "if [ -n \"${EMBEDDED_BUILD:-}\" ]; then\ncd \"${TARGET_BUILD_DIR}/${PRODUCT_NAME}.${WRAPPER_EXTENSION}/Contents\"\n\n# if we are embedding frameworks, copy them into the app\nrm -rf \"Frameworks\"\nmkdir -p \"Frameworks\"\nif [ \"${DEPLOYMENT_LOCATION:-}\" = \"YES\" -o \"${ACTION}\" = \"install\" ]; then\n FWKDIR=\"${INSTALL_ROOT}${DYLIB_INSTALL_PATH}\"\nelse\n FWKDIR=\"${TARGET_BUILD_DIR}\"\nfi\ncp -fpRPH \"${FWKDIR}/Tcl.framework\" \"Frameworks\"\ncp -fpRPH \"${FWKDIR}/Tk.framework\" \"Frameworks\"\n\n# fix install names when embedding\nfix_install_id ( ) {\n chmod -RH a+w \"$1\"\n install_name_tool -id $(otool -L \"$1\" | awk \"/$(basename \"$1\")\\.framework.*[^:]\\$/ {sub(\\\"^.*/Frameworks\\\",\\\"@executable_path/../Frameworks\\\",\\$1); print \\$1}\") \"$1\"\n chmod -RH a-w \"$1\" \n}\nfix_install_name ( ) {\n chmod -RH a+w \"$1\"\n install_name_tool -change $(otool -L \"$1\" | awk \"/$2\\.framework.*[^:]\\$/ {print \\$1; sub(\\\"^.*/Frameworks\\\",\\\"@executable_path/../Frameworks\\\",\\$1); print \\$1}\") \"$1\"\n chmod -RH a-w \"$1\" \n}\nfix_install_id Frameworks/Tcl.framework/Tcl\nfix_install_id Frameworks/Tk.framework/Tk\nfix_install_name \"MacOS/${PRODUCT_NAME}\" Tcl\nfix_install_name \"MacOS/${PRODUCT_NAME}\" Tk\n\nfi";
- };
F55BC46802B2D38B01DC9062 = {
fileEncoding = 5;
isa = PBXFileReference;
@@ -3579,12 +1880,6 @@ Initial MacOS X Port by Jim Ingham &lt;jingham@apple.com&gt; &amp; Ian Reid, Cop
refType = 2;
sourceTree = SOURCE_ROOT;
};
- F55BC46902B2D38B01DC9062 = {
- fileRef = F55BC46802B2D38B01DC9062;
- isa = PBXBuildFile;
- settings = {
- };
- };
F55BC46A02B2D3F301DC9062 = {
isa = PBXFileReference;
lastKnownFileType = text;
@@ -3593,12 +1888,6 @@ Initial MacOS X Port by Jim Ingham &lt;jingham@apple.com&gt; &amp; Ian Reid, Cop
refType = 2;
sourceTree = SOURCE_ROOT;
};
- F55BC46B02B2D3F301DC9062 = {
- fileRef = F55BC46A02B2D3F301DC9062;
- isa = PBXBuildFile;
- settings = {
- };
- };
F5875C7B016FEF1D01DC9062 = {
isa = PBXFileReference;
lastKnownFileType = wrapper.framework;
@@ -3607,284 +1896,6 @@ Initial MacOS X Port by Jim Ingham &lt;jingham@apple.com&gt; &amp; Ian Reid, Cop
refType = 3;
sourceTree = BUILT_PRODUCTS_DIR;
};
- F5877FB7031F97ED016F146B = {
- buildActionMask = 8;
- files = (
- );
- isa = PBXShellScriptBuildPhase;
- 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 = (
- );
- isa = PBXShellScriptBuildPhase;
- 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 = (
- );
- isa = PBXShellScriptBuildPhase;
- runOnlyForDeploymentPostprocessing = 1;
- shellPath = /bin/sh;
- shellScript = "# redo prebinding\ncd \"${INSTALL_ROOT}/\"\nif [ ! -d usr/lib ]; then mkdir -p usr; ln -fs /usr/lib usr/; RM_USRLIB=1; fi\nif [ ! -d System ]; then ln -fs /System .; RM_SYSTEM=1; fi\nif [ ! -d ./${DYLIB_INSTALL_PATH}/Tcl.framework ]; then ln -fs ${TCL_FRAMEWORK_DIR}/Tcl.framework ./${DYLIB_INSTALL_PATH}; RM_TCL=1; fi\nredo_prebinding -r . \"./${INSTALL_PATH}/${PRODUCT_NAME}.${WRAPPER_EXTENSION}/Versions/${FRAMEWORK_VERSION}/${PRODUCT_NAME}\"\nif [ -n \"${RM_USRLIB:-}\" ]; then rm -f usr/lib; rmdir -p usr 2>&-; fi\nif [ -n \"${RM_SYSTEM:-}\" ]; then rm -f System; fi\nif [ -n \"${RM_TCL:-}\" ]; then rm -f ./${DYLIB_INSTALL_PATH}/Tcl.framework; fi\n\n# fix permissions on uninstalled products\nchmod a+w \"${TEMP_ROOT}/UninstalledProducts\"\nchmod a+w \"${TEMP_ROOT}\"/UninstalledProducts/libtkstub*.a";
- };
- F5877FBD031FAC6A016F146B = {
- buildActionMask = 8;
- files = (
- );
- isa = PBXShellScriptBuildPhase;
- runOnlyForDeploymentPostprocessing = 1;
- shellPath = /bin/sh;
- shellScript = "# redo prebinding\ncd \"${INSTALL_ROOT}/\"\nAPP_DIR=\"${PRODUCT_NAME}.${WRAPPER_EXTENSION}\"\nEXECUTABLE_DIR=\"${APP_DIR}/Contents/MacOS\"\nEXECUTABLE=\"${EXECUTABLE_DIR}/${PRODUCT_NAME}\"\nFWK_RSRC_DIR=\"${DYLIB_INSTALL_PATH}/Tk.framework/Versions/${FRAMEWORK_VERSION}/Resources\"\nif [ -z \"${EMBEDDED_BUILD:-}\" ]; then\n if [ ! -d usr/lib ]; then mkdir -p usr; ln -fs /usr/lib usr/; RM_USRLIB=1; fi\n if [ ! -d System ]; then ln -fs /System .; RM_SYSTEM=1; fi\n if [ ! -d ./${DYLIB_INSTALL_PATH}/Tcl.framework ]; then ln -fs ${TCL_FRAMEWORK_DIR}/Tcl.framework ./${DYLIB_INSTALL_PATH}; RM_TCL=1; fi\n PREBIND_OPTS=\"-r .\"\nfi\nredo_prebinding ${PREBIND_OPTS:-} -e \"./${INSTALL_PATH}/${EXECUTABLE_DIR}\" \"./${INSTALL_PATH}/${EXECUTABLE}\"\nif [ -n \"${RM_USRLIB:-}\" ]; then rm -f usr/lib; rmdir -p usr 2>&-; fi\nif [ -n \"${RM_SYSTEM:-}\" ]; then rm -f System; fi\nif [ -n \"${RM_TCL:-}\" ]; then rm -f ./${DYLIB_INSTALL_PATH}/Tcl.framework; fi\n\n# copy Wish.app into framework, install wish script & symbolic link\nif [ -z \"${EMBEDDED_BUILD:-}\" ]; then\nchmod -H a+w \"./${FWK_RSRC_DIR}\"\nif [ -e \"./${FWK_RSRC_DIR}/${APP_DIR}\" ]; then chmod -RH a+w \"./${FWK_RSRC_DIR}/${APP_DIR}\" && rm -rf \"./${FWK_RSRC_DIR}/${APP_DIR}\"; fi\ncp -fpRPH \"./${INSTALL_PATH}/${APP_DIR}\" \"./${FWK_RSRC_DIR}\"\nchmod -H ${INSTALL_MODE_FLAG} \"./${FWK_RSRC_DIR}\"\nmkdir -p \"./${BINDIR}\"\nrm -f \"./${BINDIR}/wish${FRAMEWORK_VERSION}\"\ncat > \"./${BINDIR}/wish${FRAMEWORK_VERSION}\" <<EOF\n#!/bin/sh\n\"\\$(dirname \\$0)$(echo ${BINDIR} | sed -e 's#/[^/][^/]*#/..#g')${FWK_RSRC_DIR}/${EXECUTABLE}\" \"\\$@\"\nEOF\nchmod a+x \"./${BINDIR}/wish${FRAMEWORK_VERSION}\"\nln -fs \"wish${FRAMEWORK_VERSION}\" \"./${BINDIR}/wish\"\nfi";
- };
- F59D847903390D7E016F146B = {
- buildActionMask = 2147483647;
- files = (
- );
- isa = PBXShellScriptBuildPhase;
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "if [ \"${BUILD_STYLE}\" = \"Development\" ]; then\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\\` +\"%Y%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\\` +\"%Y%m%d%H%M.%S\"` \"${OBJROOT}/Development.build/${PROJECT_NAME}.build/${TARGET_NAME}.build/Objects-normal/LinkFileList\"\n\tfi\nfi";
- };
- 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,
- F5C2EA35034D7212016F146B,
- 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 = {
fileEncoding = 5;
isa = PBXFileReference;
@@ -3903,18 +1914,6 @@ Initial MacOS X Port by Jim Ingham &lt;jingham@apple.com&gt; &amp; Ian Reid, Cop
refType = 2;
sourceTree = SOURCE_ROOT;
};
- F5BFE58D02F8C41501DC9062 = {
- fileRef = F5BFE58B02F8C41501DC9062;
- isa = PBXBuildFile;
- settings = {
- };
- };
- F5BFE58E02F8C41501DC9062 = {
- fileRef = F5BFE58C02F8C41501DC9062;
- isa = PBXBuildFile;
- settings = {
- };
- };
F5BFE58F02F8C45B01DC9062 = {
fileEncoding = 5;
isa = PBXFileReference;
@@ -3924,21 +1923,6 @@ Initial MacOS X Port by Jim Ingham &lt;jingham@apple.com&gt; &amp; Ian Reid, Cop
refType = 2;
sourceTree = SOURCE_ROOT;
};
- F5BFE59002F8C45B01DC9062 = {
- fileRef = F5BFE58F02F8C45B01DC9062;
- isa = PBXBuildFile;
- settings = {
- };
- };
- F5C1D51901B88F9A01DC9062 = {
- buildActionMask = 12;
- files = (
- );
- isa = PBXShellScriptBuildPhase;
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "# synthesize tkConfig.sh via buildTkConfig.tcl script\nexport DYLD_FRAMEWORK_PATH=\"${TCL_FRAMEWORK_DIR}\"\nTCLSH=\"${TCLSH_DIR}/tclsh${FRAMEWORK_VERSION}\"\nif [ ! -e \"${TCLSH}\" ]; then TCLSH=\"/bin/sh\"; fi\n\"${TCLSH}\" \"buildTkConfig.tcl\" \"${TCL_FRAMEWORK_DIR}/Tcl.${WRAPPER_EXTENSION}/tclConfig.sh\" \"../unix/tkConfig.sh.in\" \"${TARGET_BUILD_DIR}/${PRODUCT_NAME}.${WRAPPER_EXTENSION}/Versions/${FRAMEWORK_VERSION}/tkConfig.sh\"";
- };
F5C2EA33034D71B2016F146B = {
isa = PBXFileReference;
lastKnownFileType = text;
@@ -3947,12 +1931,6 @@ Initial MacOS X Port by Jim Ingham &lt;jingham@apple.com&gt; &amp; Ian Reid, Cop
refType = 2;
sourceTree = SOURCE_ROOT;
};
- F5C2EA35034D7212016F146B = {
- fileRef = F5C2EA33034D71B2016F146B;
- isa = PBXBuildFile;
- settings = {
- };
- };
F5C88659017D625C01DC9062 = {
children = (
F5C8865A017D625C01DC9062,
@@ -4263,15 +2241,6 @@ Initial MacOS X Port by Jim Ingham &lt;jingham@apple.com&gt; &amp; Ian Reid, Cop
refType = 2;
sourceTree = SOURCE_ROOT;
};
- F5EEA7050324680B016F146B = {
- buildActionMask = 2147483647;
- files = (
- );
- isa = PBXShellScriptBuildPhase;
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "if [ \"${BUILD_STYLE}\" = \"Development\" ]; then\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\\` +\"%Y%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\\` +\"%Y%m%d%H%M.%S\"` \"${OBJROOT}/Development.build/${PROJECT_NAME}.build/${TARGET_NAME}.build/Objects-normal/LinkFileList\"\n\tfi\nfi\n# create symbolic link to Tcl.framework if necessary\ncd \"${SYMROOT}\"\nif [ ! -e Tcl.framework -o -L Tcl.framework ]; then\n\trm -f Tcl.framework && ln -s \"${TCL_FRAMEWORK_DIR}/Tcl.framework\" .\nfi";
- };
//F50
//F51
//F52
@@ -4282,19 +2251,6 @@ Initial MacOS X Port by Jim Ingham &lt;jingham@apple.com&gt; &amp; Ian Reid, Cop
//F92
//F93
//F94
- F92CCC75080CEBA800E72D64 = {
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- isa = PBXShellScriptBuildPhase;
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "# extract global symbols in libtclstub so that we can unexport them from Tk.framework\nnm -gjp \"${TCL_FRAMEWORK_DIR}/Tcl.framework/libtclstub${FRAMEWORK_VERSION}.a\" | tail +3 > \"${TEMP_DIR}/tclstub.exp\"";
- };
F92ED9910403D0F0006F146B = {
fileEncoding = 5;
isa = PBXFileReference;
@@ -4304,20 +2260,52 @@ Initial MacOS X Port by Jim Ingham &lt;jingham@apple.com&gt; &amp; Ian Reid, Cop
refType = 2;
sourceTree = SOURCE_ROOT;
};
- F979766E08499884007D2C84 = {
- fileRef = F5875C7B016FEF1D01DC9062;
- isa = PBXBuildFile;
- settings = {
+ F9D6747B08E84DC100688CAA = {
+ buildArgumentsString = "-c \"cd \\\"${TK_SRCROOT}/macosx\\\" && ACTION=${ACTION} && CFLAGS=\\\"${CFLAGS}\\\" gnumake \\${ACTION:+\\${ACTION/clean/distclean}-}${MAKE_TARGET} INSTALL_ROOT=\\\"${DSTROOT}\\\" INSTALL_PATH=\\\"${INSTALL_PATH}\\\" PREFIX=\\\"${PREFIX}\\\" BINDIR=\\\"${BINDIR}\\\" MANDIR=\\\"${MANDIR}\\\" TCL_BUILD_DIR=\\\"${TCL_BUILD_DIR}\\\" APPLICATION_INSTALL_PATH=\\\"${APPLICATION_INSTALL_PATH}\\\" \\${EXTRA_MAKE_FLAGS} ${ALL_SETTINGS}\"";
+ buildPhases = (
+ );
+ buildSettings = {
+ APPLICATION_INSTALL_PATH = /Applications/Utilities;
+ BINDIR = "${PREFIX}/bin";
+ CFLAGS = "";
+ INSTALL_PATH = /Library/Frameworks;
+ MANDIR = "${PREFIX}/man";
+ PREFIX = /usr/local;
+ PRODUCT_NAME = Tk;
+ TCL_BUILD_DIR = "${SYMROOT}/../tcl/${BUILD_STYLE}";
+ TCL_SRCROOT = "${SRCROOT}/../../tcl";
+ TEMP_DIR = "${PROJECT_TEMP_DIR}";
+ TK_SRCROOT = "${SRCROOT}/../../tk";
};
- };
- F9A61D2F04C2C861006F5A0B = {
- buildActionMask = 8;
- files = (
+ buildToolPath = /bin/bash;
+ buildWorkingDirectory = "${SRCROOT}";
+ dependencies = (
);
- isa = PBXShellScriptBuildPhase;
- runOnlyForDeploymentPostprocessing = 1;
- shellPath = /bin/sh;
- shellScript = "if [ -z \"${EMBEDDED_BUILD:-}\" ]; then\nif [ \"${BUILD_STYLE}\" = \"Deployment\" ]; then\n\t# build html documentation\n\tif [ -n \"${TCLTKMAN2HTML}\" -o -e \"${TCL_FRAMEWORK_DIR}/Deployment/Makefile\" ]; then\n\t\texport DYLD_FRAMEWORK_PATH=\"${TCL_FRAMEWORK_DIR}\"\n\t\trm -fr \"${INSTALL_ROOT}${DOCDIR}/${PRODUCT_NAME}\"\n\t\tif [ -n \"${TCLTKMAN2HTML}\" ]; then\n\t\t\t\"${TCLSH_DIR}/tclsh${FRAMEWORK_VERSION}\" \"${TCLTKMAN2HTML}\" \\\n\t\t\t\t--srcdir=\"../..\" --tk \\\n\t\t\t\t--htmldir=\"${INSTALL_ROOT}${DOCDIR}/${PRODUCT_NAME}\"\n\t\telse\n\t\t\tgnumake -C \"${TCL_FRAMEWORK_DIR}/Deployment\" html-tk \\\n\t\t\t\tDISTDIR=\"${INSTALL_ROOT}${DOCDIR}\" \\\n\t\t\t\tTCL_EXE=\"${TCLSH_DIR}/tclsh${FRAMEWORK_VERSION}\"\n\t\t\tmv -f \"${INSTALL_ROOT}${DOCDIR}/html\" \\\n\t\t\t\t\"${INSTALL_ROOT}${DOCDIR}/${PRODUCT_NAME}\"\n\t\tfi\n\t\tln -fs contents.htm \\\n\t\t\t\"${INSTALL_ROOT}${DOCDIR}/${PRODUCT_NAME}/${PRODUCT_NAME}TOC.html\"\n\telse\n\t\techo \"Couldn't build html documentation!\"\n\tfi\nfi\nfi";
+ isa = PBXLegacyTarget;
+ name = Tk;
+ passBuildSettingsInEnvironment = 0;
+ productName = Tk;
+ };
+ F9F6B1BE08E8639A00C9CB24 = {
+ isa = PBXFileReference;
+ lastKnownFileType = wrapper.framework;
+ path = Tk.framework;
+ refType = 3;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ F9F6B1BF08E863B300C9CB24 = {
+ isa = PBXFileReference;
+ lastKnownFileType = wrapper.application;
+ path = Wish.app;
+ refType = 3;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ F9F6B1C008E863C200C9CB24 = {
+ isa = PBXFileReference;
+ lastKnownFileType = "compiled.mach-o.executable";
+ path = tktest;
+ refType = 3;
+ sourceTree = BUILT_PRODUCTS_DIR;
};
};
rootObject = F537552A016C352C01DC9062;