Code

* packaging/macosx/Resources/script,
authormjwybrow <mjwybrow@users.sourceforge.net>
Tue, 20 Jun 2006 00:17:02 +0000 (00:17 +0000)
committermjwybrow <mjwybrow@users.sourceforge.net>
Tue, 20 Jun 2006 00:17:02 +0000 (00:17 +0000)
      packaging/macosx/Resources/bin/inkscape:

      Improve quoting of shell variables.

    * packaging/macosx/ScriptExec/ScriptExec.xcodeproj/project.pbxproj:

      Xcode 2 project file for the OS X launcher.  This will build a
      Universal version of the launcher by default.  The project files for
      different versions are named differently, so this will be picked up and
      used if the package builder has a sufficiently new version of Xcode.

    * packaging/macosx/ScriptExec/ScriptExec.xcode/sveinbjornt.pbxuser,
      packaging/macosx/ScriptExec/ScriptExec.xcode/voisine.pbxuser:

      Remove unnecessary user preference files.

    * Makefile.am:

      Update the Xcode project files included when creating releases.

ChangeLog
Makefile.am
packaging/macosx/Resources/bin/inkscape
packaging/macosx/Resources/script
packaging/macosx/ScriptExec/ScriptExec.xcode/sveinbjornt.pbxuser [deleted file]
packaging/macosx/ScriptExec/ScriptExec.xcode/voisine.pbxuser [deleted file]
packaging/macosx/ScriptExec/ScriptExec.xcodeproj/project.pbxproj [new file with mode: 0644]

index 1d025998dc657b326b80b7fc370b18fe7db19041..018fa75350a15f9f87d288a81d17f98c9ee29b73 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,26 @@
+2006-06-19  Michael Wybrow  <mjwybrow@users.sourceforge.net>
+
+       * packaging/macosx/Resources/script,
+         packaging/macosx/Resources/bin/inkscape:
+
+         Improve quoting of shell variables.
+
+       * packaging/macosx/ScriptExec/ScriptExec.xcodeproj/project.pbxproj:
+
+         Xcode 2 project file for the OS X launcher.  This will build a
+         Universal version of the launcher by default.  The project files for
+         different versions are named differently, so this will be picked up and
+         used if the package builder has a sufficiently new version of Xcode.
+
+       * packaging/macosx/ScriptExec/ScriptExec.xcode/sveinbjornt.pbxuser,
+         packaging/macosx/ScriptExec/ScriptExec.xcode/voisine.pbxuser:
+
+         Remove unnecessary user preference files.
+
+       * Makefile.am:
+       
+         Update the Xcode project files included when creating releases.
+
 2006-06-13  Jon A. Cruz  <jon@joncruz.org>
 
        * TRANSLATORS, src/ui/dialog/aboutbox.cpp:
@@ -12,7 +35,8 @@
 
 2006-06-09  Jon A. Cruz  <jon@joncruz.org>
 
-       * src/object-snapper.cpp, src/selection.cpp, src/selection.h, src/seltrans.cpp:
+       * src/object-snapper.cpp, src/selection.cpp, src/selection.h,
+         src/seltrans.cpp:
 
          Applied patch #1503864.
 
@@ -27,7 +51,8 @@
 
        * src/seltrans.cpp:
 
-         Work-around for seltrans not getting calls to grab() and ungrab() as expected.
+         Work-around for seltrans not getting calls to grab() and ungrab() as
+         expected.
          Fixes bug #1501156.
 
 2006-06-07  Jon A. Cruz  <jon@joncruz.org>
index 1c7df1dc74f6c8d57790979e142fb267eab5533e..14ca7d83cfce1987f2e23dec7e33d1b48b3ad068 100644 (file)
@@ -127,8 +127,7 @@ EXTRA_DIST = \
        packaging/macosx/ScriptExec/MenuBar.nib/info.nib        \
        packaging/macosx/ScriptExec/MenuBar.nib/objects.xib     \
        packaging/macosx/ScriptExec/ScriptExec.xcode/project.pbxproj    \
-       packaging/macosx/ScriptExec/ScriptExec.xcode/sveinbjornt.pbxuser        \
-       packaging/macosx/ScriptExec/ScriptExec.xcode/voisine.pbxuser    \
+       packaging/macosx/ScriptExec/ScriptExec.xcodeproj/project.pbxproj \
        packaging/win32/inkscape.nsi    \
        packaging/win32/inkscape.nsi.uninstall  \
        packaging/win32/catalan.nsh     \
index ad8e67454cb46c3d9890e6b29ffc17424ee347ea..f26369cf7bbd48c5f1a2e2b17f3f68974820d8a5 100755 (executable)
@@ -6,24 +6,24 @@
 CWD="`(cd \"\`dirname \\\"$0\\\"\`\"; echo $PWD)`"
 TOP="`dirname \"$CWD\"`"
 
-export "DYLD_LIBRARY_PATH=$TOP/lib"
-export "PATH=$CWD:$PATH"
-export "PANGO_RC_FILE=$HOME/.inkscape-etc/pangorc"
-export "FONTCONFIG_PATH=$TOP/etc/fonts"
-export "GTK_IM_MODULE_FILE=$HOME/.inkscape-etc/gtk.immodules"
-export "GDK_PIXBUF_MODULE_FILE=$HOME/.inkscape-etc/gdk-pixbuf.loaders"
-export "GTK_DATA_PREFIX=$TOP"
-export "GTK_EXE_PREFIX=$TOP"
-export "GNOME_VFS_MODULE_CONFIG_PATH=$TOP/etc/gnome-vfs-2.0/modules"
-export "GNOME_VFS_MODULE_PATH=$TOP/lib/gnome-vfs-2.0/modules"
+export DYLD_LIBRARY_PATH="$TOP/lib"
+export PATH="$CWD:$PATH"
+export PANGO_RC_FILE="$HOME/.inkscape-etc/pangorc"
+export FONTCONFIG_PATH="$TOP/etc/fonts"
+export GTK_IM_MODULE_FILE="$HOME/.inkscape-etc/gtk.immodules"
+export GDK_PIXBUF_MODULE_FILE="$HOME/.inkscape-etc/gdk-pixbuf.loaders"
+export GTK_DATA_PREFIX="$TOP"
+export GTK_EXE_PREFIX="$TOP"
+export GNOME_VFS_MODULE_CONFIG_PATH="$TOP/etc/gnome-vfs-2.0/modules"
+export GNOME_VFS_MODULE_PATH="$TOP/lib/gnome-vfs-2.0/modules"
 
-export "INKSCAPE_SHAREDIR=$TOP"
-export "INKSCAPE_PLUGINDIR=$TOP/lib/inkscape"
-export "INKSCAPE_LOCALEDIR=$TOP/locale"
+export INKSCAPE_SHAREDIR="$TOP"
+export INKSCAPE_PLUGINDIR="$TOP/lib/inkscape"
+export INKSCAPE_LOCALEDIR="$TOP/locale"
 
 # TODO: Have to add ".UTF-8" to the LANG since ommiting causes Inkscape
 #       to crash on startup in locale_from_utf8().
-export "LANG=`grep \"\`defaults read .GlobalPreferences AppleCollationOrder \
+export LANG="`grep \"\`defaults read .GlobalPreferences AppleCollationOrder \
        2>&1\`_\" /usr/share/locale/locale.alias | tail -n1 | sed 's/\./ /' | \
        awk '{print $2}'`.UTF-8"
 
index fb67e950c2c67b97d3f0c2f58620b91071beab88..a343227c9be060dd210351ce861f4a8d9384adf2 100755 (executable)
@@ -20,7 +20,7 @@ echo ":0" > /tmp/display.$UID
 while [ "$?" == "0" -a ! -f /tmp/display.$UID ]; do
     sleep 1
 done
-export "DISPLAY=`cat /tmp/display.$UID`"
+export DISPLAY="`cat /tmp/display.$UID`"
 
 ps -wx -ocommand | grep -e '[X]11' > /dev/null || exit 11
 
diff --git a/packaging/macosx/ScriptExec/ScriptExec.xcode/sveinbjornt.pbxuser b/packaging/macosx/ScriptExec/ScriptExec.xcode/sveinbjornt.pbxuser
deleted file mode 100644 (file)
index 96c879a..0000000
+++ /dev/null
@@ -1,378 +0,0 @@
-// !$*UTF8*$!
-{
-       20286C28FDCF999611CA2CEA = {
-               activeBuildStyle = 4A9504C6FFE6A39111CA0CBA;
-               activeExecutable = B8DCE00B056DABA400C390B0;
-               activeTarget = 8D0C4E890486CD37000505A6;
-               addToTargets = (
-                       8D0C4E890486CD37000505A6,
-               );
-               breakpoints = (
-               );
-               codeSenseManager = B8DCE01A056DABA800C390B0;
-               executables = (
-                       B8DCE00B056DABA400C390B0,
-               );
-               perUserDictionary = {
-                       PBXConfiguration.PBXFileTableDataSource3.PBXErrorsWarningsDataSource = {
-                               PBXFileTableDataSourceColumnSortingDirectionKey = "-1";
-                               PBXFileTableDataSourceColumnSortingKey = PBXErrorsWarningsDataSource_LocationID;
-                               PBXFileTableDataSourceColumnWidthsKey = (
-                                       20,
-                                       480.8799,
-                                       262.2085,
-                               );
-                               PBXFileTableDataSourceColumnsKey = (
-                                       PBXErrorsWarningsDataSource_TypeID,
-                                       PBXErrorsWarningsDataSource_MessageID,
-                                       PBXErrorsWarningsDataSource_LocationID,
-                               );
-                       };
-                       PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
-                               PBXFileTableDataSourceColumnSortingDirectionKey = 1;
-                               PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID;
-                               PBXFileTableDataSourceColumnWidthsKey = (
-                                       20,
-                                       508,
-                                       20,
-                                       93,
-                                       43,
-                                       43,
-                                       20,
-                               );
-                               PBXFileTableDataSourceColumnsKey = (
-                                       PBXFileDataSource_FiletypeID,
-                                       PBXFileDataSource_Filename_ColumnID,
-                                       PBXFileDataSource_Built_ColumnID,
-                                       PBXFileDataSource_ObjectSize_ColumnID,
-                                       PBXFileDataSource_Errors_ColumnID,
-                                       PBXFileDataSource_Warnings_ColumnID,
-                                       PBXFileDataSource_Target_ColumnID,
-                               );
-                       };
-                       PBXPerProjectTemplateStateSaveDate = 91075958;
-                       PBXWorkspaceContents = (
-                               {
-                                       PBXProjectWorkspaceModule_StateKey_Rev36 = {
-                                               PBXProjectWorkspaceModule_EditorOpen = true;
-                                               PBXProjectWorkspaceModule_EmbeddedNavigatorGroup = {
-                                                       Split0 = {
-                                                               bookmark = B84D5462056DB5C5005CEF4C;
-                                                               history = (
-                                                                       B8DCE149056DAE0000C390B0,
-                                                                       B84D545F056DB5C5005CEF4C,
-                                                                       B84D5460056DB5C5005CEF4C,
-                                                               );
-                                                               prevStack = (
-                                                                       B8DCE14B056DAE0000C390B0,
-                                                                       B8DCE14C056DAE0000C390B0,
-                                                                       B84D5461056DB5C5005CEF4C,
-                                                               );
-                                                       };
-                                                       SplitCount = 1;
-                                               };
-                                               PBXProjectWorkspaceModule_OldDetailFrame = "{{0, 0}, {790, 196}}";
-                                               PBXProjectWorkspaceModule_OldEditorFrame = "{{0, 196}, {790, 741}}";
-                                               PBXProjectWorkspaceModule_OldSuperviewFrame = "{{208, 0}, {790, 937}}";
-                                               PBXProjectWorkspaceModule_SGTM = {
-                                                       PBXBottomSmartGroupGIDs = (
-                                                               1C37FBAC04509CD000000102,
-                                                               1C37FAAC04509CD000000102,
-                                                               1C08E77C0454961000C914BD,
-                                                               1CC0EA4004350EF90044410B,
-                                                               1CC0EA4004350EF90041110B,
-                                                               1C37FABC05509CD000000102,
-                                                               1C37FABC05539CD112110102,
-                                                               1C37FABC04509CD000100104,
-                                                       );
-                                                       PBXTopSmartGroupGIDs = (
-                                                       );
-                                               };
-                                       };
-                               },
-                       );
-                       "PBXWorkspaceContents:PBXConfiguration.PBXModule.PBXBuildResultsModule" = {
-                       };
-                       "PBXWorkspaceContents:PBXConfiguration.PBXModule.PBXDebugBreakpointsModule" = {
-                       };
-                       "PBXWorkspaceContents:PBXConfiguration.PBXModule.PBXDebugCLIModule" = {
-                       };
-                       "PBXWorkspaceContents:PBXConfiguration.PBXModule.PBXDebugSessionModule" = {
-                       };
-                       "PBXWorkspaceContents:PBXConfiguration.PBXModule.PBXNavigatorGroup" = {
-                               Split0 = {
-                                       bookmark = B8DCE15E056DB05A00C390B0;
-                                       history = (
-                                               B8DCE15D056DB05A00C390B0,
-                                       );
-                               };
-                               SplitCount = 1;
-                       };
-                       "PBXWorkspaceContents:PBXConfiguration.PBXModule.PBXProjectWorkspaceModule" = {
-                               PBXProjectWorkspaceModule_StateKey_Rev36 = {
-                                       PBXProjectWorkspaceModule_EditorOpen = true;
-                                       PBXProjectWorkspaceModule_EmbeddedNavigatorGroup = {
-                                               Split0 = {
-                                                       bookmark = B8DCE154056DAE0200C390B0;
-                                                       history = (
-                                                               B8DCE149056DAE0000C390B0,
-                                                               B8DCE14A056DAE0000C390B0,
-                                                       );
-                                                       prevStack = (
-                                                               B8DCE14B056DAE0000C390B0,
-                                                               B8DCE14C056DAE0000C390B0,
-                                                       );
-                                               };
-                                               SplitCount = 1;
-                                       };
-                                       PBXProjectWorkspaceModule_OldDetailFrame = "{{0, 0}, {790, 196}}";
-                                       PBXProjectWorkspaceModule_OldEditorFrame = "{{0, 196}, {790, 741}}";
-                                       PBXProjectWorkspaceModule_OldSuperviewFrame = "{{208, 0}, {790, 937}}";
-                                       PBXProjectWorkspaceModule_SGTM = {
-                                               PBXBottomSmartGroupGIDs = (
-                                                       1C37FBAC04509CD000000102,
-                                                       1C37FAAC04509CD000000102,
-                                                       1C08E77C0454961000C914BD,
-                                                       1CC0EA4004350EF90044410B,
-                                                       1CC0EA4004350EF90041110B,
-                                                       1C37FABC05509CD000000102,
-                                                       1C37FABC05539CD112110102,
-                                                       1C37FABC04509CD000100104,
-                                               );
-                                               PBXTopSmartGroupGIDs = (
-                                               );
-                                       };
-                               };
-                       };
-                       "PBXWorkspaceContents:PBXConfiguration.PBXModule.PBXRunSessionModule" = {
-                       };
-                       PBXWorkspaceGeometries = (
-                               {
-                                       Frame = "{{0, 0}, {998, 957}}";
-                                       PBXProjectWorkspaceModule_GeometryKey_Rev11 = {
-                                               PBXProjectWorkspaceModule_SGTM_Geometry = {
-                                                       _collapsingFrameDimension = 0;
-                                                       _indexOfCollapsedView = 0;
-                                                       _percentageOfCollapsedView = 0;
-                                                       sizes = (
-                                                               "{{0, 0}, {208, 937}}",
-                                                               "{{208, 0}, {790, 937}}",
-                                                       );
-                                               };
-                                       };
-                                       WindowFrame = "{{222, 112}, {998, 1019}}";
-                               },
-                       );
-                       "PBXWorkspaceGeometries:PBXConfiguration.PBXModule.PBXBuildResultsModule" = {
-                               Frame = "{{0, 0}, {480, 216}}";
-                               WindowFrame = "{{591, 638}, {480, 294}}";
-                       };
-                       "PBXWorkspaceGeometries:PBXConfiguration.PBXModule.PBXDebugBreakpointsModule" = {
-                               BreakpointsTreeTableConfiguration = (
-                                       enabledColumn,
-                                       16,
-                                       breakpointColumn,
-                                       282.583,
-                               );
-                               Frame = "{{0, 0}, {208, 494}}";
-                               WindowFrame = "{{581, 524}, {208, 516}}";
-                       };
-                       "PBXWorkspaceGeometries:PBXConfiguration.PBXModule.PBXDebugCLIModule" = {
-                               Frame = "{{0, 0}, {400, 200}}";
-                               WindowFrame = "{{114, 1150}, {400, 222}}";
-                       };
-                       "PBXWorkspaceGeometries:PBXConfiguration.PBXModule.PBXDebugSessionModule" = {
-                               DebugConsoleDrawerSize = "{100, 120}";
-                               DebugConsoleVisible = None;
-                               DebugConsoleWindowFrame = "{{200, 200}, {500, 300}}";
-                               DebugSTDIOWindowFrame = "{{200, 200}, {500, 300}}";
-                               Frame = "{{0, 0}, {745, 442}}";
-                               WindowFrame = "{{459, 525}, {745, 520}}";
-                       };
-                       "PBXWorkspaceGeometries:PBXConfiguration.PBXModule.PBXNavigatorGroup" = {
-                               Frame = "{{0, 0}, {978, 830}}";
-                               WindowFrame = "{{544, 160}, {978, 908}}";
-                       };
-                       "PBXWorkspaceGeometries:PBXConfiguration.PBXModule.PBXProjectWorkspaceModule" = {
-                               Frame = "{{0, 0}, {998, 957}}";
-                               PBXProjectWorkspaceModule_GeometryKey_Rev11 = {
-                                       PBXProjectWorkspaceModule_SGTM_Geometry = {
-                                               _collapsingFrameDimension = 0;
-                                               _indexOfCollapsedView = 0;
-                                               _percentageOfCollapsedView = 0;
-                                               sizes = (
-                                                       "{{0, 0}, {208, 937}}",
-                                                       "{{208, 0}, {790, 937}}",
-                                               );
-                                       };
-                               };
-                               WindowFrame = "{{222, 112}, {998, 1019}}";
-                       };
-                       "PBXWorkspaceGeometries:PBXConfiguration.PBXModule.PBXRunSessionModule" = {
-                               Frame = "{{0, 0}, {745, 442}}";
-                               WindowFrame = "{{518, 40}, {745, 464}}";
-                       };
-                       PBXWorkspaceStateSaveDate = 91075958;
-               };
-               perUserProjectItems = {
-                       B84D545F056DB5C5005CEF4C = B84D545F056DB5C5005CEF4C;
-                       B84D5460056DB5C5005CEF4C = B84D5460056DB5C5005CEF4C;
-                       B84D5461056DB5C5005CEF4C = B84D5461056DB5C5005CEF4C;
-                       B84D5462056DB5C5005CEF4C = B84D5462056DB5C5005CEF4C;
-                       B8DCE149056DAE0000C390B0 = B8DCE149056DAE0000C390B0;
-                       B8DCE14B056DAE0000C390B0 = B8DCE14B056DAE0000C390B0;
-                       B8DCE14C056DAE0000C390B0 = B8DCE14C056DAE0000C390B0;
-               };
-               sourceControlManager = B8DCE019056DABA800C390B0;
-               userBuildSettings = {
-               };
-       };
-       20286C2BFDCF999611CA2CEA = {
-               uiCtxt = {
-                       sepNavIntBoundsRect = "{{0, 0}, {908, 15665}}";
-                       sepNavSelRange = "{25288, 0}";
-                       sepNavVisRect = "{{0, 12586}, {751, 709}}";
-                       sepNavWindowFrame = "{{544, 160}, {978, 908}}";
-               };
-       };
-       32DBCF6D0370B57F00C91783 = {
-               uiCtxt = {
-                       sepNavIntBoundsRect = "{{0, 0}, {623, 567}}";
-                       sepNavSelRange = "{0, 0}";
-                       sepNavVisRect = "{{0, 0}, {623, 567}}";
-               };
-       };
-       8D0C4E890486CD37000505A6 = {
-               activeExec = 0;
-               executables = (
-                       B8DCE00B056DABA400C390B0,
-               );
-       };
-       8D0C4E960486CD37000505A6 = {
-               uiCtxt = {
-                       sepNavIntBoundsRect = "{{0, 0}, {711, 428}}";
-                       sepNavSelRange = "{294, 0}";
-                       sepNavVisRect = "{{0, 0}, {711, 428}}";
-                       sepNavWindowFrame = "{{217, 489}, {750, 558}}";
-               };
-       };
-       B84D545F056DB5C5005CEF4C = {
-               fRef = 20286C2BFDCF999611CA2CEA;
-               isa = PBXTextBookmark;
-               name = "main.c: 918";
-               rLen = 0;
-               rLoc = 25288;
-               rType = 0;
-               vrLen = 1061;
-               vrLoc = 24915;
-       };
-       B84D5460056DB5C5005CEF4C = {
-               fRef = B8DCE036056DABFF00C390B0;
-               isa = PBXBookmark;
-       };
-       B84D5461056DB5C5005CEF4C = {
-               fRef = 20286C2BFDCF999611CA2CEA;
-               isa = PBXTextBookmark;
-               name = "main.c: 918";
-               rLen = 0;
-               rLoc = 25288;
-               rType = 0;
-               vrLen = 1061;
-               vrLoc = 24915;
-       };
-       B84D5462056DB5C5005CEF4C = {
-               fRef = B8DCE036056DABFF00C390B0;
-               isa = PBXTextBookmark;
-               name = "outputType: 1";
-               rLen = 0;
-               rLoc = 11;
-               rType = 0;
-               vrLen = 11;
-               vrLoc = 0;
-       };
-       B8DCE00B056DABA400C390B0 = {
-               activeArgIndex = 2147483647;
-               activeArgIndices = (
-               );
-               argumentStrings = (
-               );
-               configStateDict = {
-               };
-               debuggerPlugin = GDBDebugging;
-               dylibVariantSuffix = "";
-               enableDebugStr = 1;
-               environmentEntries = (
-               );
-               isa = PBXExecutable;
-               name = ScriptExec;
-               shlibInfoDictList = (
-               );
-               sourceDirectories = (
-               );
-       };
-       B8DCE019056DABA800C390B0 = {
-               isa = PBXSourceControlManager;
-               scmConfiguration = {
-               };
-               scmType = scm.cvs;
-       };
-       B8DCE01A056DABA800C390B0 = {
-               indexTemplatePath = "";
-               isa = PBXCodeSenseManager;
-               usesDefaults = 1;
-               wantsCodeCompletion = 0;
-               wantsCodeCompletionAutoPopup = 0;
-               wantsCodeCompletionAutoSuggestions = 0;
-               wantsCodeCompletionCaseSensitivity = 1;
-               wantsCodeCompletionOnlyMatchingItems = 1;
-               wantsCodeCompletionParametersIncluded = 1;
-               wantsCodeCompletionPlaceholdersInserted = 1;
-               wantsCodeCompletionTabCompletes = 1;
-               wantsIndex = 0;
-       };
-       B8DCE034056DABFF00C390B0 = {
-               uiCtxt = {
-                       sepNavIntBoundsRect = "{{0, 0}, {751, 215}}";
-                       sepNavSelRange = "{6, 0}";
-                       sepNavVisRect = "{{0, 0}, {751, 215}}";
-                       sepNavWindowFrame = "{{240, 468}, {750, 558}}";
-               };
-       };
-       B8DCE036056DABFF00C390B0 = {
-               uiCtxt = {
-                       sepNavIntBoundsRect = "{{0, 0}, {751, 709}}";
-                       sepNavSelRange = "{11, 0}";
-                       sepNavVisRect = "{{0, 0}, {751, 709}}";
-               };
-       };
-       B8DCE149056DAE0000C390B0 = {
-               fRef = 32DBCF6D0370B57F00C91783;
-               isa = PBXTextBookmark;
-               name = "ScriptExec_Prefix.pch: 1";
-               rLen = 0;
-               rLoc = 0;
-               rType = 0;
-               vrLen = 128;
-               vrLoc = 0;
-       };
-       B8DCE14B056DAE0000C390B0 = {
-               fRef = 20286C2BFDCF999611CA2CEA;
-               isa = PBXTextBookmark;
-               name = "main.c: 124";
-               rLen = 0;
-               rLoc = 3733;
-               rType = 0;
-               vrLen = 1332;
-               vrLoc = 2912;
-       };
-       B8DCE14C056DAE0000C390B0 = {
-               fRef = 32DBCF6D0370B57F00C91783;
-               isa = PBXTextBookmark;
-               name = "ScriptExec_Prefix.pch: 1";
-               rLen = 0;
-               rLoc = 0;
-               rType = 0;
-               vrLen = 128;
-               vrLoc = 0;
-       };
-}
diff --git a/packaging/macosx/ScriptExec/ScriptExec.xcode/voisine.pbxuser b/packaging/macosx/ScriptExec/ScriptExec.xcode/voisine.pbxuser
deleted file mode 100644 (file)
index 278eceb..0000000
+++ /dev/null
@@ -1,729 +0,0 @@
-// !$*UTF8*$!
-{
-       0867D6ABFE840B52C02AAC07 = {
-               uiCtxt = {
-                       sepNavIntBoundsRect = "{{0, 0}, {608, 595}}";
-                       sepNavSelRange = "{0, 0}";
-                       sepNavVisRect = "{{0, 0}, {573, 595}}";
-               };
-       };
-       20286C28FDCF999611CA2CEA = {
-               activeBuildStyle = 4A9504C6FFE6A39111CA0CBA;
-               activeExecutable = 664C29D8060E765D006EC560;
-               activeTarget = 8D0C4E890486CD37000505A6;
-               addToTargets = (
-                       8D0C4E890486CD37000505A6,
-               );
-               codeSenseManager = 664C29E7060E7681006EC560;
-               executables = (
-                       664C29D8060E765D006EC560,
-               );
-               perUserDictionary = {
-                       PBXConfiguration.PBXFileTableDataSource3.PBXErrorsWarningsDataSource = {
-                               PBXFileTableDataSourceColumnSortingDirectionKey = "-1";
-                               PBXFileTableDataSourceColumnSortingKey = PBXErrorsWarningsDataSource_LocationID;
-                               PBXFileTableDataSourceColumnWidthsKey = (
-                                       20,
-                                       365.8799,
-                                       205.2085,
-                               );
-                               PBXFileTableDataSourceColumnsKey = (
-                                       PBXErrorsWarningsDataSource_TypeID,
-                                       PBXErrorsWarningsDataSource_MessageID,
-                                       PBXErrorsWarningsDataSource_LocationID,
-                               );
-                       };
-                       PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
-                               PBXFileTableDataSourceColumnSortingDirectionKey = "-1";
-                               PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID;
-                               PBXFileTableDataSourceColumnWidthsKey = (
-                                       20,
-                                       361,
-                                       20,
-                                       68,
-                                       43,
-                                       43,
-                                       20,
-                               );
-                               PBXFileTableDataSourceColumnsKey = (
-                                       PBXFileDataSource_FiletypeID,
-                                       PBXFileDataSource_Filename_ColumnID,
-                                       PBXFileDataSource_Built_ColumnID,
-                                       PBXFileDataSource_ObjectSize_ColumnID,
-                                       PBXFileDataSource_Errors_ColumnID,
-                                       PBXFileDataSource_Warnings_ColumnID,
-                                       PBXFileDataSource_Target_ColumnID,
-                               );
-                       };
-                       PBXPerProjectTemplateStateSaveDate = 102147745;
-                       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>";
-                                       };
-                               },
-                       );
-                       PBXWorkspaceContents = (
-                               {
-                                       PBXProjectWorkspaceModule_StateKey_Rev39 = {
-                                               PBXProjectWorkspaceModule_DEGV_Geometry = {
-                                                       _collapsingFrameDimension = 0;
-                                                       _indexOfCollapsedView = 0;
-                                                       _percentageOfCollapsedView = 0;
-                                                       isCollapsed = yes;
-                                                       sizes = (
-                                                               "{{0, 0}, {618, 0}}",
-                                                               "{{0, 0}, {618, 627}}",
-                                                       );
-                                               };
-                                               PBXProjectWorkspaceModule_DataSourceSelectionKey_Rev6 = {
-                                                       BoundsStr = "{{0, 0}, {603, 195}}";
-                                                       Rows = (
-                                                               0,
-                                                       );
-                                                       VisibleRectStr = "{{0, 0}, {0, 0}}";
-                                               };
-                                               PBXProjectWorkspaceModule_EditorOpen = true;
-                                               PBXProjectWorkspaceModule_EmbeddedNavigatorGroup = {
-                                                       PBXSplitModuleInNavigatorKey = {
-                                                               Split0 = {
-                                                                       bookmark = 669900D70616A634004446AB;
-                                                                       history = (
-                                                                               66C09CE20612C8F000E767E6,
-                                                                               66C09CE30612C8F000E767E6,
-                                                                               66C09CE40612C8F000E767E6,
-                                                                               669900D40616A634004446AB,
-                                                                               669900D50616A634004446AB,
-                                                                       );
-                                                                       prevStack = (
-                                                                               66C09CE60612C8F000E767E6,
-                                                                               66C09CE70612C8F000E767E6,
-                                                                               66C09CE80612C8F000E767E6,
-                                                                               66C09CE90612C8F000E767E6,
-                                                                               669900D60616A634004446AB,
-                                                                       );
-                                                               };
-                                                               SplitCount = 1;
-                                                       };
-                                               };
-                                               PBXProjectWorkspaceModule_GeometryKey_Rev15 = {
-                                                       PBXProjectWorkspaceModule_SGTM_Geometry = {
-                                                               _collapsingFrameDimension = 0;
-                                                               _indexOfCollapsedView = 0;
-                                                               _percentageOfCollapsedView = 0;
-                                                               sizes = (
-                                                                       "{{0, 0}, {182, 627}}",
-                                                                       "{{182, 0}, {618, 627}}",
-                                                               );
-                                                       };
-                                               };
-                                               PBXProjectWorkspaceModule_OldDetailFrame = "{{0, 0}, {618, 0}}";
-                                               PBXProjectWorkspaceModule_OldEditorFrame = "{{0, 0}, {618, 627}}";
-                                               PBXProjectWorkspaceModule_OldSuperviewFrame = "{{182, 0}, {618, 627}}";
-                                               PBXProjectWorkspaceModule_SGTM = {
-                                                       PBXBottomSmartGroupGIDs = (
-                                                               1C37FBAC04509CD000000102,
-                                                               1C37FAAC04509CD000000102,
-                                                               1C08E77C0454961000C914BD,
-                                                               1CC0EA4004350EF90044410B,
-                                                               1CC0EA4004350EF90041110B,
-                                                               1C37FABC05509CD000000102,
-                                                               1C37FABC05539CD112110102,
-                                                               E2644B35053B69B200211256,
-                                                               1C37FABC04509CD000100104,
-                                                       );
-                                                       PBXSmartGroupTreeModuleColumnData = {
-                                                               PBXSmartGroupTreeModuleColumnWidthsKey = (
-                                                                       165,
-                                                               );
-                                                               PBXSmartGroupTreeModuleColumnsKey_v4 = (
-                                                                       MainColumn,
-                                                               );
-                                                       };
-                                                       PBXSmartGroupTreeModuleOutlineStateKey_v7 = {
-                                                               PBXSmartGroupTreeModuleOutlineStateExpansionKey = (
-                                                                       20286C29FDCF999611CA2CEA,
-                                                                       20286C2AFDCF999611CA2CEA,
-                                                                       20286C2CFDCF999611CA2CEA,
-                                                                       0867D6AAFE840B52C02AAC07,
-                                                               );
-                                                               PBXSmartGroupTreeModuleOutlineStateSelectionKey = (
-                                                                       (
-                                                                               0,
-                                                                       ),
-                                                               );
-                                                               PBXSmartGroupTreeModuleOutlineStateVisibleRectKey = "{{0, 0}, {165, 609}}";
-                                                       };
-                                                       PBXTopSmartGroupGIDs = (
-                                                       );
-                                               };
-                                       };
-                               },
-                       );
-                       "PBXWorkspaceContents:PBXConfiguration.PBXModule.PBXBuildResultsModule" = {
-                       };
-                       "PBXWorkspaceContents:PBXConfiguration.PBXModule.PBXDebugCLIModule" = {
-                       };
-                       "PBXWorkspaceContents:PBXConfiguration.PBXModule.PBXDebugSessionModule" = {
-                               Debugger = {
-                                       HorizontalSplitView = {
-                                               _collapsingFrameDimension = 0;
-                                               _indexOfCollapsedView = 0;
-                                               _percentageOfCollapsedView = 0;
-                                               isCollapsed = yes;
-                                               sizes = (
-                                                       "{{0, 0}, {283, 209}}",
-                                                       "{{283, 0}, {462, 209}}",
-                                               );
-                                       };
-                                       VerticalSplitView = {
-                                               _collapsingFrameDimension = 0;
-                                               _indexOfCollapsedView = 0;
-                                               _percentageOfCollapsedView = 0;
-                                               isCollapsed = yes;
-                                               sizes = (
-                                                       "{{0, 0}, {745, 209}}",
-                                                       "{{0, 209}, {745, 213}}",
-                                               );
-                                       };
-                               };
-                               LauncherConfigVersion = 8;
-                       };
-                       "PBXWorkspaceContents:PBXConfiguration.PBXModule.PBXNavigatorGroup" = {
-                               PBXSplitModuleInNavigatorKey = {
-                                       SplitCount = 1;
-                               };
-                       };
-                       "PBXWorkspaceContents:PBXConfiguration.PBXModule.PBXProjectWorkspaceModule" = {
-                               PBXProjectWorkspaceModule_StateKey_Rev39 = {
-                                       PBXProjectWorkspaceModule_DEGV_Geometry = {
-                                               _collapsingFrameDimension = 0;
-                                               _indexOfCollapsedView = 0;
-                                               _percentageOfCollapsedView = 0;
-                                               isCollapsed = yes;
-                                               sizes = (
-                                                       "{{0, 0}, {618, 0}}",
-                                                       "{{0, 0}, {618, 627}}",
-                                               );
-                                       };
-                                       PBXProjectWorkspaceModule_DataSourceSelectionKey_Rev6 = {
-                                               BoundsStr = "{{0, 0}, {603, 15}}";
-                                               Rows = (
-                                                       0,
-                                               );
-                                               VisibleRectStr = "{{0, 0}, {0, 0}}";
-                                       };
-                                       PBXProjectWorkspaceModule_EditorOpen = true;
-                                       PBXProjectWorkspaceModule_EmbeddedNavigatorGroup = {
-                                               PBXSplitModuleInNavigatorKey = {
-                                                       Split0 = {
-                                                               bookmark = 66C09CFB061365AB00E767E6;
-                                                               history = (
-                                                                       66C09CE20612C8F000E767E6,
-                                                                       66C09CE30612C8F000E767E6,
-                                                                       66C09CE40612C8F000E767E6,
-                                                                       66C09CFA061365AB00E767E6,
-                                                               );
-                                                               prevStack = (
-                                                                       66C09CE60612C8F000E767E6,
-                                                                       66C09CE70612C8F000E767E6,
-                                                                       66C09CE80612C8F000E767E6,
-                                                                       66C09CE90612C8F000E767E6,
-                                                                       66C09CEA0612C8F000E767E6,
-                                                                       66C09CEB0612C8F000E767E6,
-                                                               );
-                                                       };
-                                                       SplitCount = 1;
-                                               };
-                                       };
-                                       PBXProjectWorkspaceModule_GeometryKey_Rev15 = {
-                                               PBXProjectWorkspaceModule_SGTM_Geometry = {
-                                                       _collapsingFrameDimension = 0;
-                                                       _indexOfCollapsedView = 0;
-                                                       _percentageOfCollapsedView = 0;
-                                                       sizes = (
-                                                               "{{0, 0}, {182, 627}}",
-                                                               "{{182, 0}, {618, 627}}",
-                                                       );
-                                               };
-                                       };
-                                       PBXProjectWorkspaceModule_OldDetailFrame = "{{0, 0}, {618, 0}}";
-                                       PBXProjectWorkspaceModule_OldEditorFrame = "{{0, 0}, {618, 627}}";
-                                       PBXProjectWorkspaceModule_OldSuperviewFrame = "{{182, 0}, {618, 627}}";
-                                       PBXProjectWorkspaceModule_SGTM = {
-                                               PBXBottomSmartGroupGIDs = (
-                                                       1C37FBAC04509CD000000102,
-                                                       1C37FAAC04509CD000000102,
-                                                       1C08E77C0454961000C914BD,
-                                                       1CC0EA4004350EF90044410B,
-                                                       1CC0EA4004350EF90041110B,
-                                                       1C37FABC05509CD000000102,
-                                                       1C37FABC05539CD112110102,
-                                                       E2644B35053B69B200211256,
-                                                       1C37FABC04509CD000100104,
-                                               );
-                                               PBXSmartGroupTreeModuleColumnData = {
-                                                       PBXSmartGroupTreeModuleColumnWidthsKey = (
-                                                               165,
-                                                       );
-                                                       PBXSmartGroupTreeModuleColumnsKey_v4 = (
-                                                               MainColumn,
-                                                       );
-                                               };
-                                               PBXSmartGroupTreeModuleOutlineStateKey_v7 = {
-                                                       PBXSmartGroupTreeModuleOutlineStateExpansionKey = (
-                                                               20286C29FDCF999611CA2CEA,
-                                                               20286C2AFDCF999611CA2CEA,
-                                                               20286C2CFDCF999611CA2CEA,
-                                                               0867D6AAFE840B52C02AAC07,
-                                                               1C08E77C0454961000C914BD,
-                                                       );
-                                                       PBXSmartGroupTreeModuleOutlineStateSelectionKey = (
-                                                               (
-                                                                       17,
-                                                               ),
-                                                       );
-                                                       PBXSmartGroupTreeModuleOutlineStateVisibleRectKey = "{{0, 0}, {165, 609}}";
-                                               };
-                                               PBXTopSmartGroupGIDs = (
-                                               );
-                                       };
-                               };
-                       };
-                       "PBXWorkspaceContents:PBXConfiguration.PBXModule.PBXRunSessionModule" = {
-                               LauncherConfigVersion = 3;
-                               Runner = {
-                                       HorizontalSplitView = {
-                                               _collapsingFrameDimension = 0;
-                                               _indexOfCollapsedView = 0;
-                                               _percentageOfCollapsedView = 0;
-                                               isCollapsed = yes;
-                                               sizes = (
-                                                       "{{0, 0}, {491, 167}}",
-                                                       "{{0, 176}, {491, 267}}",
-                                               );
-                                       };
-                                       VerticalSplitView = {
-                                               _collapsingFrameDimension = 0;
-                                               _indexOfCollapsedView = 0;
-                                               _percentageOfCollapsedView = 0;
-                                               isCollapsed = yes;
-                                               sizes = (
-                                                       "{{0, 0}, {405, 443}}",
-                                                       "{{414, 0}, {514, 443}}",
-                                               );
-                                       };
-                               };
-                       };
-                       PBXWorkspaceGeometries = (
-                               {
-                                       Frame = "{{0, 0}, {800, 627}}";
-                                       PBXProjectWorkspaceModule_GeometryKey_Rev15 = {
-                                       };
-                                       RubberWindowFrame = "54 124 800 669 0 0 1280 832 ";
-                               },
-                       );
-                       "PBXWorkspaceGeometries:PBXConfiguration.PBXModule.PBXBuildResultsModule" = {
-                               Frame = "{{0, 0}, {480, 217}}";
-                               PBXModuleWindowStatusBarHidden = YES;
-                               RubberWindowFrame = "738 441 480 238 0 0 1280 832 ";
-                       };
-                       "PBXWorkspaceGeometries:PBXConfiguration.PBXModule.PBXDebugCLIModule" = {
-                               Frame = "{{0, 0}, {400, 201}}";
-                               PBXModuleWindowStatusBarHidden = YES;
-                               RubberWindowFrame = "50 804 400 222 0 0 1280 832 ";
-                       };
-                       "PBXWorkspaceGeometries:PBXConfiguration.PBXModule.PBXDebugSessionModule" = {
-                               DebugConsoleDrawerSize = "{100, 120}";
-                               DebugConsoleVisible = None;
-                               DebugConsoleWindowFrame = "{{200, 200}, {500, 300}}";
-                               DebugSTDIOWindowFrame = "{{200, 200}, {500, 300}}";
-                               Frame = "{{0, 0}, {745, 422}}";
-                               RubberWindowFrame = "267 358 745 464 0 0 1280 832 ";
-                       };
-                       "PBXWorkspaceGeometries:PBXConfiguration.PBXModule.PBXNavigatorGroup" = {
-                               Frame = "{{0, 0}, {750, 481}}";
-                               PBXModuleWindowStatusBarHidden = YES;
-                               RubberWindowFrame = "15 325 750 502 0 0 1280 832 ";
-                       };
-                       "PBXWorkspaceGeometries:PBXConfiguration.PBXModule.PBXProjectWorkspaceModule" = {
-                               Frame = "{{0, 0}, {800, 627}}";
-                               PBXProjectWorkspaceModule_GeometryKey_Rev15 = {
-                                       PBXProjectWorkspaceModule_RunWindowVisible = true;
-                               };
-                               RubberWindowFrame = "54 124 800 669 0 0 1280 832 ";
-                       };
-                       "PBXWorkspaceGeometries:PBXConfiguration.PBXModule.PBXRunSessionModule" = {
-                               Frame = "{{0, 0}, {870, 445}}";
-                               PBXModuleWindowStatusBarHidden = YES;
-                               RubberWindowFrame = "267 356 870 466 0 0 1280 832 ";
-                       };
-                       PBXWorkspaceStateSaveDate = 102147745;
-               };
-               perUserProjectItems = {
-                       669900D40616A634004446AB = 669900D40616A634004446AB;
-                       669900D50616A634004446AB = 669900D50616A634004446AB;
-                       669900D60616A634004446AB = 669900D60616A634004446AB;
-                       669900D70616A634004446AB = 669900D70616A634004446AB;
-                       66C09CE20612C8F000E767E6 = 66C09CE20612C8F000E767E6;
-                       66C09CE30612C8F000E767E6 = 66C09CE30612C8F000E767E6;
-                       66C09CE40612C8F000E767E6 = 66C09CE40612C8F000E767E6;
-                       66C09CE60612C8F000E767E6 = 66C09CE60612C8F000E767E6;
-                       66C09CE70612C8F000E767E6 = 66C09CE70612C8F000E767E6;
-                       66C09CE80612C8F000E767E6 = 66C09CE80612C8F000E767E6;
-                       66C09CE90612C8F000E767E6 = 66C09CE90612C8F000E767E6;
-               };
-               sourceControlManager = 664C29E6060E7681006EC560;
-               userBuildSettings = {
-               };
-       };
-       20286C2BFDCF999611CA2CEA = {
-               uiCtxt = {
-                       sepNavIntBoundsRect = "{{0, 0}, {603, 6929}}";
-                       sepNavSelRange = "{6021, 0}";
-                       sepNavVisRect = "{{0, 2527}, {603, 595}}";
-                       sepNavWindowFrame = "{{15, 269}, {750, 558}}";
-               };
-       };
-       664C29D8060E765D006EC560 = {
-               activeArgIndex = 2147483647;
-               activeArgIndices = (
-               );
-               argumentStrings = (
-               );
-               configStateDict = {
-               };
-               debuggerPlugin = GDBDebugging;
-               dylibVariantSuffix = "";
-               enableDebugStr = 1;
-               environmentEntries = (
-               );
-               isa = PBXExecutable;
-               name = ScriptExec;
-               shlibInfoDictList = (
-               );
-               sourceDirectories = (
-               );
-       };
-       664C29E6060E7681006EC560 = {
-               isa = PBXSourceControlManager;
-               scmConfiguration = {
-               };
-               scmType = scm.cvs;
-       };
-       664C29E7060E7681006EC560 = {
-               indexTemplatePath = "";
-               isa = PBXCodeSenseManager;
-               usesDefaults = 1;
-               wantsCodeCompletion = 1;
-               wantsCodeCompletionAutoPopup = 0;
-               wantsCodeCompletionAutoSuggestions = 0;
-               wantsCodeCompletionCaseSensitivity = 1;
-               wantsCodeCompletionOnlyMatchingItems = 1;
-               wantsCodeCompletionParametersIncluded = 1;
-               wantsCodeCompletionPlaceholdersInserted = 1;
-               wantsCodeCompletionTabCompletes = 1;
-               wantsIndex = 1;
-       };
-       669900D40616A634004446AB = {
-               fRef = 20286C2BFDCF999611CA2CEA;
-               isa = PBXTextBookmark;
-               name = "main.c: 191";
-               rLen = 0;
-               rLoc = 6021;
-               rType = 0;
-               vrLen = 1128;
-               vrLoc = 5389;
-       };
-       669900D50616A634004446AB = {
-               fRef = 669900D90616A634004446AB;
-               isa = PBXTextBookmark;
-               rLen = 0;
-               rLoc = 2147483647;
-               rType = 0;
-       };
-       669900D60616A634004446AB = {
-               fRef = 20286C2BFDCF999611CA2CEA;
-               isa = PBXTextBookmark;
-               name = "main.c: 191";
-               rLen = 0;
-               rLoc = 6021;
-               rType = 0;
-               vrLen = 1128;
-               vrLoc = 5389;
-       };
-       669900D70616A634004446AB = {
-               fRef = 669900D80616A634004446AB;
-               isa = PBXTextBookmark;
-               name = "(null): 459";
-               rLen = 0;
-               rLoc = 14343;
-               rType = 0;
-               vrLen = 1147;
-               vrLoc = 13217;
-       };
-       669900D80616A634004446AB = {
-               isa = PBXFileReference;
-               lastKnownFileType = file;
-               name = main.c;
-               path = /Users/voisine/Desktop/ScriptExec/main.c;
-               refType = 0;
-               sourceTree = "<absolute>";
-       };
-       669900D90616A634004446AB = {
-               isa = PBXFileReference;
-               lastKnownFileType = file;
-               name = main.c;
-               path = /Users/voisine/Desktop/ScriptExec/main.c;
-               refType = 0;
-               sourceTree = "<absolute>";
-       };
-       66C09CE20612C8F000E767E6 = {
-               fRef = 8D0C4E960486CD37000505A6;
-               isa = PBXTextBookmark;
-               name = "Info.plist: 1";
-               rLen = 0;
-               rLoc = 0;
-               rType = 0;
-               vrLen = 984;
-               vrLoc = 0;
-       };
-       66C09CE30612C8F000E767E6 = {
-               fRef = 0867D6ABFE840B52C02AAC07;
-               isa = PBXTextBookmark;
-               name = "English: 1";
-               rLen = 0;
-               rLoc = 0;
-               rType = 0;
-               vrLen = 259;
-               vrLoc = 0;
-       };
-       66C09CE40612C8F000E767E6 = {
-               fRef = B8DCE048056DAC5000C390B0;
-               isa = PBXTextBookmark;
-               name = "script: 31";
-               rLen = 0;
-               rLoc = 20;
-               rType = 0;
-               vrLen = 20;
-               vrLoc = 0;
-       };
-       66C09CE60612C8F000E767E6 = {
-               fRef = 20286C2BFDCF999611CA2CEA;
-               isa = PBXTextBookmark;
-               name = "main.c: 163";
-               rLen = 0;
-               rLoc = 5767;
-               rType = 0;
-               vrLen = 858;
-               vrLoc = 4669;
-       };
-       66C09CE70612C8F000E767E6 = {
-               fRef = 8D0C4E960486CD37000505A6;
-               isa = PBXTextBookmark;
-               name = "Info.plist: 1";
-               rLen = 0;
-               rLoc = 0;
-               rType = 0;
-               vrLen = 984;
-               vrLoc = 0;
-       };
-       66C09CE80612C8F000E767E6 = {
-               fRef = 0867D6ABFE840B52C02AAC07;
-               isa = PBXTextBookmark;
-               name = "English: 1";
-               rLen = 0;
-               rLoc = 0;
-               rType = 0;
-               vrLen = 259;
-               vrLoc = 0;
-       };
-       66C09CE90612C8F000E767E6 = {
-               fRef = B8DCE048056DAC5000C390B0;
-               isa = PBXTextBookmark;
-               name = "script: 1";
-               rLen = 0;
-               rLoc = 0;
-               rType = 0;
-               vrLen = 20;
-               vrLoc = 0;
-       };
-       8D0C4E890486CD37000505A6 = {
-               activeExec = 0;
-               executables = (
-                       664C29D8060E765D006EC560,
-               );
-       };
-       8D0C4E960486CD37000505A6 = {
-               uiCtxt = {
-                       sepNavIntBoundsRect = "{{0, 0}, {573, 599}}";
-                       sepNavSelRange = "{0, 0}";
-                       sepNavVisRect = "{{0, 0}, {573, 595}}";
-               };
-       };
-       B8DCE048056DAC5000C390B0 = {
-               uiCtxt = {
-                       sepNavIntBoundsRect = "{{0, 0}, {573, 595}}";
-                       sepNavSelRange = "{797, 0}";
-                       sepNavVisRect = "{{0, 0}, {573, 595}}";
-               };
-       };
-}
diff --git a/packaging/macosx/ScriptExec/ScriptExec.xcodeproj/project.pbxproj b/packaging/macosx/ScriptExec/ScriptExec.xcodeproj/project.pbxproj
new file mode 100644 (file)
index 0000000..3d0fe01
--- /dev/null
@@ -0,0 +1,351 @@
+// !$*UTF8*$!
+{
+       archiveVersion = 1;
+       classes = {
+       };
+       objectVersion = 42;
+       objects = {
+
+/* Begin PBXBuildFile section */
+               664C29F1060ECDC4006EC560 /* openDoc in Resources */ = {isa = PBXBuildFile; fileRef = 664C29F0060ECDC4006EC560 /* openDoc */; };
+               8D0C4E8B0486CD37000505A6 /* ScriptExec_Prefix.pch in Headers */ = {isa = PBXBuildFile; fileRef = 32DBCF6D0370B57F00C91783 /* ScriptExec_Prefix.pch */; };
+               8D0C4E8D0486CD37000505A6 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 0867D6AAFE840B52C02AAC07 /* InfoPlist.strings */; };
+               8D0C4E900486CD37000505A6 /* main.c in Sources */ = {isa = PBXBuildFile; fileRef = 20286C2BFDCF999611CA2CEA /* main.c */; settings = {ATTRIBUTES = (); }; };
+               8D0C4E920486CD37000505A6 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 20286C33FDCF999611CA2CEA /* Carbon.framework */; };
+               8D0C4E930486CD37000505A6 /* libstdc++.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 0249A66BFF388E3F11CA2CEA /* libstdc++.a */; };
+               B8DCE045056DAC3500C390B0 /* MenuBar.nib in Resources */ = {isa = PBXBuildFile; fileRef = B8DCE042056DAC3500C390B0 /* MenuBar.nib */; };
+               B8DCE049056DAC5000C390B0 /* script in Resources */ = {isa = PBXBuildFile; fileRef = B8DCE048056DAC5000C390B0 /* script */; };
+               B8DCE04F056DACAE00C390B0 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B8DCE04E056DACAE00C390B0 /* Security.framework */; };
+/* End PBXBuildFile section */
+
+/* Begin PBXFileReference section */
+               0249A66BFF388E3F11CA2CEA /* libstdc++.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = "libstdc++.a"; path = "/usr/lib/libstdc++.a"; sourceTree = "<absolute>"; };
+               0867D6ABFE840B52C02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
+               20286C2BFDCF999611CA2CEA /* main.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = main.c; sourceTree = "<group>"; };
+               20286C33FDCF999611CA2CEA /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = /System/Library/Frameworks/Carbon.framework; sourceTree = "<absolute>"; };
+               32DBCF6D0370B57F00C91783 /* ScriptExec_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ScriptExec_Prefix.pch; sourceTree = "<group>"; };
+               4A9504C8FFE6A3BC11CA0CBA /* ApplicationServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ApplicationServices.framework; path = /System/Library/Frameworks/ApplicationServices.framework; sourceTree = "<absolute>"; };
+               4A9504CAFFE6A41611CA0CBA /* CoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreServices.framework; path = /System/Library/Frameworks/CoreServices.framework; sourceTree = "<absolute>"; };
+               664C29F0060ECDC4006EC560 /* openDoc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.script.sh; path = openDoc; sourceTree = "<group>"; };
+               8D0C4E960486CD37000505A6 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
+               8D0C4E970486CD37000505A6 /* ScriptExec.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ScriptExec.app; sourceTree = BUILT_PRODUCTS_DIR; };
+               B8DCE042056DAC3500C390B0 /* MenuBar.nib */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; path = MenuBar.nib; sourceTree = "<group>"; };
+               B8DCE048056DAC5000C390B0 /* script */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.script.sh; path = script; sourceTree = "<group>"; };
+               B8DCE04E056DACAE00C390B0 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = /System/Library/Frameworks/Security.framework; sourceTree = "<absolute>"; };
+/* End PBXFileReference section */
+
+/* Begin PBXFrameworksBuildPhase section */
+               8D0C4E910486CD37000505A6 /* Frameworks */ = {
+                       isa = PBXFrameworksBuildPhase;
+                       buildActionMask = 2147483647;
+                       files = (
+                               8D0C4E920486CD37000505A6 /* Carbon.framework in Frameworks */,
+                               8D0C4E930486CD37000505A6 /* libstdc++.a in Frameworks */,
+                               B8DCE04F056DACAE00C390B0 /* Security.framework in Frameworks */,
+                       );
+                       runOnlyForDeploymentPostprocessing = 0;
+               };
+/* End PBXFrameworksBuildPhase section */
+
+/* Begin PBXGroup section */
+               195DF8CFFE9D517E11CA2CBB /* Products */ = {
+                       isa = PBXGroup;
+                       children = (
+                               8D0C4E970486CD37000505A6 /* ScriptExec.app */,
+                       );
+                       name = Products;
+                       sourceTree = "<group>";
+               };
+               20286C29FDCF999611CA2CEA /* ScriptExec */ = {
+                       isa = PBXGroup;
+                       children = (
+                               20286C2AFDCF999611CA2CEA /* Sources */,
+                               20286C2CFDCF999611CA2CEA /* Resources */,
+                               20286C32FDCF999611CA2CEA /* External Frameworks and Libraries */,
+                               195DF8CFFE9D517E11CA2CBB /* Products */,
+                       );
+                       name = ScriptExec;
+                       sourceTree = "<group>";
+               };
+               20286C2AFDCF999611CA2CEA /* Sources */ = {
+                       isa = PBXGroup;
+                       children = (
+                               32DBCF6D0370B57F00C91783 /* ScriptExec_Prefix.pch */,
+                               20286C2BFDCF999611CA2CEA /* main.c */,
+                       );
+                       name = Sources;
+                       sourceTree = "<group>";
+               };
+               20286C2CFDCF999611CA2CEA /* Resources */ = {
+                       isa = PBXGroup;
+                       children = (
+                               664C29F0060ECDC4006EC560 /* openDoc */,
+                               B8DCE042056DAC3500C390B0 /* MenuBar.nib */,
+                               8D0C4E960486CD37000505A6 /* Info.plist */,
+                               B8DCE048056DAC5000C390B0 /* script */,
+                               0867D6AAFE840B52C02AAC07 /* InfoPlist.strings */,
+                       );
+                       name = Resources;
+                       sourceTree = "<group>";
+               };
+               20286C32FDCF999611CA2CEA /* External Frameworks and Libraries */ = {
+                       isa = PBXGroup;
+                       children = (
+                               20286C33FDCF999611CA2CEA /* Carbon.framework */,
+                               4A9504CAFFE6A41611CA0CBA /* CoreServices.framework */,
+                               4A9504C8FFE6A3BC11CA0CBA /* ApplicationServices.framework */,
+                               0249A66BFF388E3F11CA2CEA /* libstdc++.a */,
+                               B8DCE04E056DACAE00C390B0 /* Security.framework */,
+                       );
+                       name = "External Frameworks and Libraries";
+                       sourceTree = "<group>";
+               };
+/* End PBXGroup section */
+
+/* Begin PBXHeadersBuildPhase section */
+               8D0C4E8A0486CD37000505A6 /* Headers */ = {
+                       isa = PBXHeadersBuildPhase;
+                       buildActionMask = 2147483647;
+                       files = (
+                               8D0C4E8B0486CD37000505A6 /* ScriptExec_Prefix.pch in Headers */,
+                       );
+                       runOnlyForDeploymentPostprocessing = 0;
+               };
+/* End PBXHeadersBuildPhase section */
+
+/* Begin PBXNativeTarget section */
+               8D0C4E890486CD37000505A6 /* ScriptExec */ = {
+                       isa = PBXNativeTarget;
+                       buildConfigurationList = 78E9AE160A36A8E3000D76A8 /* Build configuration list for PBXNativeTarget "ScriptExec" */;
+                       buildPhases = (
+                               8D0C4E8A0486CD37000505A6 /* Headers */,
+                               8D0C4E8C0486CD37000505A6 /* Resources */,
+                               8D0C4E8F0486CD37000505A6 /* Sources */,
+                               8D0C4E910486CD37000505A6 /* Frameworks */,
+                               8D0C4E940486CD37000505A6 /* Rez */,
+                       );
+                       buildRules = (
+                       );
+                       dependencies = (
+                       );
+                       name = ScriptExec;
+                       productInstallPath = "$(HOME)/Applications";
+                       productName = ScriptExec;
+                       productReference = 8D0C4E970486CD37000505A6 /* ScriptExec.app */;
+                       productType = "com.apple.product-type.application";
+               };
+/* End PBXNativeTarget section */
+
+/* Begin PBXProject section */
+               20286C28FDCF999611CA2CEA /* Project object */ = {
+                       isa = PBXProject;
+                       buildConfigurationList = 78E9AE1A0A36A8E3000D76A8 /* Build configuration list for PBXProject "ScriptExec" */;
+                       hasScannedForEncodings = 1;
+                       mainGroup = 20286C29FDCF999611CA2CEA /* ScriptExec */;
+                       projectDirPath = "";
+                       targets = (
+                               8D0C4E890486CD37000505A6 /* ScriptExec */,
+                       );
+               };
+/* End PBXProject section */
+
+/* Begin PBXResourcesBuildPhase section */
+               8D0C4E8C0486CD37000505A6 /* Resources */ = {
+                       isa = PBXResourcesBuildPhase;
+                       buildActionMask = 2147483647;
+                       files = (
+                               8D0C4E8D0486CD37000505A6 /* InfoPlist.strings in Resources */,
+                               B8DCE045056DAC3500C390B0 /* MenuBar.nib in Resources */,
+                               B8DCE049056DAC5000C390B0 /* script in Resources */,
+                               664C29F1060ECDC4006EC560 /* openDoc in Resources */,
+                       );
+                       runOnlyForDeploymentPostprocessing = 0;
+               };
+/* End PBXResourcesBuildPhase section */
+
+/* Begin PBXRezBuildPhase section */
+               8D0C4E940486CD37000505A6 /* Rez */ = {
+                       isa = PBXRezBuildPhase;
+                       buildActionMask = 2147483647;
+                       files = (
+                       );
+                       runOnlyForDeploymentPostprocessing = 0;
+               };
+/* End PBXRezBuildPhase section */
+
+/* Begin PBXSourcesBuildPhase section */
+               8D0C4E8F0486CD37000505A6 /* Sources */ = {
+                       isa = PBXSourcesBuildPhase;
+                       buildActionMask = 2147483647;
+                       files = (
+                               8D0C4E900486CD37000505A6 /* main.c in Sources */,
+                       );
+                       runOnlyForDeploymentPostprocessing = 0;
+               };
+/* End PBXSourcesBuildPhase section */
+
+/* Begin PBXVariantGroup section */
+               0867D6AAFE840B52C02AAC07 /* InfoPlist.strings */ = {
+                       isa = PBXVariantGroup;
+                       children = (
+                               0867D6ABFE840B52C02AAC07 /* English */,
+                       );
+                       name = InfoPlist.strings;
+                       sourceTree = "<group>";
+               };
+/* End PBXVariantGroup section */
+
+/* Begin XCBuildConfiguration section */
+               78E9AE170A36A8E3000D76A8 /* Development */ = {
+                       isa = XCBuildConfiguration;
+                       buildSettings = {
+                               COPY_PHASE_STRIP = NO;
+                               DEBUGGING_SYMBOLS = YES;
+                               FRAMEWORK_SEARCH_PATHS = "";
+                               GCC_DYNAMIC_NO_PIC = NO;
+                               GCC_ENABLE_FIX_AND_CONTINUE = YES;
+                               GCC_ENABLE_TRIGRAPHS = NO;
+                               GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
+                               GCC_OPTIMIZATION_LEVEL = 0;
+                               GCC_PRECOMPILE_PREFIX_HEADER = YES;
+                               GCC_PREFIX_HEADER = ScriptExec_Prefix.pch;
+                               GCC_WARN_ABOUT_MISSING_PROTOTYPES = NO;
+                               GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
+                               GCC_WARN_UNKNOWN_PRAGMAS = NO;
+                               HEADER_SEARCH_PATHS = "";
+                               INFOPLIST_FILE = Info.plist;
+                               INSTALL_PATH = "$(HOME)/Applications";
+                               LIBRARY_SEARCH_PATHS = "";
+                               LIBRARY_STYLE = Static;
+                               OPTIMIZATION_CFLAGS = "-O0";
+                               OTHER_CFLAGS = "";
+                               OTHER_LDFLAGS = "";
+                               OTHER_REZFLAGS = "";
+                               PRODUCT_NAME = ScriptExec;
+                               SECTORDER_FLAGS = "";
+                               WARNING_CFLAGS = (
+                                       "-Wmost",
+                                       "-Wno-four-char-constants",
+                                       "-Wno-unknown-pragmas",
+                               );
+                               WRAPPER_EXTENSION = app;
+                               ZERO_LINK = YES;
+                       };
+                       name = Development;
+               };
+               78E9AE180A36A8E3000D76A8 /* Deployment */ = {
+                       isa = XCBuildConfiguration;
+                       buildSettings = {
+                               COPY_PHASE_STRIP = YES;
+                               FRAMEWORK_SEARCH_PATHS = "";
+                               GCC_ENABLE_FIX_AND_CONTINUE = NO;
+                               GCC_ENABLE_TRIGRAPHS = NO;
+                               GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
+                               GCC_OPTIMIZATION_LEVEL = s;
+                               GCC_PRECOMPILE_PREFIX_HEADER = YES;
+                               GCC_PREFIX_HEADER = ScriptExec_Prefix.pch;
+                               GCC_WARN_ABOUT_MISSING_PROTOTYPES = NO;
+                               GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
+                               GCC_WARN_UNKNOWN_PRAGMAS = NO;
+                               HEADER_SEARCH_PATHS = "";
+                               INFOPLIST_FILE = Info.plist;
+                               INSTALL_PATH = "$(HOME)/Applications";
+                               LIBRARY_SEARCH_PATHS = "";
+                               LIBRARY_STYLE = Static;
+                               OTHER_CFLAGS = "";
+                               OTHER_LDFLAGS = "";
+                               OTHER_REZFLAGS = "";
+                               PRODUCT_NAME = ScriptExec;
+                               SECTORDER_FLAGS = "";
+                               WARNING_CFLAGS = (
+                                       "-Wmost",
+                                       "-Wno-four-char-constants",
+                                       "-Wno-unknown-pragmas",
+                               );
+                               WRAPPER_EXTENSION = app;
+                               ZERO_LINK = NO;
+                       };
+                       name = Deployment;
+               };
+               78E9AE190A36A8E3000D76A8 /* Default */ = {
+                       isa = XCBuildConfiguration;
+                       buildSettings = {
+                               FRAMEWORK_SEARCH_PATHS = "";
+                               GCC_ENABLE_TRIGRAPHS = NO;
+                               GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
+                               GCC_PRECOMPILE_PREFIX_HEADER = YES;
+                               GCC_PREFIX_HEADER = ScriptExec_Prefix.pch;
+                               GCC_WARN_ABOUT_MISSING_PROTOTYPES = NO;
+                               GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
+                               GCC_WARN_UNKNOWN_PRAGMAS = NO;
+                               HEADER_SEARCH_PATHS = "";
+                               INFOPLIST_FILE = Info.plist;
+                               INSTALL_PATH = "$(HOME)/Applications";
+                               LIBRARY_SEARCH_PATHS = "";
+                               LIBRARY_STYLE = Static;
+                               OTHER_CFLAGS = "";
+                               OTHER_LDFLAGS = "";
+                               OTHER_REZFLAGS = "";
+                               PRODUCT_NAME = ScriptExec;
+                               SECTORDER_FLAGS = "";
+                               WARNING_CFLAGS = (
+                                       "-Wmost",
+                                       "-Wno-four-char-constants",
+                                       "-Wno-unknown-pragmas",
+                               );
+                               WRAPPER_EXTENSION = app;
+                       };
+                       name = Default;
+               };
+               78E9AE1B0A36A8E3000D76A8 /* Development */ = {
+                       isa = XCBuildConfiguration;
+                       buildSettings = {
+                               SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk;
+                       };
+                       name = Development;
+               };
+               78E9AE1C0A36A8E3000D76A8 /* Deployment */ = {
+                       isa = XCBuildConfiguration;
+                       buildSettings = {
+                               ARCHS = (
+                                       ppc,
+                                       i386,
+                               );
+                               SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk;
+                       };
+                       name = Deployment;
+               };
+               78E9AE1D0A36A8E3000D76A8 /* Default */ = {
+                       isa = XCBuildConfiguration;
+                       buildSettings = {
+                               SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk;
+                       };
+                       name = Default;
+               };
+/* End XCBuildConfiguration section */
+
+/* Begin XCConfigurationList section */
+               78E9AE160A36A8E3000D76A8 /* Build configuration list for PBXNativeTarget "ScriptExec" */ = {
+                       isa = XCConfigurationList;
+                       buildConfigurations = (
+                               78E9AE170A36A8E3000D76A8 /* Development */,
+                               78E9AE180A36A8E3000D76A8 /* Deployment */,
+                               78E9AE190A36A8E3000D76A8 /* Default */,
+                       );
+                       defaultConfigurationIsVisible = 0;
+                       defaultConfigurationName = Default;
+               };
+               78E9AE1A0A36A8E3000D76A8 /* Build configuration list for PBXProject "ScriptExec" */ = {
+                       isa = XCConfigurationList;
+                       buildConfigurations = (
+                               78E9AE1B0A36A8E3000D76A8 /* Development */,
+                               78E9AE1C0A36A8E3000D76A8 /* Deployment */,
+                               78E9AE1D0A36A8E3000D76A8 /* Default */,
+                       );
+                       defaultConfigurationIsVisible = 0;
+                       defaultConfigurationName = Default;
+               };
+/* End XCConfigurationList section */
+       };
+       rootObject = 20286C28FDCF999611CA2CEA /* Project object */;
+}