diff --git a/builds/install/arch-specific/freebsd/install.sh.in b/builds/install/arch-specific/freebsd/install.sh.in index 236564ff984..20d848357a8 100755 --- a/builds/install/arch-specific/freebsd/install.sh.in +++ b/builds/install/arch-specific/freebsd/install.sh.in @@ -248,7 +248,7 @@ copyFiles() { chown root:wheel ${TargetDir}@FB_PLUGDIR@/*.so* chmod 0755 ${TargetDir}@FB_PLUGDIR@/*.so* - makeDirs ${TargetDir}@FB_TZDATADIR@ + makeDirs @FB_TZDATADIR@ cp $BuiltFBDir/tzdata/*.res ${TargetDir}@FB_TZDATADIR@ chmod 0444 ${TargetDir}@FB_TZDATADIR@/*.res diff --git a/builds/install/arch-specific/linux/Makefile.in b/builds/install/arch-specific/linux/Makefile.in index 320b96386a3..565c4e43a3f 100644 --- a/builds/install/arch-specific/linux/Makefile.in +++ b/builds/install/arch-specific/linux/Makefile.in @@ -42,6 +42,8 @@ include $(ROOT)/gen/make.shared.variables # root of the build tree. BuildRoot=$(GEN_ROOT) +CLIENT_ONLY_FLG=@CLIENT_ONLY_FLG@ +WITH_TOMCRYPT=@WITH_TOMCRYPT@ InstallRoot=. @@ -112,8 +114,10 @@ buildImageDir: buildDebugInfo buildTarDir: buildImageDir mkdir -p $(GEN_ROOT)/$(TarDir) +ifeq ($(CLIENT_ONLY_FLG),N) cp -r $(GEN_ROOT)/install/install.sh $(GEN_ROOT)/$(TarDir) chmod a+x $(GEN_ROOT)/$(TarDir)/*.sh +endif (cd $(GEN_ROOT)/$(TarDir); tar -C ../buildroot -czf buildroot.tar.gz . ) (cd $(GEN_ROOT)/$(TarDir); tar -tzf buildroot.tar.gz > manifest.txt ) diff --git a/builds/install/arch-specific/linux/makeInstallImage.sh.in b/builds/install/arch-specific/linux/makeInstallImage.sh.in index d5f9d5827d0..206afa06649 100644 --- a/builds/install/arch-specific/linux/makeInstallImage.sh.in +++ b/builds/install/arch-specific/linux/makeInstallImage.sh.in @@ -38,6 +38,8 @@ SecurityDatabase=security5.fdb TomMathBuild="@TOMMATH_BUILD@" TomCryptBuild="@TOMCRYPT_BUILD@" OBJDUMP=@OBJDUMP@ +CLIENT_ONLY_FLG=@CLIENT_ONLY_FLG@ +WITH_TOMCRYPT=@WITH_TOMCRYPT@ #------------------------------------------------------------------------ # addLibs @@ -161,89 +163,102 @@ copyFiles() { fi #directories - makeDirs "@FB_BINDIR@ @FB_SBINDIR@ @FB_CONFDIR@ @FB_LIBDIR@ @FB_INCDIR@/firebird @FB_DOCDIR@/sql.extensions \ - @FB_SAMPLEDIR@ @FB_SAMPLEDBDIR@ @FB_INTLDIR@ @FB_MISCDIR@ @FB_SECDBDIR@ @FB_MSGDIR@ @FB_LOGDIR@ \ - @FB_GUARDDIR@ @FB_PLUGDIR@ @FB_TZDATADIR@" - for i in udf; do - makeDirs @FB_MISCDIR@/upgrade/$i - done + makeDirs "@FB_CONFDIR@ @FB_LIBDIR@ @FB_INCDIR@/firebird @FB_MSGDIR@ @FB_TZDATADIR@" - makeDirs /usr/include - - #bin - cp $BuiltFBDir/bin/gbak ${TargetDir}@FB_BINDIR@/gbak - cp $BuiltFBDir/bin/gfix ${TargetDir}@FB_BINDIR@/gfix - cp $BuiltFBDir/bin/gpre ${TargetDir}@FB_BINDIR@/gpre - cp $BuiltFBDir/bin/gsec ${TargetDir}@FB_BINDIR@/gsec - cp $BuiltFBDir/bin/nbackup ${TargetDir}@FB_BINDIR@/nbackup - copyIfExists $BuiltFBDir/bin/gsplit ${TargetDir}@FB_BINDIR@ - cp $BuiltFBDir/bin/gstat ${TargetDir}@FB_BINDIR@/gstat - copyIfExists $BuiltFBDir/bin/fbsvcmgr ${TargetDir}@FB_BINDIR@ - copyIfExists $BuiltFBDir/bin/fbtracemgr ${TargetDir}@FB_BINDIR@ - cp $BuiltFBDir/bin/isql ${TargetDir}@FB_BINDIR@/isql - - chmod 0755 ${TargetDir}@FB_BINDIR@/* - - #sbin - cp -f $BuiltFBDir/bin/firebird ${TargetDir}@FB_SBINDIR@/firebird - cp -f $BuiltFBDir/bin/fbguard ${TargetDir}@FB_SBINDIR@ - copyIfExists $BuiltFBDir/bin/fb_lock_print ${TargetDir}@FB_SBINDIR@ - - addLibs $BuiltFBDir/bin changeServerMode.sh ${TargetDir}@FB_SBINDIR@ - cp $BuiltFBDir/bin/registerDatabase.sh ${TargetDir}@FB_SBINDIR@ - cp $BuiltFBDir/bin/fb_config ${TargetDir}@FB_SBINDIR@ - addLibs $BuiltFBDir/bin FirebirdUninstall.sh ${TargetDir}@FB_SBINDIR@ - - chmod 0755 ${TargetDir}@FB_SBINDIR@/* - chmod 0700 ${TargetDir}@FB_SBINDIR@/*.sh - - #install script - addLibs $BuiltFBDir/bin install.sh $BuildRootDir/gen/install - - #examples - copy only if we have them - exampleFiles=`find $BuiltFBDir/examples/README -type f -print` - if [ -z "$exampleFiles" ]; then - echo "Example files have not been built!" - else - (cd $BuiltFBDir/examples; tar cf - .) | (cd ${TargetDir}@FB_SAMPLEDIR@; tar xf -) - rm -rf ${TargetDir}@FB_SAMPLEDIR@/empbuild - - makeDirs @FB_SAMPLEDBDIR@ - cp $BuiltFBDir/examples/empbuild/*.fdb ${TargetDir}@FB_SAMPLEDBDIR@ - - ReadOnlyTree ${TargetDir}@FB_SAMPLEDIR@ - chmod 0664 ${TargetDir}@FB_SAMPLEDBDIR@/*.fdb - - #plugins samples - makeDirs ${TargetDir}@FB_SAMPLEDIR@/prebuilt - cp $BuiltFBDir/plugins/*fbSample* ${TargetDir}@FB_SAMPLEDIR@/prebuilt/plugins - cp $BuiltFBDir/bin/*fbSample* ${TargetDir}@FB_SAMPLEDIR@/prebuilt/bin - chmod 0644 ${TargetDir}@FB_SAMPLEDIR@/prebuilt/plugins/* - - # exec bit for sample binaries - chmod 0755 ${TargetDir}@FB_SAMPLEDIR@/prebuilt/bin/* - fi + if [ "$CLIENT_ONLY_FLG" = "N" ] || [ "$WITH_TOMCRYPT" = "Y" ]; then + makeDirs "@FB_PLUGDIR@" + fi - #message file - cp $BuiltFBDir/*.msg ${TargetDir}@FB_MSGDIR@ + if [ "$CLIENT_ONLY_FLG" = "N" ]; then + makeDirs "@FB_BINDIR@ @FB_SBINDIR@ @FB_DOCDIR@/sql.extensions @FB_SAMPLEDIR@ @FB_SAMPLEDBDIR@ @FB_INTLDIR@ \ + @FB_MISCDIR@ @FB_SECDBDIR@ @FB_LOGDIR@ @FB_GUARDDIR@" - chmod 0444 ${TargetDir}@FB_MSGDIR@/*.msg + for i in udf; do + makeDirs @FB_MISCDIR@/upgrade/$i + done + fi + + makeDirs /usr/include + + if [ "$CLIENT_ONLY_FLG" = "N" ]; then + #bin + cp $BuiltFBDir/bin/gbak ${TargetDir}@FB_BINDIR@/gbak + cp $BuiltFBDir/bin/gfix ${TargetDir}@FB_BINDIR@/gfix + cp $BuiltFBDir/bin/gpre ${TargetDir}@FB_BINDIR@/gpre + cp $BuiltFBDir/bin/gsec ${TargetDir}@FB_BINDIR@/gsec + cp $BuiltFBDir/bin/nbackup ${TargetDir}@FB_BINDIR@/nbackup + copyIfExists $BuiltFBDir/bin/gsplit ${TargetDir}@FB_BINDIR@ + cp $BuiltFBDir/bin/gstat ${TargetDir}@FB_BINDIR@/gstat + copyIfExists $BuiltFBDir/bin/fbsvcmgr ${TargetDir}@FB_BINDIR@ + copyIfExists $BuiltFBDir/bin/fbtracemgr ${TargetDir}@FB_BINDIR@ + cp $BuiltFBDir/bin/isql ${TargetDir}@FB_BINDIR@/isql + + chmod 0755 ${TargetDir}@FB_BINDIR@/* + + #sbin + cp -f $BuiltFBDir/bin/firebird ${TargetDir}@FB_SBINDIR@/firebird + cp -f $BuiltFBDir/bin/fbguard ${TargetDir}@FB_SBINDIR@ + copyIfExists $BuiltFBDir/bin/fb_lock_print ${TargetDir}@FB_SBINDIR@ + + addLibs $BuiltFBDir/bin changeServerMode.sh ${TargetDir}@FB_SBINDIR@ + cp $BuiltFBDir/bin/registerDatabase.sh ${TargetDir}@FB_SBINDIR@ + cp $BuiltFBDir/bin/fb_config ${TargetDir}@FB_SBINDIR@ + addLibs $BuiltFBDir/bin FirebirdUninstall.sh ${TargetDir}@FB_SBINDIR@ + + chmod 0755 ${TargetDir}@FB_SBINDIR@/* + chmod 0700 ${TargetDir}@FB_SBINDIR@/*.sh + + #install script + addLibs $BuiltFBDir/bin install.sh $BuildRootDir/gen/install + + #examples - copy only if we have them + exampleFiles=`find $BuiltFBDir/examples/README -type f -print` + if [ -z "$exampleFiles" ]; then + echo "Example files have not been built!" + else + (cd $BuiltFBDir/examples; tar cf - .) | (cd ${TargetDir}@FB_SAMPLEDIR@; tar xf -) + rm -rf ${TargetDir}@FB_SAMPLEDIR@/empbuild - #secureDB (access rights will be set at install time) - cp $BuiltFBDir/$SecurityDatabase ${TargetDir}@FB_SECDBDIR@ + makeDirs @FB_SAMPLEDBDIR@ + cp $BuiltFBDir/examples/empbuild/*.fdb ${TargetDir}@FB_SAMPLEDBDIR@ + + ReadOnlyTree ${TargetDir}@FB_SAMPLEDIR@ + chmod 0664 ${TargetDir}@FB_SAMPLEDBDIR@/*.fdb + + #plugins samples + makeDirs @FB_SAMPLEDIR@/prebuilt + cp $BuiltFBDir/plugins/*fbSample* ${TargetDir}@FB_SAMPLEDIR@/prebuilt/plugins + cp $BuiltFBDir/bin/*fbSample* ${TargetDir}@FB_SAMPLEDIR@/prebuilt/bin + chmod 0644 ${TargetDir}@FB_SAMPLEDIR@/prebuilt/plugins/* + + # exec bit for sample binaries + chmod 0755 ${TargetDir}@FB_SAMPLEDIR@/prebuilt/bin/* + fi + + #secureDB (access rights will be set at install time) + cp $BuiltFBDir/$SecurityDatabase ${TargetDir}@FB_SECDBDIR@ + fi + + #message file + cp $BuiltFBDir/*.msg ${TargetDir}@FB_MSGDIR@ + chmod 0444 ${TargetDir}@FB_MSGDIR@/*.msg #include (.h .pas files) - cp $BuiltFBDir/include/*.h ${TargetDir}@FB_INCDIR@ - cp $BuildRootDir/src/include/firebird/*.h ${TargetDir}@FB_INCDIR@/firebird - tar -C $BuildRootDir/src/include/firebird -cf - impl | tar -C ${TargetDir}@FB_INCDIR@/firebird -x - cp $BuildRootDir/src/include/gen/Firebird.pas ${TargetDir}@FB_INCDIR@/firebird + cp $BuiltFBDir/include/*.h ${TargetDir}@FB_INCDIR@ + cp $BuildRootDir/src/include/firebird/*.h ${TargetDir}@FB_INCDIR@/firebird + tar -C $BuildRootDir/src/include/firebird -cf - impl | tar -C ${TargetDir}@FB_INCDIR@/firebird -x + if [ "$CLIENT_ONLY_FLG" = "N" ]; then + cp $BuildRootDir/src/include/gen/Firebird.pas ${TargetDir}@FB_INCDIR@/firebird + fi ReadOnlyTree ${TargetDir}@FB_INCDIR@ #lib - cp -df $BuiltFBDir/lib/libfbclient.so* ${TargetDir}@FB_LIBDIR@ - cp -f $BuiltFBDir/lib/libib_util.so ${TargetDir}@FB_LIBDIR@/libib_util.so + cp -df $BuiltFBDir/lib/libfbclient.so* ${TargetDir}@FB_LIBDIR@ + if [ "$CLIENT_ONLY_FLG" = "N" ]; then + cp -f $BuiltFBDir/lib/libib_util.so ${TargetDir}@FB_LIBDIR@/libib_util.so + fi if [ "$TomMathBuild" = "Y" ]; then makeDirs @FB_LIBDIR@/.tm @@ -257,55 +272,64 @@ copyFiles() { chmod 0755 ${TargetDir}@FB_LIBDIR@/*.so* #plugins - (cd $BuiltFBDir/plugins;tar cf - --exclude='*fbSample*' .) | (cd ${TargetDir}@FB_PLUGDIR@; tar xvf -) + if [ "$CLIENT_ONLY_FLG" = "N" ] || [ "$WITH_TOMCRYPT" = "Y" ]; then + (cd $BuiltFBDir/plugins;tar cf - --exclude='*fbSample*' .) | (cd ${TargetDir}@FB_PLUGDIR@; tar xvf -) + fi for file in `find ${TargetDir}@FB_PLUGDIR@ -name '*.so*' -print`; do chmod 0755 ${file} done - makeDirs ${TargetDir}@FB_TZDATADIR@ + makeDirs @FB_TZDATADIR@ cp $BuiltFBDir/tzdata/*.res ${TargetDir}@FB_TZDATADIR@ chmod 0444 ${TargetDir}@FB_TZDATADIR@/*.res - #intl - cp $BuiltFBDir/intl/libfbintl.so ${TargetDir}@FB_INTLDIR@/fbintl - cp $BuiltFBDir/intl/fbintl.conf ${TargetDir}@FB_INTLDIR@ - - chmod 0755 ${TargetDir}@FB_INTLDIR@/fbintl - chmod 0644 ${TargetDir}@FB_INTLDIR@/fbintl.conf - -# Note that the following items copy files from outside the build tree. -# Copy the sql-declarations into the UDF-directory - - #doc - cp $BuildRootDir/doc/*.pdf ${TargetDir}@FB_DOCDIR@ - cp $BuildRootDir/doc/README.* ${TargetDir}@FB_DOCDIR@ - cp $BuildRootDir/doc/sql.extensions/README* ${TargetDir}@FB_DOCDIR@/sql.extensions - cp $BuildRootDir/*.md ${TargetDir}@FB_CONFDIR@ - - for i in `find ${TargetDir}@FB_MISCDIR@ -print`; do - if [ -d $i ]; then - chmod 0755 $i - else - chmod 0644 $i - fi - done - - #misc - cp $BuildRootDir/src/misc/intl.sql ${TargetDir}@FB_MISCDIR@ - cp $BuildRootDir/src/misc/upgrade/v4.0/udf_replace* ${TargetDir}@FB_MISCDIR@/upgrade/udf - cp $BuildRootDir/gen/install/misc/firebird.init.d.* ${TargetDir}@FB_MISCDIR@ - cp $BuildRootDir/gen/install/misc/rc.config.firebird ${TargetDir}@FB_MISCDIR@ - cp $BuildRootDir/gen/install/misc/firebird.service ${TargetDir}@FB_MISCDIR@ - - chmod -R go-rwx ${TargetDir}@FB_MISCDIR@ + if [ "$CLIENT_ONLY_FLG" = "N" ]; then + #intl + cp $BuiltFBDir/intl/libfbintl.so ${TargetDir}@FB_INTLDIR@/fbintl + cp $BuiltFBDir/intl/fbintl.conf ${TargetDir}@FB_INTLDIR@ + + chmod 0755 ${TargetDir}@FB_INTLDIR@/fbintl + chmod 0644 ${TargetDir}@FB_INTLDIR@/fbintl.conf + + # Note that the following items copy files from outside the build tree. + # Copy the sql-declarations into the UDF-directory + + #doc + cp $BuildRootDir/doc/*.pdf ${TargetDir}@FB_DOCDIR@ + cp $BuildRootDir/doc/README.* ${TargetDir}@FB_DOCDIR@ + cp $BuildRootDir/doc/sql.extensions/README* ${TargetDir}@FB_DOCDIR@/sql.extensions + cp $BuildRootDir/*.md ${TargetDir}@FB_CONFDIR@ + + for i in `find ${TargetDir}@FB_MISCDIR@ -print`; do + if [ -d $i ]; then + chmod 0755 $i + else + chmod 0644 $i + fi + done + + #misc + cp $BuildRootDir/src/misc/intl.sql ${TargetDir}@FB_MISCDIR@ + cp $BuildRootDir/src/misc/upgrade/v4.0/udf_replace* ${TargetDir}@FB_MISCDIR@/upgrade/udf + cp $BuildRootDir/gen/install/misc/firebird.init.d.* ${TargetDir}@FB_MISCDIR@ + cp $BuildRootDir/gen/install/misc/rc.config.firebird ${TargetDir}@FB_MISCDIR@ + cp $BuildRootDir/gen/install/misc/firebird.service ${TargetDir}@FB_MISCDIR@ + + chmod -R go-rwx ${TargetDir}@FB_MISCDIR@ + + #conf + cp $BuiltFBDir/databases.conf ${TargetDir}@FB_CONFDIR@ + cp $BuiltFBDir/fbtrace.conf ${TargetDir}@FB_CONFDIR@ + cp $BuiltFBDir/replication.conf ${TargetDir}@FB_CONFDIR@ + fi #conf - cp $BuiltFBDir/firebird.conf ${TargetDir}@FB_CONFDIR@ - cp $BuiltFBDir/databases.conf ${TargetDir}@FB_CONFDIR@ - cp $BuiltFBDir/fbtrace.conf ${TargetDir}@FB_CONFDIR@ - cp $BuiltFBDir/plugins.conf ${TargetDir}@FB_CONFDIR@ - cp $BuiltFBDir/replication.conf ${TargetDir}@FB_CONFDIR@ + cp $BuiltFBDir/firebird.conf ${TargetDir}@FB_CONFDIR@ + + if [ "$CLIENT_ONLY_FLG" = "N" ] || [ "$WITH_TOMCRYPT" = "Y" ]; then + cp $BuiltFBDir/plugins.conf ${TargetDir}@FB_CONFDIR@ + fi chmod 0644 ${TargetDir}@FB_CONFDIR@/*.conf @@ -314,7 +338,7 @@ copyFiles() { chmod 0444 ${TargetDir}@FB_CONFDIR@/*License.txt -# link include files to /usr/include + # link include files to /usr/include linkFiles "@FB_INCDIR@" "firebird iberror.h ibase.h ib_util.h" "${TargetDir}/usr/include" "${TargetDir}@FB_INCDIR@" } diff --git a/builds/mac_os_x/CS/CS.pbproj/project.pbxproj b/builds/mac_os_x/CS/CS.pbproj/project.pbxproj deleted file mode 100644 index 416a03d2c3c..00000000000 --- a/builds/mac_os_x/CS/CS.pbproj/project.pbxproj +++ /dev/null @@ -1,13617 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 34; - objects = { - F616C35D0200AA0401EF0ADE = { - buildStyles = ( - F616C35F0200AA0401EF0ADE, - F616C3600200AA0401EF0ADE, - ); - isa = PBXProject; - mainGroup = F616C35E0200AA0401EF0ADE; - productRefGroup = F616C3620200B08E01EF0ADE; - projectDirPath = ""; - targets = ( - F616C36A0200B08E01EF0ADE, - F6B282E8020125B101EF0ADE, - F6B2832902021DCB01EF0ADE, - F6B2820C0200D1DC01EF0ADE, - F6B28259020116EB01EF0ADE, - F6B2827A02011B4B01EF0ADE, - F6B2829B02011D1D01EF0ADE, - F6B2830002012A6801EF0ADE, - F6B282E10201247D01EF0ADE, - F6B283850203716801EF0ADE, - F6B2837A020363B701EF0ADE, - F6B282D30201209E01EF0ADE, - F6B282C40201200901EF0ADE, - F6B282410200E48501EF0ADE, - F6B2824F0200E55001EF0ADE, - F616C3650200B08E01EF0ADE, - F616C3610200AE9501EF0ADE, - F6B282730201192101EF0ADE, - F6B282FA0201261201EF0ADE, - F6B28275020119F401EF0ADE, - F6B2820F0200D1DC01EF0ADE, - F616CF530200BA9301EF0ADE, - F6B2825402010B6101EF0ADE, - F6B2829502011C6901EF0ADE, - F6B282BC02011F8A01EF0ADE, - F6B282EB020125B101EF0ADE, - F6B2830202012A6801EF0ADE, - F6B283360202209301EF0ADE, - F6B2837002022DD201EF0ADE, - F6B2838B02047A1D01EF0ADE, - F69A8CF6025918F501A86432, - F6A930B9025B5CBE01EF0AD1, - F6D5B453025C050501EF0AD1, - ); - }; - F616C35E0200AA0401EF0ADE = { - children = ( - F616CF240200B13D01EF0ADE, - F616C3700200B0CF01EF0ADE, - F6B280D10200CC3601EF0ADE, - F616C3620200B08E01EF0ADE, - F616CF480200B4EE01EF0ADE, - F616CF500200B72801EF0ADE, - ); - isa = PBXGroup; - refType = 4; - }; - F616C35F0200AA0401EF0ADE = { - buildRules = ( - ); - buildSettings = { - COPY_PHASE_STRIP = NO; - DEBUGGING_SYMBOLS = YES; - FRAMEWORK_SEARCH_PATHS = "\U0001/System/Library/Frameworks/CoreServices.framework/Frameworks"; - HEADER_SEARCH_PATHS = "\U0001../STLport-1115/stlport fb/src fb/src/include"; - LIBRARY_SEARCH_PATHS = "\U0001"; - OPTIMIZATION_CFLAGS = "-O0"; - OTHER_CFLAGS = "\U0001-DDARWIN -DDEV_BUILD"; - WARNING_CFLAGS = "\U0001-Wno-switch -Wno-unused"; - }; - isa = PBXBuildStyle; - name = Development; - }; - F616C3600200AA0401EF0ADE = { - buildRules = ( - ); - buildSettings = { - COPY_PHASE_STRIP = YES; - DEBUGGING_SYMBOLS = NO; - FRAMEWORK_SEARCH_PATHS = "\U0001/System/Library/Frameworks/CoreServices.framework/Frameworks"; - HEADER_SEARCH_PATHS = "\U0001stlport fb/src fb/src/include"; - LIBRARY_SEARCH_PATHS = "\U0001"; - OPTIMIZATION_CFLAGS = "-O3"; - OTHER_CFLAGS = "\U0001-DDARWIN"; - WARNING_CFLAGS = "\U0001-Wno-switch -Wno-unused"; - }; - isa = PBXBuildStyle; - name = Deployment; - }; - F616C3610200AE9501EF0ADE = { - buildArgumentsString = "-f Helpers.make autoconf_$ACTION"; - buildPhases = ( - ); - buildSettings = { - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PRODUCT_NAME = autoconf; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; - }; - buildToolPath = /usr/bin/gnumake; - dependencies = ( - ); - isa = PBXLegacyTarget; - name = autoconf; - productName = autoconf; - settingsToExpand = 6; - settingsToPassInEnvironment = 287; - settingsToPassOnCommandLine = 280; - shouldUseHeadermap = 0; - }; - F616C3620200B08E01EF0ADE = { - children = ( - F616C3630200B08E01EF0ADE, - F616C3640200B08E01EF0ADE, - F6B2820B0200D1DC01EF0ADE, - F6B282400200E48501EF0ADE, - F6B28258020116EA01EF0ADE, - F6B2827902011B4B01EF0ADE, - F6B2829A02011D1D01EF0ADE, - F6B282C30201200901EF0ADE, - F6B282D20201209D01EF0ADE, - F6B282E7020125B001EF0ADE, - F6B282FF02012A6701EF0ADE, - F6B2832802021DCB01EF0ADE, - F6B2836E02022DD201EF0ADE, - F6B2838A02047A1D01EF0ADE, - F6A930B8025B5CBD01EF0AD1, - F6D5B451025C050401EF0AD1, - ); - isa = PBXGroup; - name = Products; - refType = 4; - }; - F616C3630200B08E01EF0ADE = { - isa = PBXExecutableFileReference; - path = gpre_bootstrap; - refType = 3; - }; - F616C3640200B08E01EF0ADE = { - isa = PBXFrameworkReference; - path = Firebird.framework; - refType = 3; - }; - F616C3650200B08E01EF0ADE = { - buildPhases = ( - F616C3660200B08E01EF0ADE, - F616C3670200B08E01EF0ADE, - F616C3680200B08E01EF0ADE, - F616C3690200B08E01EF0ADE, - ); - buildSettings = { - HEADER_SEARCH_PATHS = ../../../src/include; - LIBRARY_SEARCH_PATHS = /usr/lib/gcc/darwin/2.95.2; - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PREBINDING = NO; - PRODUCT_NAME = gpre_bootstrap; - REZ_EXECUTABLE = YES; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; - }; - dependencies = ( - F616CF4F0200B66401EF0ADE, - ); - isa = PBXToolTarget; - name = gpre_bootstrap; - productInstallPath = /usr/local/bin; - productName = gpre_bootstrap; - productReference = F616C3630200B08E01EF0ADE; - shouldUseHeadermap = 0; - }; - F616C3660200B08E01EF0ADE = { - buildActionMask = 2147483647; - files = ( - ); - isa = PBXHeadersBuildPhase; - name = Headers; - }; - F616C3670200B08E01EF0ADE = { - buildActionMask = 2147483647; - files = ( - F616CF270200B13E01EF0ADE, - F616CF2B0200B1BE01EF0ADE, - F616CF2C0200B1BE01EF0ADE, - F616CF2D0200B1BE01EF0ADE, - F616CF2E0200B1BE01EF0ADE, - F616CF2F0200B1BE01EF0ADE, - F616CF300200B1BE01EF0ADE, - F616CF310200B1BE01EF0ADE, - F616CF320200B1BE01EF0ADE, - F616CF330200B1BE01EF0ADE, - F616CF340200B1BE01EF0ADE, - F616CF350200B1BE01EF0ADE, - F616CF360200B1BE01EF0ADE, - F616CF370200B1BE01EF0ADE, - F616CF380200B1BE01EF0ADE, - F616CF390200B1BE01EF0ADE, - F616CF3A0200B1BE01EF0ADE, - F616CF3B0200B1BE01EF0ADE, - F616CF3F0200B21601EF0ADE, - F616CF400200B26101EF0ADE, - F616CF410200B30D01EF0ADE, - F616CF420200B30D01EF0ADE, - F616CF430200B35C01EF0ADE, - F616CF440200B35C01EF0ADE, - F616CF450200B35C01EF0ADE, - F616CF460200B35C01EF0ADE, - F616CF470200B35C01EF0ADE, - F616CF4A0200B51101EF0ADE, - F616CF4B0200B51101EF0ADE, - F69A8CF40257DF1E01A86432, - ); - isa = PBXSourcesBuildPhase; - name = Sources; - }; - F616C3680200B08E01EF0ADE = { - buildActionMask = 2147483647; - files = ( - F616CF490200B4EE01EF0ADE, - F616CF510200B72801EF0ADE, - ); - isa = PBXFrameworksBuildPhase; - name = "Frameworks & Libraries"; - }; - F616C3690200B08E01EF0ADE = { - buildActionMask = 2147483647; - files = ( - ); - isa = PBXRezBuildPhase; - name = "ResourceManager Resources"; - }; - F616C36A0200B08E01EF0ADE = { - buildPhases = ( - F616C36B0200B08E01EF0ADE, - F616C36C0200B08E01EF0ADE, - F616C36D0200B08E01EF0ADE, - F616C36E0200B08E01EF0ADE, - F616C36F0200B08E01EF0ADE, - F6B2832F02021EE101EF0ADE, - ); - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - FRAMEWORK_SEARCH_PATHS = /Volumes/Source/source/firebird/firebird2/gen/firebird; - FRAMEWORK_VERSION = A; - HEADER_SEARCH_PATHS = ../../../src/include; - INSTALLED_NAME_FLAG = "-install_name Firebird.framework/Versions/A/Firebird"; - LIBRARY_SEARCH_PATHS = "/usr/lib/gcc/darwin/2.95.2 /Users/bellardo/source/firebird/firebird2/macosx_build/firebird_test/build /Users/bellardo/source/firebird/firebird2/gen/firebird/lib"; - OTHER_CFLAGS = ""; - OTHER_LIBTOOL_FLAGS = ""; - OTHER_REZFLAGS = ""; - PRINCIPAL_CLASS = ""; - PRODUCT_NAME = Firebird; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; - WRAPPER_EXTENSION = framework; - }; - dependencies = ( - F6B2832702021DAA01EF0ADE, - ); - isa = PBXFrameworkTarget; - name = Firebird.framework; - productName = Firebird.framework; - productReference = F616C3640200B08E01EF0ADE; - productSettingsXML = " - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - Firebird - CFBundleGetInfoString - - CFBundleIconFile - - CFBundleIdentifier - com.firebirdsql.Firebird - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - Firebird Database - CFBundlePackageType - FMWK - CFBundleShortVersionString - - CFBundleSignature - FBdb - CFBundleVersion - 2.0.0d1 - - -"; - shouldUseHeadermap = 0; - }; - F616C36B0200B08E01EF0ADE = { - buildActionMask = 2147483647; - files = ( - F616C9770200B0D001EF0ADE, - F616C9780200B0D001EF0ADE, - F616C9820200B0D001EF0ADE, - F616C9830200B0D001EF0ADE, - F616C9840200B0D001EF0ADE, - F616C9850200B0D001EF0ADE, - F616C9860200B0D001EF0ADE, - F616C9870200B0D001EF0ADE, - F616C9880200B0D001EF0ADE, - F616C9890200B0D001EF0ADE, - F616C98A0200B0D001EF0ADE, - F616C98B0200B0D001EF0ADE, - F616C98C0200B0D001EF0ADE, - F616C98D0200B0D001EF0ADE, - F616C98E0200B0D001EF0ADE, - F616C98F0200B0D001EF0ADE, - F616C9900200B0D001EF0ADE, - F616C9910200B0D001EF0ADE, - F616C9920200B0D001EF0ADE, - F616C9930200B0D001EF0ADE, - F616C9940200B0D001EF0ADE, - F616C9950200B0D001EF0ADE, - F616C9960200B0D001EF0ADE, - F616C9970200B0D001EF0ADE, - F616C9980200B0D001EF0ADE, - F616C9990200B0D001EF0ADE, - F616C9A80200B0D001EF0ADE, - F616C9A90200B0D001EF0ADE, - F616C9C10200B0D001EF0ADE, - F616C9C60200B0D001EF0ADE, - F616C9C70200B0D001EF0ADE, - F616C9C80200B0D001EF0ADE, - F616C9C90200B0D001EF0ADE, - F616C9CA0200B0D001EF0ADE, - F616C9CB0200B0D001EF0ADE, - F616C9CC0200B0D001EF0ADE, - F616C9CD0200B0D001EF0ADE, - F616C9CE0200B0D001EF0ADE, - F616C9CF0200B0D001EF0ADE, - F616C9D00200B0D001EF0ADE, - F616C9D10200B0D001EF0ADE, - F616C9D20200B0D001EF0ADE, - F616C9D30200B0D001EF0ADE, - F616C9D40200B0D001EF0ADE, - F616C9D50200B0D001EF0ADE, - F616C9D60200B0D001EF0ADE, - F616C9D70200B0D001EF0ADE, - F616C9D80200B0D001EF0ADE, - F616C9D90200B0D001EF0ADE, - F616C9DB0200B0D001EF0ADE, - F616CA610200B0D001EF0ADE, - F616CA630200B0D001EF0ADE, - F616CA650200B0D001EF0ADE, - F616CA670200B0D001EF0ADE, - F616CA6E0200B0D001EF0ADE, - F616CA6F0200B0D001EF0ADE, - F616CA700200B0D001EF0ADE, - F616CA710200B0D001EF0ADE, - F616CA720200B0D001EF0ADE, - F616CA730200B0D001EF0ADE, - F616CA740200B0D001EF0ADE, - F616CA750200B0D001EF0ADE, - F616CA770200B0D001EF0ADE, - F616CA7F0200B0D001EF0ADE, - F616CA800200B0D001EF0ADE, - F616CA810200B0D001EF0ADE, - F616CA820200B0D001EF0ADE, - F616CA830200B0D001EF0ADE, - F616CA840200B0D001EF0ADE, - F616CA850200B0D001EF0ADE, - F616CA860200B0D001EF0ADE, - F616CA870200B0D001EF0ADE, - F616CA880200B0D001EF0ADE, - F616CA890200B0D001EF0ADE, - F616CA8A0200B0D001EF0ADE, - F616CA8B0200B0D001EF0ADE, - F616CA8C0200B0D001EF0ADE, - F616CA8D0200B0D001EF0ADE, - F616CA8E0200B0D001EF0ADE, - F616CA8F0200B0D001EF0ADE, - F616CA920200B0D001EF0ADE, - F616CA930200B0D001EF0ADE, - F616CA940200B0D001EF0ADE, - F616CA950200B0D001EF0ADE, - F616CA960200B0D001EF0ADE, - F616CA970200B0D001EF0ADE, - F616CA980200B0D001EF0ADE, - F616CA990200B0D001EF0ADE, - F616CA9A0200B0D001EF0ADE, - F616CA9B0200B0D001EF0ADE, - F616CA9C0200B0D001EF0ADE, - F616CA9D0200B0D001EF0ADE, - F616CA9E0200B0D001EF0ADE, - F616CA9F0200B0D001EF0ADE, - F616CAA00200B0D001EF0ADE, - F616CAA10200B0D001EF0ADE, - F616CAA20200B0D001EF0ADE, - F616CAA30200B0D001EF0ADE, - F616CAA40200B0D001EF0ADE, - F616CAA50200B0D001EF0ADE, - F616CAA60200B0D001EF0ADE, - F616CAA70200B0D001EF0ADE, - F616CAA80200B0D001EF0ADE, - F616CAA90200B0D001EF0ADE, - F616CAAA0200B0D001EF0ADE, - F616CAAB0200B0D001EF0ADE, - F616CAAC0200B0D001EF0ADE, - F616CAAD0200B0D001EF0ADE, - F616CAAE0200B0D001EF0ADE, - F616CAAF0200B0D001EF0ADE, - F616CAB00200B0D001EF0ADE, - F616CAB10200B0D001EF0ADE, - F616CAB20200B0D001EF0ADE, - F616CAB30200B0D001EF0ADE, - F616CAB40200B0D001EF0ADE, - F616CAB50200B0D001EF0ADE, - F616CAB60200B0D001EF0ADE, - F616CAB70200B0D001EF0ADE, - F616CAB80200B0D001EF0ADE, - F616CAB90200B0D001EF0ADE, - F616CABA0200B0D001EF0ADE, - F616CABB0200B0D001EF0ADE, - F616CABC0200B0D001EF0ADE, - F616CABD0200B0D001EF0ADE, - F616CABE0200B0D001EF0ADE, - F616CABF0200B0D001EF0ADE, - F616CAC00200B0D001EF0ADE, - F616CAC10200B0D001EF0ADE, - F616CAC20200B0D001EF0ADE, - F616CAC30200B0D001EF0ADE, - F616CAC40200B0D001EF0ADE, - F616CAC50200B0D001EF0ADE, - F616CAC60200B0D001EF0ADE, - F616CAC70200B0D001EF0ADE, - F616CAC80200B0D001EF0ADE, - F616CAC90200B0D001EF0ADE, - F616CACA0200B0D001EF0ADE, - F616CACB0200B0D001EF0ADE, - F616CACC0200B0D001EF0ADE, - F616CACD0200B0D001EF0ADE, - F616CACE0200B0D001EF0ADE, - F616CACF0200B0D001EF0ADE, - F616CAD00200B0D001EF0ADE, - F616CAD10200B0D001EF0ADE, - F616CAD20200B0D001EF0ADE, - F616CAD50200B0D001EF0ADE, - F616CAD60200B0D001EF0ADE, - F616CAD70200B0D001EF0ADE, - F616CAD80200B0D001EF0ADE, - F616CAD90200B0D001EF0ADE, - F616CADA0200B0D001EF0ADE, - F616CADB0200B0D001EF0ADE, - F616CADC0200B0D001EF0ADE, - F616CADD0200B0D001EF0ADE, - F616CAE30200B0D001EF0ADE, - F616CAE40200B0D001EF0ADE, - F616CAE50200B0D001EF0ADE, - F616CAE60200B0D001EF0ADE, - F616CAE70200B0D001EF0ADE, - F616CAE80200B0D001EF0ADE, - F616CAE90200B0D001EF0ADE, - F616CAEA0200B0D001EF0ADE, - F616CAEB0200B0D001EF0ADE, - F616CAEC0200B0D001EF0ADE, - F616CAED0200B0D001EF0ADE, - F616CAEE0200B0D001EF0ADE, - F616CAEF0200B0D001EF0ADE, - F616CAF00200B0D001EF0ADE, - F616CAF10200B0D001EF0ADE, - F616CAF20200B0D001EF0ADE, - F616CAF30200B0D001EF0ADE, - F616CAF40200B0D001EF0ADE, - F616CAF50200B0D001EF0ADE, - F616CAF60200B0D001EF0ADE, - F616CAF70200B0D001EF0ADE, - F616CAF90200B0D001EF0ADE, - F616CAFA0200B0D001EF0ADE, - F616CAFB0200B0D001EF0ADE, - F616CAFC0200B0D001EF0ADE, - F616CAFD0200B0D001EF0ADE, - F616CAFE0200B0D001EF0ADE, - F616CAFF0200B0D001EF0ADE, - F616CB040200B0D001EF0ADE, - F616CB050200B0D001EF0ADE, - F616CB070200B0D001EF0ADE, - F616CB080200B0D001EF0ADE, - F616CB090200B0D001EF0ADE, - F616CB0A0200B0D001EF0ADE, - F616CB0B0200B0D001EF0ADE, - F616CB0C0200B0D001EF0ADE, - F616CB0D0200B0D001EF0ADE, - F616CB0E0200B0D001EF0ADE, - F616CB0F0200B0D001EF0ADE, - F616CB100200B0D001EF0ADE, - F616CB110200B0D001EF0ADE, - F616CB120200B0D001EF0ADE, - F616CB130200B0D001EF0ADE, - F616CB140200B0D001EF0ADE, - F616CB150200B0D001EF0ADE, - F616CB160200B0D001EF0ADE, - F616CB170200B0D001EF0ADE, - F616CB180200B0D001EF0ADE, - F616CB190200B0D001EF0ADE, - F616CB1B0200B0D001EF0ADE, - F616CB1C0200B0D001EF0ADE, - F616CB1D0200B0D001EF0ADE, - F616CB1E0200B0D001EF0ADE, - F616CB1F0200B0D001EF0ADE, - F616CB200200B0D001EF0ADE, - F616CB210200B0D001EF0ADE, - F616CB220200B0D001EF0ADE, - F616CB230200B0D001EF0ADE, - F616CB240200B0D001EF0ADE, - F616CB250200B0D001EF0ADE, - F616CB260200B0D001EF0ADE, - F616CB270200B0D001EF0ADE, - F616CB280200B0D001EF0ADE, - F616CB290200B0D001EF0ADE, - F616CB2A0200B0D001EF0ADE, - F616CB2B0200B0D001EF0ADE, - F616CB2C0200B0D001EF0ADE, - F616CB2D0200B0D001EF0ADE, - F616CB2E0200B0D001EF0ADE, - F616CB2F0200B0D001EF0ADE, - F616CB300200B0D001EF0ADE, - F616CB310200B0D001EF0ADE, - F616CB320200B0D001EF0ADE, - F616CB330200B0D001EF0ADE, - F616CB340200B0D001EF0ADE, - F616CB360200B0D001EF0ADE, - F616CB390200B0D001EF0ADE, - F6B281E60200CDC101EF0ADE, - F6B281E70200CDC101EF0ADE, - F6B281E80200CDC101EF0ADE, - F6B281E90200CDC101EF0ADE, - F6B281EA0200CDC101EF0ADE, - F6B281EB0200CDC101EF0ADE, - F6B281EC0200CDC101EF0ADE, - F6B281ED0200CDC101EF0ADE, - F6B281EE0200CDC101EF0ADE, - F6B281EF0200CDC101EF0ADE, - F6B281F00200CDC101EF0ADE, - F6B281F10200CDC101EF0ADE, - F6B281F20200CDC101EF0ADE, - F6B281F30200CDC101EF0ADE, - F6B281F40200CDC101EF0ADE, - F6B281F50200CDC101EF0ADE, - F6B281F60200CDC101EF0ADE, - F6B281F70200CDC101EF0ADE, - F6B281F80200CDC101EF0ADE, - F6B281F90200CDC101EF0ADE, - F6D5B464025D6F2D01EF0AD1, - F6A0479302AD571101EF0ACB, - ); - isa = PBXHeadersBuildPhase; - name = Headers; - }; - F616C36C0200B08E01EF0ADE = { - buildActionMask = 2147483647; - files = ( - ); - isa = PBXResourcesBuildPhase; - name = "Bundle Resources"; - }; - F616C36D0200B08E01EF0ADE = { - buildActionMask = 2147483647; - files = ( - F616CDB60200B0D101EF0ADE, - F616CDB70200B0D101EF0ADE, - F616CDBD0200B0D101EF0ADE, - F616CDBE0200B0D101EF0ADE, - F616CDBF0200B0D101EF0ADE, - F616CDC00200B0D101EF0ADE, - F616CDC10200B0D101EF0ADE, - F616CDC20200B0D101EF0ADE, - F616CDC30200B0D101EF0ADE, - F616CDC40200B0D101EF0ADE, - F616CDC70200B0D101EF0ADE, - F616CDC80200B0D101EF0ADE, - F616CDC90200B0D101EF0ADE, - F616CDCA0200B0D101EF0ADE, - F616CDD50200B0D101EF0ADE, - F616CDD60200B0D101EF0ADE, - F616CDEF0200B0D101EF0ADE, - F616CE1F0200B0D101EF0ADE, - F616CE210200B0D101EF0ADE, - F616CE230200B0D101EF0ADE, - F616CE280200B0D101EF0ADE, - F616CE2A0200B0D101EF0ADE, - F616CE2B0200B0D101EF0ADE, - F616CE2C0200B0D101EF0ADE, - F616CE2D0200B0D101EF0ADE, - F616CE2E0200B0D101EF0ADE, - F616CE2F0200B0D101EF0ADE, - F616CE300200B0D101EF0ADE, - F616CE320200B0D101EF0ADE, - F616CE340200B0D101EF0ADE, - F616CE360200B0D101EF0ADE, - F616CE380200B0D101EF0ADE, - F616CE390200B0D101EF0ADE, - F616CE3A0200B0D101EF0ADE, - F616CE3B0200B0D101EF0ADE, - F616CE3C0200B0D101EF0ADE, - F616CE3D0200B0D101EF0ADE, - F616CE3E0200B0D101EF0ADE, - F616CE3F0200B0D101EF0ADE, - F616CE410200B0D101EF0ADE, - F616CE420200B0D101EF0ADE, - F616CE430200B0D101EF0ADE, - F616CE440200B0D101EF0ADE, - F616CE480200B0D101EF0ADE, - F616CE4B0200B0D101EF0ADE, - F616CE4C0200B0D101EF0ADE, - F616CE4D0200B0D101EF0ADE, - F616CE4E0200B0D101EF0ADE, - F616CE4F0200B0D101EF0ADE, - F616CE510200B0D101EF0ADE, - F616CE520200B0D101EF0ADE, - F616CE530200B0D101EF0ADE, - F616CE580200B0D101EF0ADE, - F616CE5A0200B0D101EF0ADE, - F616CE5D0200B0D101EF0ADE, - F616CE5F0200B0D101EF0ADE, - F616CE600200B0D101EF0ADE, - F616CE670200B0D101EF0ADE, - F616CE680200B0D101EF0ADE, - F616CE690200B0D101EF0ADE, - F616CE6B0200B0D101EF0ADE, - F616CE6C0200B0D101EF0ADE, - F616CE6D0200B0D101EF0ADE, - F616CE6E0200B0D101EF0ADE, - F616CE6F0200B0D101EF0ADE, - F616CE710200B0D101EF0ADE, - F616CE720200B0D101EF0ADE, - F616CE740200B0D101EF0ADE, - F616CE750200B0D101EF0ADE, - F616CE7D0200B0D101EF0ADE, - F616CE7E0200B0D101EF0ADE, - F616CE7F0200B0D101EF0ADE, - F616CE800200B0D101EF0ADE, - F616CE810200B0D101EF0ADE, - F616CE820200B0D101EF0ADE, - F616CE830200B0D101EF0ADE, - F616CE840200B0D101EF0ADE, - F616CE870200B0D101EF0ADE, - F616CE880200B0D101EF0ADE, - F616CE890200B0D101EF0ADE, - F616CE8A0200B0D101EF0ADE, - F616CE8D0200B0D101EF0ADE, - F616CE8E0200B0D101EF0ADE, - F616CE8F0200B0D101EF0ADE, - F616CE910200B0D101EF0ADE, - F616CE920200B0D101EF0ADE, - F616CE930200B0D101EF0ADE, - F616CE940200B0D101EF0ADE, - F616CE950200B0D101EF0ADE, - F616CE960200B0D101EF0ADE, - F616CEA00200B0D101EF0ADE, - F616CF280200B14001EF0ADE, - F616CF290200B14001EF0ADE, - F6B281CD0200CC3601EF0ADE, - F6B281CE0200CC3601EF0ADE, - F6B281CF0200CC3601EF0ADE, - F6B281D00200CC3601EF0ADE, - F6B281D10200CC3601EF0ADE, - F6B281D20200CC3601EF0ADE, - F6B281D30200CC3601EF0ADE, - F6B281D40200CC3601EF0ADE, - F6B281D50200CC3601EF0ADE, - F6B281D60200CC3601EF0ADE, - F6B281D70200CC3601EF0ADE, - F6B281D80200CC3601EF0ADE, - F6B281D90200CC3601EF0ADE, - F6B281DA0200CC3601EF0ADE, - F6B281DB0200CC3601EF0ADE, - F6B281DC0200CC3601EF0ADE, - F6B281DD0200CC3601EF0ADE, - F6B281DE0200CC3601EF0ADE, - F6B281FA0200CDC101EF0ADE, - F6B281FB0200CDC101EF0ADE, - F6B281FC0200CDC101EF0ADE, - F6B281FD0200CDC101EF0ADE, - F6B281FE0200CDC101EF0ADE, - F6B281FF0200CDC101EF0ADE, - F6B282000200CDC101EF0ADE, - F6B282010200CDC101EF0ADE, - F6B282020200CDC101EF0ADE, - F6B282030200CDC101EF0ADE, - F6B282040200CDC101EF0ADE, - F6B282050200CDC101EF0ADE, - F6B282060200CDC101EF0ADE, - F6B282070200CDC101EF0ADE, - F6B282080200CDC101EF0ADE, - F6B282090200CDC101EF0ADE, - F69A8CCA0255A19901A86432, - F6D5B462025D6CDC01EF0AD1, - F654BF81025ED53F01C1F659, - F6A0479002AD56AF01EF0ACB, - F6A0479402AD571101EF0ACB, - ); - isa = PBXSourcesBuildPhase; - name = Sources; - }; - F616C36E0200B08E01EF0ADE = { - buildActionMask = 2147483647; - files = ( - F6B280D00200CB8101EF0ADE, - F6B2820A0200CDC101EF0ADE, - ); - isa = PBXFrameworksBuildPhase; - name = "Frameworks & Libraries"; - }; - F616C36F0200B08E01EF0ADE = { - buildActionMask = 2147483647; - files = ( - ); - isa = PBXRezBuildPhase; - name = "ResourceManager Resources"; - }; - F616C3700200B0CF01EF0ADE = { - children = ( - F616C3710200B0CF01EF0ADE, - F616C3870200B0CF01EF0ADE, - F616C39D0200B0CF01EF0ADE, - F616C3B60200B0CF01EF0ADE, - F616C3E60200B0CF01EF0ADE, - F616C3FF0200B0CF01EF0ADE, - F616C4080200B0CF01EF0ADE, - F616C4100200B0CF01EF0ADE, - F616C4490200B0CF01EF0ADE, - F616C4670200B0CF01EF0ADE, - F616C4920200B0CF01EF0ADE, - F616C53A0200B0CF01EF0ADE, - F616C55E0200B0CF01EF0ADE, - F616C6FC0200B0D001EF0ADE, - F616C7F30200B0D001EF0ADE, - F616C8040200B0D001EF0ADE, - F616C81C0200B0D001EF0ADE, - F616C8270200B0D001EF0ADE, - F616C8680200B0D001EF0ADE, - F616C8C90200B0D001EF0ADE, - F616C9000200B0D001EF0ADE, - F616C9500200B0D001EF0ADE, - ); - isa = PBXGroup; - name = src; - path = ../../../src; - refType = 2; - }; - F616C3710200B0CF01EF0ADE = { - children = ( - F616C3720200B0CF01EF0ADE, - F616C3730200B0CF01EF0ADE, - F616C3740200B0CF01EF0ADE, - F616C3750200B0CF01EF0ADE, - F616C3760200B0CF01EF0ADE, - F616C3770200B0CF01EF0ADE, - F616C3780200B0CF01EF0ADE, - F616C3790200B0CF01EF0ADE, - F616C37A0200B0CF01EF0ADE, - F616C37B0200B0CF01EF0ADE, - F616C37C0200B0CF01EF0ADE, - F616C37D0200B0CF01EF0ADE, - F616C37E0200B0CF01EF0ADE, - F616C37F0200B0CF01EF0ADE, - F616C3800200B0CF01EF0ADE, - F616C3820200B0CF01EF0ADE, - F616C3830200B0CF01EF0ADE, - ); - isa = PBXGroup; - path = alice; - refType = 4; - }; - F616C3720200B0CF01EF0ADE = { - isa = PBXFileReference; - path = alice.cpp; - refType = 4; - }; - F616C3730200B0CF01EF0ADE = { - isa = PBXFileReference; - path = alice.h; - refType = 4; - }; - F616C3740200B0CF01EF0ADE = { - isa = PBXFileReference; - path = alice_meta.epp; - refType = 4; - }; - F616C3750200B0CF01EF0ADE = { - isa = PBXFileReference; - path = alice_meta.h; - refType = 4; - }; - F616C3760200B0CF01EF0ADE = { - isa = PBXFileReference; - path = alice_proto.h; - refType = 4; - }; - F616C3770200B0CF01EF0ADE = { - isa = PBXFileReference; - path = aliceswi.h; - refType = 4; - }; - F616C3780200B0CF01EF0ADE = { - isa = PBXFileReference; - path = all.cpp; - refType = 4; - }; - F616C3790200B0CF01EF0ADE = { - isa = PBXFileReference; - path = all.h; - refType = 4; - }; - F616C37A0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = all_proto.h; - refType = 4; - }; - F616C37B0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = alloc.h; - refType = 4; - }; - F616C37C0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = blk.h; - refType = 4; - }; - F616C37D0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = exe.cpp; - refType = 4; - }; - F616C37E0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = exe_proto.h; - refType = 4; - }; - F616C37F0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = info.h; - refType = 4; - }; - F616C3800200B0CF01EF0ADE = { - isa = PBXFileReference; - path = lls.h; - refType = 4; - }; - F616C3820200B0CF01EF0ADE = { - isa = PBXFileReference; - path = tdr_proto.h; - refType = 4; - }; - F616C3830200B0CF01EF0ADE = { - isa = PBXFileReference; - path = tdr.cpp; - refType = 4; - }; - F616C3870200B0CF01EF0ADE = { - children = ( - F616C3880200B0CF01EF0ADE, - F616C3890200B0CF01EF0ADE, - F616C38A0200B0CF01EF0ADE, - F616C38B0200B0CF01EF0ADE, - F616C38C0200B0CF01EF0ADE, - F616C38D0200B0CF01EF0ADE, - F616C38E0200B0CF01EF0ADE, - F616C38F0200B0CF01EF0ADE, - F616C3900200B0CF01EF0ADE, - F616C3910200B0CF01EF0ADE, - F616C3950200B0CF01EF0ADE, - F616C3960200B0CF01EF0ADE, - F616C3970200B0CF01EF0ADE, - F616C3980200B0CF01EF0ADE, - F616C3990200B0CF01EF0ADE, - F616C39A0200B0CF01EF0ADE, - F616C39B0200B0CF01EF0ADE, - F616C39C0200B0CF01EF0ADE, - ); - isa = PBXGroup; - path = burp; - refType = 4; - }; - F616C3880200B0CF01EF0ADE = { - isa = PBXFileReference; - path = backu_proto.h; - refType = 4; - }; - F616C3890200B0CF01EF0ADE = { - isa = PBXFileReference; - path = backup.epp; - refType = 4; - }; - F616C38A0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = burp.cpp; - refType = 4; - }; - F616C38B0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = burp.def; - refType = 4; - }; - F616C38C0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = burp.h; - refType = 4; - }; - F616C38D0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = burp32.def; - refType = 4; - }; - F616C38E0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = burp_proto.h; - refType = 4; - }; - F616C38F0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = burpswi.h; - refType = 4; - }; - F616C3900200B0CF01EF0ADE = { - isa = PBXFileReference; - path = canon_proto.h; - refType = 4; - }; - F616C3910200B0CF01EF0ADE = { - isa = PBXFileReference; - path = canonical.cpp; - refType = 4; - }; - F616C3950200B0CF01EF0ADE = { - isa = PBXFileReference; - path = misc.cpp; - refType = 4; - }; - F616C3960200B0CF01EF0ADE = { - isa = PBXFileReference; - path = misc_proto.h; - refType = 4; - }; - F616C3970200B0CF01EF0ADE = { - isa = PBXFileReference; - path = mvol.cpp; - refType = 4; - }; - F616C3980200B0CF01EF0ADE = { - isa = PBXFileReference; - path = mvol_proto.h; - refType = 4; - }; - F616C3990200B0CF01EF0ADE = { - isa = PBXFileReference; - path = resto_proto.h; - refType = 4; - }; - F616C39A0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = restore.epp; - refType = 4; - }; - F616C39B0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = spit.cpp; - refType = 4; - }; - F616C39C0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = spit.h; - refType = 4; - }; - F616C39D0200B0CF01EF0ADE = { - children = ( - F616C39E0200B0CF01EF0ADE, - F616C3A40200B0CF01EF0ADE, - F69A8CC90255A19801A86432, - ); - isa = PBXGroup; - path = common; - refType = 4; - }; - F616C39E0200B0CF01EF0ADE = { - children = ( - F616C39F0200B0CF01EF0ADE, - F616C3A00200B0CF01EF0ADE, - F616C3A20200B0CF01EF0ADE, - F616C3A30200B0CF01EF0ADE, - ); - isa = PBXGroup; - path = memory; - refType = 4; - }; - F616C39F0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = allocators.cpp; - refType = 4; - }; - F616C3A00200B0CF01EF0ADE = { - isa = PBXFileReference; - path = allocators.h; - refType = 4; - }; - F616C3A20200B0CF01EF0ADE = { - isa = PBXFileReference; - path = memory_pool.cpp; - refType = 4; - }; - F616C3A30200B0CF01EF0ADE = { - isa = PBXFileReference; - path = memory_pool.h; - refType = 4; - }; - F616C3A40200B0CF01EF0ADE = { - children = ( - F616C3A50200B0CF01EF0ADE, - F616C3A60200B0CF01EF0ADE, - F616C3A70200B0CF01EF0ADE, - F616C3A80200B0CF01EF0ADE, - F616C3A90200B0CF01EF0ADE, - F616C3AA0200B0CF01EF0ADE, - ); - isa = PBXGroup; - path = mp; - refType = 4; - }; - F616C3A50200B0CF01EF0ADE = { - isa = PBXFileReference; - path = AtomicCounter.h; - refType = 4; - }; - F616C3A60200B0CF01EF0ADE = { - isa = PBXFileReference; - path = crit_section_guard.h; - refType = 4; - }; - F616C3A70200B0CF01EF0ADE = { - isa = PBXFileReference; - path = crit_section_lock.h; - refType = 4; - }; - F616C3A80200B0CF01EF0ADE = { - isa = PBXFileReference; - path = mutex.h; - refType = 4; - }; - F616C3A90200B0CF01EF0ADE = { - isa = PBXFileReference; - path = semaphore.h; - refType = 4; - }; - F616C3AA0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = thread.h; - refType = 4; - }; - F616C3B60200B0CF01EF0ADE = { - children = ( - F616C3B70200B0CF01EF0ADE, - F616C3B80200B0CF01EF0ADE, - F616C3B90200B0CF01EF0ADE, - F616C3BA0200B0CF01EF0ADE, - F616C3BB0200B0CF01EF0ADE, - F616C3BC0200B0CF01EF0ADE, - F616C3BD0200B0CF01EF0ADE, - F616C3BE0200B0CF01EF0ADE, - F616C3BF0200B0CF01EF0ADE, - F616C3C00200B0CF01EF0ADE, - F616C3C10200B0CF01EF0ADE, - F616C3C30200B0CF01EF0ADE, - F616C3C40200B0CF01EF0ADE, - F616C3C50200B0CF01EF0ADE, - F616C3C60200B0CF01EF0ADE, - F616C3C70200B0CF01EF0ADE, - F616C3C80200B0CF01EF0ADE, - F616C3C90200B0CF01EF0ADE, - F616C3CA0200B0CF01EF0ADE, - F616C3CB0200B0CF01EF0ADE, - F616C3CC0200B0CF01EF0ADE, - F616C3CD0200B0CF01EF0ADE, - F616C3CE0200B0CF01EF0ADE, - F616C3CF0200B0CF01EF0ADE, - F616C3D20200B0CF01EF0ADE, - F616C3D30200B0CF01EF0ADE, - F616C3D40200B0CF01EF0ADE, - F616C3D50200B0CF01EF0ADE, - F616C3D60200B0CF01EF0ADE, - F616C3D70200B0CF01EF0ADE, - F616C3D90200B0CF01EF0ADE, - F616C3DA0200B0CF01EF0ADE, - F616C3DB0200B0CF01EF0ADE, - F616C3DC0200B0CF01EF0ADE, - F616C3DD0200B0CF01EF0ADE, - F616C3DE0200B0CF01EF0ADE, - F616C3DF0200B0CF01EF0ADE, - F616C3E00200B0CF01EF0ADE, - F616C3E10200B0CF01EF0ADE, - F616C3E20200B0CF01EF0ADE, - F616C3E30200B0CF01EF0ADE, - F616C3E40200B0CF01EF0ADE, - F616C3E50200B0CF01EF0ADE, - ); - isa = PBXGroup; - path = dsql; - refType = 4; - }; - F616C3B70200B0CF01EF0ADE = { - isa = PBXFileReference; - path = all.h; - refType = 4; - }; - F616C3B80200B0CF01EF0ADE = { - isa = PBXFileReference; - path = alld.cpp; - refType = 4; - }; - F616C3B90200B0CF01EF0ADE = { - isa = PBXFileReference; - path = alld_proto.h; - refType = 4; - }; - F616C3BA0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = array.epp; - refType = 4; - }; - F616C3BB0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = array_proto.h; - refType = 4; - }; - F616C3BC0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = blk.h; - refType = 4; - }; - F616C3BD0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = blob.epp; - refType = 4; - }; - F616C3BE0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = blob_proto.h; - refType = 4; - }; - F616C3BF0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = chars.h; - refType = 4; - }; - F616C3C00200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ddl.cpp; - refType = 4; - }; - F616C3C10200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ddl_proto.h; - refType = 4; - }; - F616C3C30200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dsql.cpp; - refType = 4; - }; - F616C3C40200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dsql.def; - refType = 4; - }; - F616C3C50200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dsql.h; - refType = 4; - }; - F616C3C60200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dsql_proto.h; - refType = 4; - }; - F616C3C70200B0CF01EF0ADE = { - isa = PBXFileReference; - path = errd.cpp; - refType = 4; - }; - F616C3C80200B0CF01EF0ADE = { - isa = PBXFileReference; - path = errd_proto.h; - refType = 4; - }; - F616C3C90200B0CF01EF0ADE = { - isa = PBXFileReference; - path = gen.cpp; - refType = 4; - }; - F616C3CA0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = gen_proto.h; - refType = 4; - }; - F616C3CB0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = hsh.cpp; - refType = 4; - }; - F616C3CC0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = hsh_proto.h; - refType = 4; - }; - F616C3CD0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = keywords.h; - refType = 4; - }; - F616C3CE0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = make.cpp; - refType = 4; - }; - F616C3CF0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = make_proto.h; - refType = 4; - }; - F616C3D20200B0CF01EF0ADE = { - isa = PBXFileReference; - path = metd.epp; - refType = 4; - }; - F616C3D30200B0CF01EF0ADE = { - isa = PBXFileReference; - path = metd_proto.h; - refType = 4; - }; - F616C3D40200B0CF01EF0ADE = { - isa = PBXFileReference; - path = movd.cpp; - refType = 4; - }; - F616C3D50200B0CF01EF0ADE = { - isa = PBXFileReference; - path = movd_proto.h; - refType = 4; - }; - F616C3D60200B0CF01EF0ADE = { - isa = PBXFileReference; - path = node.h; - refType = 4; - }; - F616C3D70200B0CF01EF0ADE = { - isa = PBXFileReference; - path = parse.awk; - refType = 4; - }; - F616C3D90200B0CF01EF0ADE = { - isa = PBXFileReference; - path = parse.sed; - refType = 4; - }; - F616C3DA0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = parse.y; - refType = 4; - }; - F616C3DB0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = parse_proto.h; - refType = 4; - }; - F616C3DC0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = pass1.cpp; - refType = 4; - }; - F616C3DD0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = pass1_proto.h; - refType = 4; - }; - F616C3DE0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = prepa_proto.h; - refType = 4; - }; - F616C3DF0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = preparse.cpp; - refType = 4; - }; - F616C3E00200B0CF01EF0ADE = { - isa = PBXFileReference; - path = sqlda.h; - refType = 4; - }; - F616C3E10200B0CF01EF0ADE = { - isa = PBXFileReference; - path = sym.h; - refType = 4; - }; - F616C3E20200B0CF01EF0ADE = { - isa = PBXFileReference; - path = user__proto.h; - refType = 4; - }; - F616C3E30200B0CF01EF0ADE = { - isa = PBXFileReference; - path = user_dsql.cpp; - refType = 4; - }; - F616C3E40200B0CF01EF0ADE = { - isa = PBXFileReference; - path = utld.cpp; - refType = 4; - }; - F616C3E50200B0CF01EF0ADE = { - isa = PBXFileReference; - path = utld_proto.h; - refType = 4; - }; - F616C3E60200B0CF01EF0ADE = { - children = ( - F616C3E70200B0CF01EF0ADE, - F616C3E80200B0CF01EF0ADE, - F616C3E90200B0CF01EF0ADE, - F616C3EB0200B0CF01EF0ADE, - F616C3EC0200B0CF01EF0ADE, - F616C3ED0200B0CF01EF0ADE, - F616C3EE0200B0CF01EF0ADE, - F616C3EF0200B0CF01EF0ADE, - F616C3F00200B0CF01EF0ADE, - F616C3F10200B0CF01EF0ADE, - F616C3F20200B0CF01EF0ADE, - F616C3F30200B0CF01EF0ADE, - F616C3F40200B0CF01EF0ADE, - F616C3F50200B0CF01EF0ADE, - F616C3F60200B0CF01EF0ADE, - F616C3F70200B0CF01EF0ADE, - F616C3F80200B0CF01EF0ADE, - F616C3FA0200B0CF01EF0ADE, - F616C3FB0200B0CF01EF0ADE, - F616C3FC0200B0CF01EF0ADE, - F616C3FD0200B0CF01EF0ADE, - F616C3FE0200B0CF01EF0ADE, - ); - isa = PBXGroup; - path = dudley; - refType = 4; - }; - F616C3E70200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ddl.cpp; - refType = 4; - }; - F616C3E80200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ddl.h; - refType = 4; - }; - F616C3E90200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ddl_proto.h; - refType = 4; - }; - F616C3EB0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = exe.epp; - refType = 4; - }; - F616C3EC0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = exe_proto.h; - refType = 4; - }; - F616C3ED0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = expan_proto.h; - refType = 4; - }; - F616C3EE0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = expand.cpp; - refType = 4; - }; - F616C3EF0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = expr.cpp; - refType = 4; - }; - F616C3F00200B0CF01EF0ADE = { - isa = PBXFileReference; - path = expr_proto.h; - refType = 4; - }; - F616C3F10200B0CF01EF0ADE = { - isa = PBXFileReference; - path = extra_proto.h; - refType = 4; - }; - F616C3F20200B0CF01EF0ADE = { - isa = PBXFileReference; - path = extract.epp; - refType = 4; - }; - F616C3F30200B0CF01EF0ADE = { - isa = PBXFileReference; - path = gener_proto.h; - refType = 4; - }; - F616C3F40200B0CF01EF0ADE = { - isa = PBXFileReference; - path = generate.cpp; - refType = 4; - }; - F616C3F50200B0CF01EF0ADE = { - isa = PBXFileReference; - path = hsh.cpp; - refType = 4; - }; - F616C3F60200B0CF01EF0ADE = { - isa = PBXFileReference; - path = hsh_proto.h; - refType = 4; - }; - F616C3F70200B0CF01EF0ADE = { - isa = PBXFileReference; - path = lex.cpp; - refType = 4; - }; - F616C3F80200B0CF01EF0ADE = { - isa = PBXFileReference; - path = lex_proto.h; - refType = 4; - }; - F616C3FA0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = parse.cpp; - refType = 4; - }; - F616C3FB0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = parse.h; - refType = 4; - }; - F616C3FC0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = parse_proto.h; - refType = 4; - }; - F616C3FD0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = trn.cpp; - refType = 4; - }; - F616C3FE0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = trn_proto.h; - refType = 4; - }; - F616C3FF0200B0CF01EF0ADE = { - children = ( - F616C4000200B0CF01EF0ADE, - F616C4010200B0CF01EF0ADE, - F616C4020200B0CF01EF0ADE, - F616C4030200B0CF01EF0ADE, - F616C4040200B0CF01EF0ADE, - F616C4050200B0CF01EF0ADE, - ); - isa = PBXGroup; - path = extlib; - refType = 4; - }; - F616C4000200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ib_udf.c; - refType = 4; - }; - F616C4010200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ib_udf.h; - refType = 4; - }; - F616C4020200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ib_udf.sql; - refType = 4; - }; - F616C4030200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ib_util.c; - refType = 4; - }; - F616C4040200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ib_util.h; - refType = 4; - }; - F616C4050200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ib_util.pas; - refType = 4; - }; - F616C4080200B0CF01EF0ADE = { - children = ( - F616C4090200B0CF01EF0ADE, - F616C40A0200B0CF01EF0ADE, - F616C40B0200B0CF01EF0ADE, - F616C40C0200B0CF01EF0ADE, - F616C40D0200B0CF01EF0ADE, - ); - isa = PBXGroup; - path = fbutil; - refType = 4; - }; - F616C4090200B0CF01EF0ADE = { - isa = PBXFileReference; - path = FirebirdConfig.cpp; - refType = 4; - }; - F616C40A0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = FirebirdConfig.h; - refType = 4; - }; - F616C40B0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = FirebirdConfigFile.cpp; - refType = 4; - }; - F616C40C0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = FirebirdConfigFile.h; - refType = 4; - }; - F616C40D0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = main.cpp; - refType = 4; - }; - F616C4100200B0CF01EF0ADE = { - children = ( - F616C4110200B0CF01EF0ADE, - F616C4120200B0CF01EF0ADE, - F616C4130200B0CF01EF0ADE, - F616C4140200B0CF01EF0ADE, - F616C4150200B0CF01EF0ADE, - F616C4160200B0CF01EF0ADE, - F616C4170200B0CF01EF0ADE, - F616C4180200B0CF01EF0ADE, - F616C4190200B0CF01EF0ADE, - F616C41A0200B0CF01EF0ADE, - F616C41B0200B0CF01EF0ADE, - F616C41C0200B0CF01EF0ADE, - F616C41D0200B0CF01EF0ADE, - F616C41E0200B0CF01EF0ADE, - F616C41F0200B0CF01EF0ADE, - F616C4200200B0CF01EF0ADE, - F616C4210200B0CF01EF0ADE, - F616C4220200B0CF01EF0ADE, - F616C4230200B0CF01EF0ADE, - F616C4240200B0CF01EF0ADE, - F616C4250200B0CF01EF0ADE, - F616C4260200B0CF01EF0ADE, - F616C4270200B0CF01EF0ADE, - F616C4280200B0CF01EF0ADE, - F616C4290200B0CF01EF0ADE, - F616C42A0200B0CF01EF0ADE, - F616C42B0200B0CF01EF0ADE, - F616C42C0200B0CF01EF0ADE, - F616C42D0200B0CF01EF0ADE, - F616C42E0200B0CF01EF0ADE, - F616C42F0200B0CF01EF0ADE, - F616C4300200B0CF01EF0ADE, - F616C4310200B0CF01EF0ADE, - F616C4320200B0CF01EF0ADE, - F616C4330200B0CF01EF0ADE, - F616C4350200B0CF01EF0ADE, - F616C4360200B0CF01EF0ADE, - F616C4370200B0CF01EF0ADE, - F616C4380200B0CF01EF0ADE, - F616C4390200B0CF01EF0ADE, - F616C43A0200B0CF01EF0ADE, - F616C43B0200B0CF01EF0ADE, - F616C43C0200B0CF01EF0ADE, - F616C43D0200B0CF01EF0ADE, - F616C43E0200B0CF01EF0ADE, - F616C43F0200B0CF01EF0ADE, - F616C4400200B0CF01EF0ADE, - F616C4410200B0CF01EF0ADE, - F616C4420200B0CF01EF0ADE, - F616C4430200B0CF01EF0ADE, - F616C4440200B0CF01EF0ADE, - F616C4450200B0CF01EF0ADE, - F616C4460200B0CF01EF0ADE, - F616C4470200B0CF01EF0ADE, - F616C4480200B0CF01EF0ADE, - ); - isa = PBXGroup; - path = gpre; - refType = 4; - }; - F616C4110200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ada.cpp; - refType = 4; - }; - F616C4120200B0CF01EF0ADE = { - isa = PBXFileReference; - path = c_cxx.cpp; - refType = 4; - }; - F616C4130200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cdbtable.h; - refType = 4; - }; - F616C4140200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cmd.cpp; - refType = 4; - }; - F616C4150200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cmd_proto.h; - refType = 4; - }; - F616C4160200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cme.cpp; - refType = 4; - }; - F616C4170200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cme_proto.h; - refType = 4; - }; - F616C4180200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cmp.cpp; - refType = 4; - }; - F616C4190200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cmp_proto.h; - refType = 4; - }; - F616C41A0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cob.cpp; - refType = 4; - }; - F616C41B0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dyntable.cpp; - refType = 4; - }; - F616C41C0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dyntable.h; - refType = 4; - }; - F616C41D0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = exp.cpp; - refType = 4; - }; - F616C41E0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = exp_proto.h; - refType = 4; - }; - F616C4240200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ftn.cpp; - refType = 4; - }; - F616C4250200B0CF01EF0ADE = { - isa = PBXFileReference; - path = gpre.cpp; - refType = 4; - }; - F616C4260200B0CF01EF0ADE = { - isa = PBXFileReference; - path = gpre.h; - refType = 4; - }; - F616C4270200B0CF01EF0ADE = { - isa = PBXFileReference; - path = gpre_meta.epp; - refType = 4; - }; - F616C4280200B0CF01EF0ADE = { - isa = PBXFileReference; - path = gpre_meta.h; - refType = 4; - }; - F616C4290200B0CF01EF0ADE = { - isa = PBXFileReference; - path = gpre_meta_boot.cpp; - refType = 4; - }; - F616C42A0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = gpre_proto.h; - refType = 4; - }; - F616C42B0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = gpreswi.h; - refType = 4; - }; - F616C42C0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = hsh.cpp; - refType = 4; - }; - F616C42D0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = hsh.h; - refType = 4; - }; - F616C42E0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = hsh_proto.h; - refType = 4; - }; - F616C42F0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = int.cpp; - refType = 4; - }; - F616C4300200B0CF01EF0ADE = { - isa = PBXFileReference; - path = int_cxx.cpp; - refType = 4; - }; - F616C4310200B0CF01EF0ADE = { - isa = PBXFileReference; - path = jrdme_proto.h; - refType = 4; - }; - F616C4320200B0CF01EF0ADE = { - isa = PBXFileReference; - path = jrdmet.cpp; - refType = 4; - }; - F616C4330200B0CF01EF0ADE = { - isa = PBXFileReference; - path = lang_proto.h; - refType = 4; - }; - F616C4350200B0CF01EF0ADE = { - isa = PBXFileReference; - path = movg.cpp; - refType = 4; - }; - F616C4360200B0CF01EF0ADE = { - isa = PBXFileReference; - path = movg_proto.h; - refType = 4; - }; - F616C4370200B0CF01EF0ADE = { - isa = PBXFileReference; - path = msc.cpp; - refType = 4; - }; - F616C4380200B0CF01EF0ADE = { - isa = PBXFileReference; - path = msc_proto.h; - refType = 4; - }; - F616C43A0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = par.cpp; - refType = 4; - }; - F616C43B0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = par_proto.h; - refType = 4; - }; - F616C43C0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = parse.h; - refType = 4; - }; - F616C43D0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = pas.cpp; - refType = 4; - }; - F616C43E0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = pat.cpp; - refType = 4; - }; - F616C43F0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = pat.h; - refType = 4; - }; - F616C4400200B0CF01EF0ADE = { - isa = PBXFileReference; - path = pat_proto.h; - refType = 4; - }; - F616C4410200B0CF01EF0ADE = { - isa = PBXFileReference; - path = prett_proto.h; - refType = 4; - }; - F616C4420200B0CF01EF0ADE = { - isa = PBXFileReference; - path = pretty.cpp; - refType = 4; - }; - F616C4430200B0CF01EF0ADE = { - isa = PBXFileReference; - path = sdltable.h; - refType = 4; - }; - F616C4440200B0CF01EF0ADE = { - isa = PBXFileReference; - path = sqe.cpp; - refType = 4; - }; - F616C4450200B0CF01EF0ADE = { - isa = PBXFileReference; - path = sqe_proto.h; - refType = 4; - }; - F616C4460200B0CF01EF0ADE = { - isa = PBXFileReference; - path = sql.cpp; - refType = 4; - }; - F616C4470200B0CF01EF0ADE = { - isa = PBXFileReference; - path = sql_proto.h; - refType = 4; - }; - F616C4480200B0CF01EF0ADE = { - isa = PBXFileReference; - path = words.h; - refType = 4; - }; - F616C4490200B0CF01EF0ADE = { - children = ( - F616C44A0200B0CF01EF0ADE, - F616C44B0200B0CF01EF0ADE, - F616C44C0200B0CF01EF0ADE, - F616C44D0200B0CF01EF0ADE, - F616C44E0200B0CF01EF0ADE, - F616C44F0200B0CF01EF0ADE, - F616C4500200B0CF01EF0ADE, - F616C4510200B0CF01EF0ADE, - F616C4520200B0CF01EF0ADE, - F616C4530200B0CF01EF0ADE, - F616C4630200B0CF01EF0ADE, - F616C4640200B0CF01EF0ADE, - F616C4660200B0CF01EF0ADE, - ); - isa = PBXGroup; - path = include; - refType = 4; - }; - F616C44A0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = fb_blk.h; - refType = 4; - }; - F616C44B0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = fb_exception.h; - refType = 4; - }; - F616C44C0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = fb_list.h; - refType = 4; - }; - F616C44D0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = fb_macros.h; - refType = 4; - }; - F616C44E0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = fb_map.h; - refType = 4; - }; - F616C44F0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = fb_string.h; - refType = 4; - }; - F616C4500200B0CF01EF0ADE = { - isa = PBXFileReference; - path = fb_types.h; - refType = 4; - }; - F616C4510200B0CF01EF0ADE = { - isa = PBXFileReference; - path = fb_vector.h; - refType = 4; - }; - F616C4520200B0CF01EF0ADE = { - isa = PBXFileReference; - path = firebird.h; - refType = 4; - }; - F616C4530200B0CF01EF0ADE = { - children = ( - F616C4540200B0CF01EF0ADE, - F616C4550200B0CF01EF0ADE, - F616C4560200B0CF01EF0ADE, - F616C4570200B0CF01EF0ADE, - F616C4580200B0CF01EF0ADE, - F616C4590200B0CF01EF0ADE, - F616C45A0200B0CF01EF0ADE, - F616C45B0200B0CF01EF0ADE, - F616C45C0200B0CF01EF0ADE, - F616C45D0200B0CF01EF0ADE, - F616C45E0200B0CF01EF0ADE, - F616C45F0200B0CF01EF0ADE, - F616C4600200B0CF01EF0ADE, - F616C4610200B0CF01EF0ADE, - F616C4620200B0CF01EF0ADE, - ); - isa = PBXGroup; - path = gen; - refType = 4; - }; - F616C4540200B0CF01EF0ADE = { - isa = PBXFileReference; - path = autoconfig.h; - refType = 4; - }; - F616C4550200B0CF01EF0ADE = { - isa = PBXFileReference; - path = autoconfig_msvc.h; - refType = 4; - }; - F616C4580200B0CF01EF0ADE = { - isa = PBXFileReference; - path = codetext.h; - refType = 4; - }; - F616C4590200B0CF01EF0ADE = { - isa = PBXFileReference; - path = files.txt; - refType = 4; - }; - F616C45B0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = gds_codes.pas; - refType = 4; - }; - F616C45C0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = iberror.h; - refType = 4; - }; - F616C45D0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ids.h; - refType = 4; - }; - F616C45E0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = msg_facs.h; - refType = 4; - }; - F616C45F0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = msgs.h; - refType = 4; - }; - F616C4600200B0CF01EF0ADE = { - isa = PBXFileReference; - path = rdb_codes.h; - refType = 4; - }; - F616C4610200B0CF01EF0ADE = { - isa = PBXFileReference; - path = README.txt; - refType = 4; - }; - F616C4620200B0CF01EF0ADE = { - isa = PBXFileReference; - path = sql_code.h; - refType = 4; - }; - F616C4630200B0CF01EF0ADE = { - isa = PBXFileReference; - path = iberror.h; - refType = 4; - }; - F616C4640200B0CF01EF0ADE = { - children = ( - F616C4650200B0CF01EF0ADE, - ); - isa = PBXGroup; - path = jrd; - refType = 4; - }; - F616C4660200B0CF01EF0ADE = { - isa = PBXFileReference; - path = old_fb_blk.h; - refType = 4; - }; - F616C4670200B0CF01EF0ADE = { - children = ( - F616C4680200B0CF01EF0ADE, - F616C4700200B0CF01EF0ADE, - F616C47C0200B0CF01EF0ADE, - F616C4880200B0CF01EF0ADE, - ); - isa = PBXGroup; - path = install; - refType = 4; - }; - F616C4680200B0CF01EF0ADE = { - children = ( - F616C4690200B0CF01EF0ADE, - F616C46C0200B0CF01EF0ADE, - ); - isa = PBXGroup; - path = "arch-specific"; - refType = 4; - }; - F616C4690200B0CF01EF0ADE = { - children = ( - F616C46A0200B0CF01EF0ADE, - ); - isa = PBXGroup; - path = darwin; - refType = 4; - }; - F616C46A0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = FrameworkInfo.plist; - refType = 4; - }; - F616C46C0200B0CF01EF0ADE = { - children = ( - F616C46D0200B0CF01EF0ADE, - F616C46F0200B0CF01EF0ADE, - ); - isa = PBXGroup; - path = linux; - refType = 4; - }; - F616C46D0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = CSrpmscript; - refType = 4; - }; - F616C46F0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = SSrpmscript; - refType = 4; - }; - F616C4700200B0CF01EF0ADE = { - children = ( - F616C4710200B0CF01EF0ADE, - F616C4720200B0CF01EF0ADE, - F616C4730200B0CF01EF0ADE, - F616C4740200B0CF01EF0ADE, - F616C4750200B0CF01EF0ADE, - F616C4760200B0CF01EF0ADE, - F616C4770200B0CF01EF0ADE, - F616C4780200B0CF01EF0ADE, - F616C4790200B0CF01EF0ADE, - F616C47A0200B0CF01EF0ADE, - ); - isa = PBXGroup; - path = classic; - refType = 4; - }; - F616C4710200B0CF01EF0ADE = { - isa = PBXFileReference; - path = CSrpmheader.txt; - refType = 4; - }; - F616C4720200B0CF01EF0ADE = { - isa = PBXExecutableFileReference; - path = install.sh.in; - refType = 4; - }; - F616C4730200B0CF01EF0ADE = { - isa = PBXExecutableFileReference; - path = postinstall.sh.in; - refType = 4; - }; - F616C4740200B0CF01EF0ADE = { - isa = PBXExecutableFileReference; - path = postuninstall.sh.in; - refType = 4; - }; - F616C4750200B0CF01EF0ADE = { - isa = PBXExecutableFileReference; - path = preinstall.sh.in; - refType = 4; - }; - F616C4760200B0CF01EF0ADE = { - isa = PBXExecutableFileReference; - path = preuninstall.sh.in; - refType = 4; - }; - F616C4770200B0CF01EF0ADE = { - isa = PBXFileReference; - path = rpmfiles.txt.in; - refType = 4; - }; - F616C4780200B0CF01EF0ADE = { - isa = PBXFileReference; - path = rpmheader.txt.in; - refType = 4; - }; - F616C4790200B0CF01EF0ADE = { - isa = PBXFileReference; - path = tarInstall.sh.in; - refType = 4; - }; - F616C47A0200B0CF01EF0ADE = { - isa = PBXExecutableFileReference; - path = TarKullFiles.sh.in; - refType = 4; - }; - F616C47C0200B0CF01EF0ADE = { - children = ( - F616C47D0200B0CF01EF0ADE, - F616C47E0200B0CF01EF0ADE, - F616C47F0200B0CF01EF0ADE, - F616C4800200B0CF01EF0ADE, - F616C4810200B0CF01EF0ADE, - F616C4820200B0CF01EF0ADE, - F616C4830200B0CF01EF0ADE, - F616C4840200B0CF01EF0ADE, - F616C4850200B0CF01EF0ADE, - F616C4860200B0CF01EF0ADE, - F616C4870200B0CF01EF0ADE, - ); - isa = PBXGroup; - path = misc; - refType = 4; - }; - F616C47D0200B0CF01EF0ADE = { - isa = PBXExecutableFileReference; - path = changeDBAPassword.sh; - refType = 4; - }; - F616C47E0200B0CF01EF0ADE = { - isa = PBXExecutableFileReference; - path = CSchangeRunUser.sh; - refType = 4; - }; - F616C47F0200B0CF01EF0ADE = { - isa = PBXExecutableFileReference; - path = CSrestoreRootRunUser.sh; - refType = 4; - }; - F616C4800200B0CF01EF0ADE = { - isa = PBXFileReference; - path = firebird.conf; - refType = 4; - }; - F616C4810200B0CF01EF0ADE = { - isa = PBXExecutableFileReference; - path = firebird.init.d.generic; - refType = 4; - }; - F616C4820200B0CF01EF0ADE = { - isa = PBXExecutableFileReference; - path = firebird.init.d.mandrake; - refType = 4; - }; - F616C4830200B0CF01EF0ADE = { - isa = PBXFileReference; - path = firebird.xinetd; - refType = 4; - }; - F616C4840200B0CF01EF0ADE = { - isa = PBXFileReference; - path = firebird.xinetd.in; - refType = 4; - }; - F616C4850200B0CF01EF0ADE = { - isa = PBXFileReference; - path = README; - refType = 4; - }; - F616C4860200B0CF01EF0ADE = { - isa = PBXExecutableFileReference; - path = SSchangeRunUser.sh; - refType = 4; - }; - F616C4870200B0CF01EF0ADE = { - isa = PBXExecutableFileReference; - path = SSrestoreRootRunUser.sh; - refType = 4; - }; - F616C4880200B0CF01EF0ADE = { - children = ( - F616C4890200B0CF01EF0ADE, - F616C48A0200B0CF01EF0ADE, - F616C48B0200B0CF01EF0ADE, - F616C48C0200B0CF01EF0ADE, - F616C48D0200B0CF01EF0ADE, - F616C48E0200B0CF01EF0ADE, - F616C48F0200B0CF01EF0ADE, - F616C4900200B0CF01EF0ADE, - F616C4910200B0CF01EF0ADE, - ); - isa = PBXGroup; - path = super; - refType = 4; - }; - F616C4890200B0CF01EF0ADE = { - isa = PBXExecutableFileReference; - path = SSchangePasswd.sh; - refType = 4; - }; - F616C48A0200B0CF01EF0ADE = { - isa = PBXExecutableFileReference; - path = SSinstall.sh; - refType = 4; - }; - F616C48B0200B0CF01EF0ADE = { - isa = PBXExecutableFileReference; - path = SSpostinstall.sh; - refType = 4; - }; - F616C48C0200B0CF01EF0ADE = { - isa = PBXExecutableFileReference; - path = SSpostuninstall.sh; - refType = 4; - }; - F616C48D0200B0CF01EF0ADE = { - isa = PBXExecutableFileReference; - path = SSpreinstall.sh; - refType = 4; - }; - F616C48E0200B0CF01EF0ADE = { - isa = PBXExecutableFileReference; - path = SSpreuninstall.sh; - refType = 4; - }; - F616C48F0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = SSrpmfiles.txt; - refType = 4; - }; - F616C4900200B0CF01EF0ADE = { - isa = PBXFileReference; - path = SSrpmheader.txt; - refType = 4; - }; - F616C4910200B0CF01EF0ADE = { - isa = PBXFileReference; - path = SSTarInstall.sh; - refType = 4; - }; - F616C4920200B0CF01EF0ADE = { - children = ( - F616C4930200B0CF01EF0ADE, - F616C4940200B0CF01EF0ADE, - F616C4950200B0CF01EF0ADE, - F616C4960200B0CF01EF0ADE, - F616C4970200B0CF01EF0ADE, - F616C4980200B0CF01EF0ADE, - F616C4990200B0CF01EF0ADE, - F616C49A0200B0CF01EF0ADE, - F616C49B0200B0CF01EF0ADE, - F616C49C0200B0CF01EF0ADE, - F616C49D0200B0CF01EF0ADE, - F616C49E0200B0CF01EF0ADE, - F616C49F0200B0CF01EF0ADE, - F616C4A00200B0CF01EF0ADE, - F616C4A10200B0CF01EF0ADE, - F616C4A20200B0CF01EF0ADE, - F616C4A30200B0CF01EF0ADE, - F616C4A40200B0CF01EF0ADE, - F616C4A50200B0CF01EF0ADE, - F616C4A60200B0CF01EF0ADE, - F616C4A70200B0CF01EF0ADE, - F616C4A80200B0CF01EF0ADE, - F616C4A90200B0CF01EF0ADE, - F616C4AA0200B0CF01EF0ADE, - F616C4AB0200B0CF01EF0ADE, - F616C4AC0200B0CF01EF0ADE, - F616C4AD0200B0CF01EF0ADE, - F616C4AE0200B0CF01EF0ADE, - F616C4AF0200B0CF01EF0ADE, - F616C4B00200B0CF01EF0ADE, - F616C4B10200B0CF01EF0ADE, - F616C4B20200B0CF01EF0ADE, - F616C4B30200B0CF01EF0ADE, - F616C4B40200B0CF01EF0ADE, - F616C4B50200B0CF01EF0ADE, - F616C4B60200B0CF01EF0ADE, - F616C4B70200B0CF01EF0ADE, - F616C4B80200B0CF01EF0ADE, - F616C4B90200B0CF01EF0ADE, - F616C4BA0200B0CF01EF0ADE, - F616C4BB0200B0CF01EF0ADE, - F616C4BC0200B0CF01EF0ADE, - F616C4BD0200B0CF01EF0ADE, - F616C4BE0200B0CF01EF0ADE, - F616C4BF0200B0CF01EF0ADE, - F616C4C00200B0CF01EF0ADE, - F616C4C10200B0CF01EF0ADE, - F616C4C20200B0CF01EF0ADE, - F616C4C30200B0CF01EF0ADE, - F616C4C40200B0CF01EF0ADE, - F616C4C50200B0CF01EF0ADE, - F616C4C60200B0CF01EF0ADE, - F616C4C70200B0CF01EF0ADE, - F616C4C80200B0CF01EF0ADE, - F616C4C90200B0CF01EF0ADE, - F616C4CA0200B0CF01EF0ADE, - F616C4CB0200B0CF01EF0ADE, - F616C4CC0200B0CF01EF0ADE, - F616C4CD0200B0CF01EF0ADE, - F616C4CE0200B0CF01EF0ADE, - F616C4CF0200B0CF01EF0ADE, - F616C4D00200B0CF01EF0ADE, - F616C4D10200B0CF01EF0ADE, - F616C4D20200B0CF01EF0ADE, - F616C4D30200B0CF01EF0ADE, - F616C4D40200B0CF01EF0ADE, - F616C4D50200B0CF01EF0ADE, - F616C4D60200B0CF01EF0ADE, - F616C4D70200B0CF01EF0ADE, - F616C4D80200B0CF01EF0ADE, - F616C4D90200B0CF01EF0ADE, - F616C4DA0200B0CF01EF0ADE, - F616C4DB0200B0CF01EF0ADE, - F616C4DC0200B0CF01EF0ADE, - F616C4DD0200B0CF01EF0ADE, - F616C4DE0200B0CF01EF0ADE, - F616C4DF0200B0CF01EF0ADE, - F616C4E00200B0CF01EF0ADE, - F616C4E10200B0CF01EF0ADE, - F616C4E20200B0CF01EF0ADE, - F616C4E30200B0CF01EF0ADE, - F616C4E40200B0CF01EF0ADE, - F616C4E50200B0CF01EF0ADE, - F616C4E60200B0CF01EF0ADE, - F616C4E70200B0CF01EF0ADE, - F616C4E80200B0CF01EF0ADE, - F616C4E90200B0CF01EF0ADE, - F616C4EA0200B0CF01EF0ADE, - F616C4EB0200B0CF01EF0ADE, - F616C4EC0200B0CF01EF0ADE, - F616C4ED0200B0CF01EF0ADE, - F616C4EE0200B0CF01EF0ADE, - F616C4EF0200B0CF01EF0ADE, - F616C4F00200B0CF01EF0ADE, - F616C4F10200B0CF01EF0ADE, - F616C4F20200B0CF01EF0ADE, - F616C4F30200B0CF01EF0ADE, - F616C4F40200B0CF01EF0ADE, - F616C4F50200B0CF01EF0ADE, - F616C4F60200B0CF01EF0ADE, - F616C4F70200B0CF01EF0ADE, - F616C4F80200B0CF01EF0ADE, - F616C4F90200B0CF01EF0ADE, - F616C4FA0200B0CF01EF0ADE, - F616C4FB0200B0CF01EF0ADE, - F616C4FC0200B0CF01EF0ADE, - F616C4FD0200B0CF01EF0ADE, - F616C4FE0200B0CF01EF0ADE, - F616C4FF0200B0CF01EF0ADE, - F616C5000200B0CF01EF0ADE, - F616C5010200B0CF01EF0ADE, - F616C5020200B0CF01EF0ADE, - F616C5030200B0CF01EF0ADE, - F616C5040200B0CF01EF0ADE, - F616C5050200B0CF01EF0ADE, - F616C5060200B0CF01EF0ADE, - F616C5070200B0CF01EF0ADE, - F6A930D4025B5FF501EF0AD1, - F616C5080200B0CF01EF0ADE, - F616C5090200B0CF01EF0ADE, - F616C50A0200B0CF01EF0ADE, - F616C50B0200B0CF01EF0ADE, - F616C50C0200B0CF01EF0ADE, - F616C50D0200B0CF01EF0ADE, - F616C50E0200B0CF01EF0ADE, - F616C50F0200B0CF01EF0ADE, - F616C5100200B0CF01EF0ADE, - F616C5110200B0CF01EF0ADE, - F616C5120200B0CF01EF0ADE, - F616C5150200B0CF01EF0ADE, - F616C5160200B0CF01EF0ADE, - F616C5170200B0CF01EF0ADE, - F616C5180200B0CF01EF0ADE, - F616C5190200B0CF01EF0ADE, - F616C51A0200B0CF01EF0ADE, - F616C51B0200B0CF01EF0ADE, - F616C51C0200B0CF01EF0ADE, - F616C51D0200B0CF01EF0ADE, - F616C51E0200B0CF01EF0ADE, - F616C51F0200B0CF01EF0ADE, - F616C5200200B0CF01EF0ADE, - F616C5210200B0CF01EF0ADE, - F616C5220200B0CF01EF0ADE, - ); - isa = PBXGroup; - path = intl; - refType = 4; - }; - F616C4930200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ancyrr.h; - refType = 4; - }; - F616C4940200B0CF01EF0ADE = { - isa = PBXFileReference; - path = anczech.h; - refType = 4; - }; - F616C4950200B0CF01EF0ADE = { - isa = PBXFileReference; - path = angreek1.h; - refType = 4; - }; - F616C4960200B0CF01EF0ADE = { - isa = PBXFileReference; - path = anhundc.h; - refType = 4; - }; - F616C4970200B0CF01EF0ADE = { - isa = PBXFileReference; - path = anpolish.h; - refType = 4; - }; - F616C4980200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ansii850.h; - refType = 4; - }; - F616C4990200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ansiintl.h; - refType = 4; - }; - F616C49A0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ansinor4.h; - refType = 4; - }; - F616C49B0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ansislov.h; - refType = 4; - }; - F616C49C0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ansispan.h; - refType = 4; - }; - F616C49D0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ansiswfn.h; - refType = 4; - }; - F616C49E0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = anturk.h; - refType = 4; - }; - F616C49F0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ascii.h; - refType = 4; - }; - F616C4A00200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ascii2.h; - refType = 4; - }; - F616C4A10200B0CF01EF0ADE = { - isa = PBXFileReference; - path = bllt1ca0.h; - refType = 4; - }; - F616C4A20200B0CF01EF0ADE = { - isa = PBXFileReference; - path = bllt1da0.h; - refType = 4; - }; - F616C4A30200B0CF01EF0ADE = { - isa = PBXFileReference; - path = bllt1de0.h; - refType = 4; - }; - F616C4A40200B0CF01EF0ADE = { - isa = PBXFileReference; - path = bllt1es0.h; - refType = 4; - }; - F616C4A50200B0CF01EF0ADE = { - isa = PBXFileReference; - path = bllt1fi0.h; - refType = 4; - }; - F616C4A60200B0CF01EF0ADE = { - isa = PBXFileReference; - path = bllt1fr0.h; - refType = 4; - }; - F616C4A70200B0CF01EF0ADE = { - isa = PBXFileReference; - path = bllt1is0.h; - refType = 4; - }; - F616C4A80200B0CF01EF0ADE = { - isa = PBXFileReference; - path = bllt1it0.h; - refType = 4; - }; - F616C4A90200B0CF01EF0ADE = { - isa = PBXFileReference; - path = bllt1nl0.h; - refType = 4; - }; - F616C4AA0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = bllt1no0.h; - refType = 4; - }; - F616C4AB0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = bllt1pt0.h; - refType = 4; - }; - F616C4AC0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = bllt1sv0.h; - refType = 4; - }; - F616C4AD0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = bllt1uk0.h; - refType = 4; - }; - F616C4AE0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = bllt1us0.h; - refType = 4; - }; - F616C4AF0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = blnxtde0.h; - refType = 4; - }; - F616C4B00200B0CF01EF0ADE = { - isa = PBXFileReference; - path = blnxtes0.h; - refType = 4; - }; - F616C4B10200B0CF01EF0ADE = { - isa = PBXFileReference; - path = blnxtfr0.h; - refType = 4; - }; - F616C4B20200B0CF01EF0ADE = { - isa = PBXFileReference; - path = blnxtit0.h; - refType = 4; - }; - F616C4B30200B0CF01EF0ADE = { - isa = PBXFileReference; - path = blnxtus0.h; - refType = 4; - }; - F616C4B40200B0CF01EF0ADE = { - isa = PBXFileReference; - path = charsets.h; - refType = 4; - }; - F616C4B50200B0CF01EF0ADE = { - isa = PBXFileReference; - path = countries.h; - refType = 4; - }; - F616C4B60200B0CF01EF0ADE = { - isa = PBXFileReference; - path = country_codes.h; - refType = 4; - }; - F616C4B70200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cs_437.h; - refType = 4; - }; - F616C4B80200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cs_850.h; - refType = 4; - }; - F616C4B90200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cs_852.h; - refType = 4; - }; - F616C4BA0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cs_857.h; - refType = 4; - }; - F616C4BB0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cs_860.h; - refType = 4; - }; - F616C4BC0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cs_861.h; - refType = 4; - }; - F616C4BD0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cs_863.h; - refType = 4; - }; - F616C4BE0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cs_865.h; - refType = 4; - }; - F616C4BF0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cs_big5.c; - refType = 4; - }; - F616C4C00200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cs_big5.h; - refType = 4; - }; - F616C4C10200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cs_cyrl.h; - refType = 4; - }; - F616C4C20200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cs_gb2312.c; - refType = 4; - }; - F616C4C30200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cs_gb2312.h; - refType = 4; - }; - F616C4C40200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cs_jis.c; - refType = 4; - }; - F616C4C50200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cs_jis_0208_1990.h; - refType = 4; - }; - F616C4C60200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cs_jis_20208_1990.c; - refType = 4; - }; - F616C4C70200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cs_ksc.c; - refType = 4; - }; - F616C4C80200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cs_ksc5601.h; - refType = 4; - }; - F616C4C90200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cs_latin1.h; - refType = 4; - }; - F616C4CA0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cs_narrow.c; - refType = 4; - }; - F616C4CB0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cs_next.h; - refType = 4; - }; - F616C4CC0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cs_sjis.h; - refType = 4; - }; - F616C4CD0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cs_unicode.c; - refType = 4; - }; - F616C4CE0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cs_utffss.c; - refType = 4; - }; - F616C4CF0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cs_w1250.h; - refType = 4; - }; - F616C4D00200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cs_w1251.h; - refType = 4; - }; - F616C4D10200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cs_w1252.h; - refType = 4; - }; - F616C4D20200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cs_w1253.h; - refType = 4; - }; - F616C4D30200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cs_w1254.h; - refType = 4; - }; - F616C4D40200B0CF01EF0ADE = { - isa = PBXFileReference; - path = csjis2_p.h; - refType = 4; - }; - F616C4D50200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cv_big5.c; - refType = 4; - }; - F616C4D60200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cv_gb2312.c; - refType = 4; - }; - F616C4D70200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cv_jis.c; - refType = 4; - }; - F616C4D80200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cv_ksc.c; - refType = 4; - }; - F616C4D90200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cv_narrow.c; - refType = 4; - }; - F616C4DA0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cyrr.h; - refType = 4; - }; - F616C4DB0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = czech.h; - refType = 4; - }; - F616C4DC0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = db437de0.h; - refType = 4; - }; - F616C4DD0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = db437es1.h; - refType = 4; - }; - F616C4DE0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = db437fi0.h; - refType = 4; - }; - F616C4DF0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = db437fr0.h; - refType = 4; - }; - F616C4E00200B0CF01EF0ADE = { - isa = PBXFileReference; - path = db437it0.h; - refType = 4; - }; - F616C4E10200B0CF01EF0ADE = { - isa = PBXFileReference; - path = db437nl0.h; - refType = 4; - }; - F616C4E20200B0CF01EF0ADE = { - isa = PBXFileReference; - path = db437sv0.h; - refType = 4; - }; - F616C4E30200B0CF01EF0ADE = { - isa = PBXFileReference; - path = db437uk0.h; - refType = 4; - }; - F616C4E40200B0CF01EF0ADE = { - isa = PBXFileReference; - path = db437us0.h; - refType = 4; - }; - F616C4E50200B0CF01EF0ADE = { - isa = PBXFileReference; - path = db850cf0.h; - refType = 4; - }; - F616C4E60200B0CF01EF0ADE = { - isa = PBXFileReference; - path = db850de0.h; - refType = 4; - }; - F616C4E70200B0CF01EF0ADE = { - isa = PBXFileReference; - path = db850es0.h; - refType = 4; - }; - F616C4E80200B0CF01EF0ADE = { - isa = PBXFileReference; - path = db850fr0.h; - refType = 4; - }; - F616C4E90200B0CF01EF0ADE = { - isa = PBXFileReference; - path = db850it1.h; - refType = 4; - }; - F616C4EA0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = db850nl0.h; - refType = 4; - }; - F616C4EB0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = db850pt0.h; - refType = 4; - }; - F616C4EC0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = db850sv1.h; - refType = 4; - }; - F616C4ED0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = db850uk0.h; - refType = 4; - }; - F616C4EE0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = db850us0.h; - refType = 4; - }; - F616C4EF0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = db852cz0.h; - refType = 4; - }; - F616C4F00200B0CF01EF0ADE = { - isa = PBXFileReference; - path = db852hdc.h; - refType = 4; - }; - F616C4F10200B0CF01EF0ADE = { - isa = PBXFileReference; - path = db852po0.h; - refType = 4; - }; - F616C4F20200B0CF01EF0ADE = { - isa = PBXFileReference; - path = db852sl0.h; - refType = 4; - }; - F616C4F30200B0CF01EF0ADE = { - isa = PBXFileReference; - path = db857tr0.h; - refType = 4; - }; - F616C4F40200B0CF01EF0ADE = { - isa = PBXFileReference; - path = db860pt0.h; - refType = 4; - }; - F616C4F50200B0CF01EF0ADE = { - isa = PBXFileReference; - path = db863cf1.h; - refType = 4; - }; - F616C4F60200B0CF01EF0ADE = { - isa = PBXFileReference; - path = db865da0.h; - refType = 4; - }; - F616C4F70200B0CF01EF0ADE = { - isa = PBXFileReference; - path = db865no0.h; - refType = 4; - }; - F616C4F80200B0CF01EF0ADE = { - isa = PBXFileReference; - path = db866ru0.h; - refType = 4; - }; - F616C4F90200B0CF01EF0ADE = { - isa = PBXFileReference; - path = depends.mak; - refType = 4; - }; - F616C4FA0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dtest.c; - refType = 4; - }; - F616C4FB0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dtest2.c; - refType = 4; - }; - F616C4FC0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = hun852dc.h; - refType = 4; - }; - F616C4FD0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = iceland.h; - refType = 4; - }; - F616C4FE0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = intl.def; - refType = 4; - }; - F616C4FF0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = intl.h; - refType = 4; - }; - F616C5000200B0CF01EF0ADE = { - isa = PBXFileReference; - path = langdrv.h; - refType = 4; - }; - F616C5010200B0CF01EF0ADE = { - isa = PBXFileReference; - path = lc_ascii.c; - refType = 4; - }; - F616C5020200B0CF01EF0ADE = { - isa = PBXFileReference; - path = lc_big5.c; - refType = 4; - }; - F616C5030200B0CF01EF0ADE = { - isa = PBXFileReference; - path = lc_dos.c; - refType = 4; - }; - F616C5040200B0CF01EF0ADE = { - isa = PBXFileReference; - path = lc_gb2312.c; - refType = 4; - }; - F616C5050200B0CF01EF0ADE = { - isa = PBXFileReference; - path = lc_jis.c; - refType = 4; - }; - F616C5060200B0CF01EF0ADE = { - isa = PBXFileReference; - path = lc_ksc.c; - refType = 4; - }; - F616C5070200B0CF01EF0ADE = { - isa = PBXFileReference; - path = lc_latin1.c; - refType = 4; - }; - F616C5080200B0CF01EF0ADE = { - isa = PBXFileReference; - path = lc_narrow.c; - refType = 4; - }; - F616C5090200B0CF01EF0ADE = { - isa = PBXFileReference; - path = lc_unicode.c; - refType = 4; - }; - F616C50A0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ld.c; - refType = 4; - }; - F616C50B0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ld.h; - refType = 4; - }; - F616C50C0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ld2.c; - refType = 4; - }; - F616C50D0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ld_proto.h; - refType = 4; - }; - F616C50E0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ldcommon.h; - refType = 4; - }; - F616C50F0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = mac_437.h; - refType = 4; - }; - F616C5100200B0CF01EF0ADE = { - isa = PBXFileReference; - path = mac_865.h; - refType = 4; - }; - F616C5110200B0CF01EF0ADE = { - isa = PBXFileReference; - path = mac_lat1.h; - refType = 4; - }; - F616C5120200B0CF01EF0ADE = { - isa = PBXFileReference; - path = make.maps; - refType = 4; - }; - F616C5150200B0CF01EF0ADE = { - isa = PBXFileReference; - path = mapcompare.cpp; - refType = 4; - }; - F616C5160200B0CF01EF0ADE = { - isa = PBXFileReference; - path = mapdump.c; - refType = 4; - }; - F616C5170200B0CF01EF0ADE = { - isa = PBXFileReference; - path = mapgen4.c; - refType = 4; - }; - F616C5180200B0CF01EF0ADE = { - isa = PBXFileReference; - path = maptest.cpp; - refType = 4; - }; - F616C5190200B0CF01EF0ADE = { - isa = PBXFileReference; - path = maptest2.c; - refType = 4; - }; - F616C51A0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = nordan40.h; - refType = 4; - }; - F616C51B0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = polish.h; - refType = 4; - }; - F616C51C0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = slovene.h; - refType = 4; - }; - F616C51D0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = swedfin.h; - refType = 4; - }; - F616C51E0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = turk.h; - refType = 4; - }; - F616C51F0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = tx437_865.h; - refType = 4; - }; - F616C5200200B0CF01EF0ADE = { - isa = PBXFileReference; - path = tx437_lat1.h; - refType = 4; - }; - F616C5210200B0CF01EF0ADE = { - isa = PBXFileReference; - path = tx865_lat1.h; - refType = 4; - }; - F616C5220200B0CF01EF0ADE = { - isa = PBXFileReference; - path = undef.h; - refType = 4; - }; - F616C53A0200B0CF01EF0ADE = { - children = ( - F616C53C0200B0CF01EF0ADE, - F616C53D0200B0CF01EF0ADE, - F616C53E0200B0CF01EF0ADE, - F616C53F0200B0CF01EF0ADE, - F616C5400200B0CF01EF0ADE, - F616C5410200B0CF01EF0ADE, - F616C5420200B0CF01EF0ADE, - F616C5430200B0CF01EF0ADE, - F616C5440200B0CF01EF0ADE, - F616C5450200B0CF01EF0ADE, - F616C5460200B0CF01EF0ADE, - F616C5480200B0CF01EF0ADE, - F616C5490200B0CF01EF0ADE, - ); - isa = PBXGroup; - path = isql; - refType = 4; - }; - F616C53C0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = extra_proto.h; - refType = 4; - }; - F616C53D0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = extract.epp; - refType = 4; - }; - F616C53E0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = isql.def; - refType = 4; - }; - F616C53F0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = isql.epp; - refType = 4; - }; - F616C5400200B0CF01EF0ADE = { - isa = PBXFileReference; - path = isql.h; - refType = 4; - }; - F616C5410200B0CF01EF0ADE = { - isa = PBXFileReference; - path = isql.rc; - refType = 4; - }; - F616C5420200B0CF01EF0ADE = { - isa = PBXFileReference; - path = isql_proto.h; - refType = 4; - }; - F616C5430200B0CF01EF0ADE = { - isa = PBXFileReference; - path = isql_res.h; - refType = 4; - }; - F616C5440200B0CF01EF0ADE = { - isa = PBXFileReference; - path = isql_win.cpp; - refType = 4; - }; - F616C5450200B0CF01EF0ADE = { - isa = PBXFileReference; - path = isql_win.h; - refType = 4; - }; - F616C5460200B0CF01EF0ADE = { - isa = PBXFileReference; - path = isqlw_proto.h; - refType = 4; - }; - F616C5480200B0CF01EF0ADE = { - isa = PBXFileReference; - path = show.epp; - refType = 4; - }; - F616C5490200B0CF01EF0ADE = { - isa = PBXFileReference; - path = show_proto.h; - refType = 4; - }; - F616C55E0200B0CF01EF0ADE = { - children = ( - F616C55F0200B0CF01EF0ADE, - F616C5600200B0CF01EF0ADE, - F616C5610200B0CF01EF0ADE, - F616C5620200B0CF01EF0ADE, - F616C5630200B0CF01EF0ADE, - F616C5640200B0CF01EF0ADE, - F616C5650200B0CF01EF0ADE, - F616C5660200B0CF01EF0ADE, - F616C5670200B0CF01EF0ADE, - F616C5680200B0CF01EF0ADE, - F616C5690200B0CF01EF0ADE, - F616C56A0200B0CF01EF0ADE, - F616C56B0200B0CF01EF0ADE, - F616C56C0200B0CF01EF0ADE, - F616C56D0200B0CF01EF0ADE, - F616C56E0200B0CF01EF0ADE, - F616C56F0200B0CF01EF0ADE, - F616C5700200B0CF01EF0ADE, - F616C5710200B0CF01EF0ADE, - F616C5750200B0CF01EF0ADE, - F616C5760200B0CF01EF0ADE, - F616C5770200B0CF01EF0ADE, - F616C5780200B0CF01EF0ADE, - F616C5790200B0CF01EF0ADE, - F616C57A0200B0CF01EF0ADE, - F616C57B0200B0CF01EF0ADE, - F616C57C0200B0CF01EF0ADE, - F616C57D0200B0CF01EF0ADE, - F616C57E0200B0CF01EF0ADE, - F616C57F0200B0CF01EF0ADE, - F616C5800200B0CF01EF0ADE, - F616C5810200B0CF01EF0ADE, - F616C5820200B0CF01EF0ADE, - F616C5830200B0CF01EF0ADE, - F616C5840200B0CF01EF0ADE, - F616C5850200B0CF01EF0ADE, - F616C5860200B0CF01EF0ADE, - F616C58F0200B0CF01EF0ADE, - F616C5900200B0CF01EF0ADE, - F616C5910200B0CF01EF0ADE, - F616C5920200B0CF01EF0ADE, - F616C5930200B0CF01EF0ADE, - F616C5940200B0CF01EF0ADE, - F616C5950200B0CF01EF0ADE, - F616C5960200B0CF01EF0ADE, - F616C5970200B0CF01EF0ADE, - F616C5980200B0CF01EF0ADE, - F616C5990200B0CF01EF0ADE, - F616C59A0200B0CF01EF0ADE, - F616C59B0200B0CF01EF0ADE, - F616C59C0200B0CF01EF0ADE, - F616C59D0200B0CF01EF0ADE, - F616C59E0200B0CF01EF0ADE, - F616C59F0200B0CF01EF0ADE, - F616C5A00200B0CF01EF0ADE, - F6A0478F02AD56AF01EF0ACB, - F616C5A10200B0CF01EF0ADE, - F616C5A20200B0CF01EF0ADE, - F616C5A30200B0CF01EF0ADE, - F616C5A40200B0CF01EF0ADE, - F616C5A50200B0CF01EF0ADE, - F616C5A60200B0CF01EF0ADE, - F616C5A70200B0CF01EF0ADE, - F616C5A80200B0CF01EF0ADE, - F616C5A90200B0CF01EF0ADE, - F616C5AA0200B0CF01EF0ADE, - F616C5AB0200B0CF01EF0ADE, - F616C5AC0200B0CF01EF0ADE, - F616C5AD0200B0CF01EF0ADE, - F616C5AE0200B0CF01EF0ADE, - F616C5AF0200B0CF01EF0ADE, - F616C5B00200B0CF01EF0ADE, - F616C5B10200B0CF01EF0ADE, - F616C5B20200B0CF01EF0ADE, - F616C5B30200B0CF01EF0ADE, - F616C5B40200B0CF01EF0ADE, - F616C5B50200B0CF01EF0ADE, - F616C5B60200B0CF01EF0ADE, - F616C5B70200B0CF01EF0ADE, - F616C5B80200B0CF01EF0ADE, - F616C5B90200B0CF01EF0ADE, - F616C5BA0200B0CF01EF0ADE, - F616C5BB0200B0CF01EF0ADE, - F616C5BC0200B0CF01EF0ADE, - F616C5BD0200B0CF01EF0ADE, - F616C5BE0200B0CF01EF0ADE, - F616C5BF0200B0CF01EF0ADE, - F616C5C00200B0CF01EF0ADE, - F616C5C10200B0CF01EF0ADE, - F616C5C20200B0CF01EF0ADE, - F616C5C30200B0CF01EF0ADE, - F616C5C40200B0CF01EF0ADE, - F616C5C50200B0CF01EF0ADE, - F616C5C60200B0CF01EF0ADE, - F616C5C70200B0CF01EF0ADE, - F616C5C80200B0CF01EF0ADE, - F616C5C90200B0CF01EF0ADE, - F616C5CA0200B0CF01EF0ADE, - F616C5CB0200B0CF01EF0ADE, - F616C5CC0200B0CF01EF0ADE, - F616C5CD0200B0CF01EF0ADE, - F616C5CE0200B0CF01EF0ADE, - F616C5CF0200B0CF01EF0ADE, - F616C5D00200B0CF01EF0ADE, - F616C5D10200B0CF01EF0ADE, - F616C5D20200B0CF01EF0ADE, - F616C5D30200B0CF01EF0ADE, - F616C5D40200B0CF01EF0ADE, - F616C5D50200B0CF01EF0ADE, - F616C5D60200B0CF01EF0ADE, - F616C5D70200B0CF01EF0ADE, - F616C5D80200B0CF01EF0ADE, - F616C5D90200B0CF01EF0ADE, - F616C5DA0200B0CF01EF0ADE, - F616C5DB0200B0CF01EF0ADE, - F616C5DC0200B0CF01EF0ADE, - F616C5DD0200B0CF01EF0ADE, - F616C5DE0200B0CF01EF0ADE, - F616C5DF0200B0CF01EF0ADE, - F616C5E00200B0CF01EF0ADE, - F616C5E10200B0CF01EF0ADE, - F616C5E20200B0CF01EF0ADE, - F616C5E30200B0CF01EF0ADE, - F616C5E40200B0CF01EF0ADE, - F616C5E50200B0CF01EF0ADE, - F616C5E60200B0CF01EF0ADE, - F616C5E70200B0CF01EF0ADE, - F616C5E80200B0CF01EF0ADE, - F616C5E90200B0CF01EF0ADE, - F616C5EA0200B0CF01EF0ADE, - F616C5EB0200B0CF01EF0ADE, - F616C5EC0200B0CF01EF0ADE, - F616C5ED0200B0CF01EF0ADE, - F616C5EE0200B0CF01EF0ADE, - F616C5EF0200B0CF01EF0ADE, - F616C5F00200B0CF01EF0ADE, - F616C5F10200B0CF01EF0ADE, - F616C5F20200B0CF01EF0ADE, - F616C5F30200B0CF01EF0ADE, - F616C5F40200B0CF01EF0ADE, - F616C5F50200B0CF01EF0ADE, - F616C5F60200B0CF01EF0ADE, - F616C5F70200B0CF01EF0ADE, - F616C5F80200B0CF01EF0ADE, - F616C5F90200B0CF01EF0ADE, - F616C5FA0200B0CF01EF0ADE, - F616C5FB0200B0CF01EF0ADE, - F616C5FC0200B0CF01EF0ADE, - F616C5FD0200B0CF01EF0ADE, - F616C5FE0200B0CF01EF0ADE, - F616C5FF0200B0CF01EF0ADE, - F616C6000200B0CF01EF0ADE, - F616C6010200B0CF01EF0ADE, - F616C6020200B0CF01EF0ADE, - F616C6030200B0CF01EF0ADE, - F616C6040200B0CF01EF0ADE, - F616C6050200B0CF01EF0ADE, - F616C6060200B0CF01EF0ADE, - F616C6070200B0CF01EF0ADE, - F616C6080200B0CF01EF0ADE, - F616C6090200B0CF01EF0ADE, - F616C60A0200B0CF01EF0ADE, - F616C60B0200B0CF01EF0ADE, - F616C60C0200B0CF01EF0ADE, - F616C60D0200B0CF01EF0ADE, - F616C60E0200B0CF01EF0ADE, - F616C60F0200B0CF01EF0ADE, - F6D5B461025D6CDB01EF0AD1, - F616C6100200B0CF01EF0ADE, - F6D5B463025D6F2D01EF0AD1, - F616C6110200B0CF01EF0ADE, - F616C6120200B0CF01EF0ADE, - F616C6130200B0CF01EF0ADE, - F616C6140200B0CF01EF0ADE, - F616C6150200B0CF01EF0ADE, - F616C6160200B0CF01EF0ADE, - F616C6170200B0CF01EF0ADE, - F616C6180200B0CF01EF0ADE, - F616C6190200B0CF01EF0ADE, - F616C61A0200B0CF01EF0ADE, - F616C61B0200B0CF01EF0ADE, - F616C61C0200B0CF01EF0ADE, - F616C61D0200B0CF01EF0ADE, - F616C61E0200B0CF01EF0ADE, - F616C61F0200B0CF01EF0ADE, - F616C6200200B0CF01EF0ADE, - F616C6210200B0CF01EF0ADE, - F616C6220200B0CF01EF0ADE, - F616C6230200B0CF01EF0ADE, - F616C6240200B0CF01EF0ADE, - F616C6250200B0CF01EF0ADE, - F616C6260200B0CF01EF0ADE, - F616C6270200B0CF01EF0ADE, - F616C6290200B0CF01EF0ADE, - F616C62A0200B0CF01EF0ADE, - F616C62B0200B0CF01EF0ADE, - F616C62C0200B0CF01EF0ADE, - F616C62D0200B0CF01EF0ADE, - F616C62E0200B0CF01EF0ADE, - F616C62F0200B0CF01EF0ADE, - F616C6300200B0CF01EF0ADE, - F616C6310200B0CF01EF0ADE, - F616C6320200B0CF01EF0ADE, - F616C6330200B0CF01EF0ADE, - F616C6370200B0CF01EF0ADE, - F616C6380200B0CF01EF0ADE, - F616C6390200B0CF01EF0ADE, - F616C63A0200B0CF01EF0ADE, - F616C63B0200B0CF01EF0ADE, - F616C63C0200B0CF01EF0ADE, - F616C63D0200B0CF01EF0ADE, - F616C63E0200B0CF01EF0ADE, - F616C63F0200B0CF01EF0ADE, - F616C6400200B0CF01EF0ADE, - F616C6410200B0CF01EF0ADE, - F616C6420200B0CF01EF0ADE, - F616C6430200B0CF01EF0ADE, - F616C6440200B0CF01EF0ADE, - F616C6450200B0CF01EF0ADE, - F616C6460200B0CF01EF0ADE, - F616C6490200B0CF01EF0ADE, - F616C64A0200B0CF01EF0ADE, - F616C64B0200B0CF01EF0ADE, - F616C64C0200B0CF01EF0ADE, - F616C64D0200B0CF01EF0ADE, - F616C64E0200B0CF01EF0ADE, - F616C64F0200B0CF01EF0ADE, - F616C6500200B0CF01EF0ADE, - F616C6510200B0CF01EF0ADE, - F616C6520200B0CF01EF0ADE, - F616C6530200B0CF01EF0ADE, - F616C6540200B0CF01EF0ADE, - F616C6550200B0CF01EF0ADE, - F616C6560200B0CF01EF0ADE, - F616C6570200B0CF01EF0ADE, - F616C6580200B0CF01EF0ADE, - F616C6590200B0CF01EF0ADE, - F616C65A0200B0CF01EF0ADE, - F616C65B0200B0CF01EF0ADE, - F616C65C0200B0CF01EF0ADE, - F616C65D0200B0CF01EF0ADE, - F616C65E0200B0CF01EF0ADE, - F616C65F0200B0CF01EF0ADE, - F616C6600200B0CF01EF0ADE, - F616C6610200B0CF01EF0ADE, - F616C6620200B0CF01EF0ADE, - F616C6630200B0CF01EF0ADE, - F616C6640200B0CF01EF0ADE, - F616C6650200B0CF01EF0ADE, - F616C6660200B0CF01EF0ADE, - F616C6670200B0CF01EF0ADE, - F616C6680200B0CF01EF0ADE, - F616C6690200B0CF01EF0ADE, - F616C66A0200B0CF01EF0ADE, - F616C66B0200B0CF01EF0ADE, - F616C66C0200B0CF01EF0ADE, - F616C66D0200B0CF01EF0ADE, - F616C66E0200B0CF01EF0ADE, - F616C66F0200B0CF01EF0ADE, - F616C6700200B0CF01EF0ADE, - F616C6710200B0CF01EF0ADE, - F616C6780200B0CF01EF0ADE, - F616C6790200B0CF01EF0ADE, - F616C67A0200B0CF01EF0ADE, - F616C67B0200B0CF01EF0ADE, - F616C67C0200B0CF01EF0ADE, - F616C67D0200B0D001EF0ADE, - F616C67E0200B0D001EF0ADE, - F616C67F0200B0D001EF0ADE, - F616C6800200B0D001EF0ADE, - F616C6810200B0D001EF0ADE, - F616C6820200B0D001EF0ADE, - F616C6830200B0D001EF0ADE, - F616C6840200B0D001EF0ADE, - F616C6850200B0D001EF0ADE, - F616C6860200B0D001EF0ADE, - F616C6870200B0D001EF0ADE, - F616C6880200B0D001EF0ADE, - F616C6890200B0D001EF0ADE, - F616C68A0200B0D001EF0ADE, - F616C68B0200B0D001EF0ADE, - F616C68C0200B0D001EF0ADE, - F616C68D0200B0D001EF0ADE, - F616C68E0200B0D001EF0ADE, - F616C68F0200B0D001EF0ADE, - F616C6900200B0D001EF0ADE, - F616C6910200B0D001EF0ADE, - F616C6920200B0D001EF0ADE, - F616C6930200B0D001EF0ADE, - F616C6940200B0D001EF0ADE, - F616C6950200B0D001EF0ADE, - F616C6960200B0D001EF0ADE, - F616C6970200B0D001EF0ADE, - F616C6980200B0D001EF0ADE, - F616C6990200B0D001EF0ADE, - F616C69A0200B0D001EF0ADE, - F616C69B0200B0D001EF0ADE, - F616C69C0200B0D001EF0ADE, - F616C69D0200B0D001EF0ADE, - F616C69E0200B0D001EF0ADE, - F616C69F0200B0D001EF0ADE, - F616C6A00200B0D001EF0ADE, - F616C6A10200B0D001EF0ADE, - F616C6A20200B0D001EF0ADE, - F616C6A30200B0D001EF0ADE, - F616C6A40200B0D001EF0ADE, - F616C6A50200B0D001EF0ADE, - F616C6A60200B0D001EF0ADE, - F616C6A70200B0D001EF0ADE, - F616C6A80200B0D001EF0ADE, - F616C6A90200B0D001EF0ADE, - F616C6AA0200B0D001EF0ADE, - F616C6AB0200B0D001EF0ADE, - F616C6AC0200B0D001EF0ADE, - F616C6AD0200B0D001EF0ADE, - F616C6AE0200B0D001EF0ADE, - F616C6AF0200B0D001EF0ADE, - F616C6B00200B0D001EF0ADE, - F616C6B10200B0D001EF0ADE, - F616C6B20200B0D001EF0ADE, - F616C6B30200B0D001EF0ADE, - F616C6B40200B0D001EF0ADE, - F616C6B50200B0D001EF0ADE, - F616C6B60200B0D001EF0ADE, - F616C6B70200B0D001EF0ADE, - F616C6B80200B0D001EF0ADE, - F616C6B90200B0D001EF0ADE, - F616C6BA0200B0D001EF0ADE, - F616C6BB0200B0D001EF0ADE, - F616C6BC0200B0D001EF0ADE, - F616C6BD0200B0D001EF0ADE, - F616C6BE0200B0D001EF0ADE, - F616C6BF0200B0D001EF0ADE, - F6A0479102AD571001EF0ACB, - F6A0479202AD571001EF0ACB, - F616C6C00200B0D001EF0ADE, - F616C6C10200B0D001EF0ADE, - F616C6C20200B0D001EF0ADE, - F616C6C30200B0D001EF0ADE, - F616C6C40200B0D001EF0ADE, - F616C6C50200B0D001EF0ADE, - F616C6C60200B0D001EF0ADE, - F616C6C70200B0D001EF0ADE, - F616C6C80200B0D001EF0ADE, - F616C6C90200B0D001EF0ADE, - F616C6CA0200B0D001EF0ADE, - F616C6CB0200B0D001EF0ADE, - F616C6CC0200B0D001EF0ADE, - F616C6CD0200B0D001EF0ADE, - F616C6CE0200B0D001EF0ADE, - F616C6CF0200B0D001EF0ADE, - F616C6D00200B0D001EF0ADE, - F616C6D10200B0D001EF0ADE, - F616C6D20200B0D001EF0ADE, - F616C6D30200B0D001EF0ADE, - F616C6D40200B0D001EF0ADE, - F616C6D50200B0D001EF0ADE, - F616C6D60200B0D001EF0ADE, - F616C6D70200B0D001EF0ADE, - F616C6D80200B0D001EF0ADE, - F616C6D90200B0D001EF0ADE, - F616C6DA0200B0D001EF0ADE, - F616C6DB0200B0D001EF0ADE, - F616C6DC0200B0D001EF0ADE, - F616C6DD0200B0D001EF0ADE, - F616C6DE0200B0D001EF0ADE, - F616C6DF0200B0D001EF0ADE, - F616C6E00200B0D001EF0ADE, - F616C6E10200B0D001EF0ADE, - F616C6E20200B0D001EF0ADE, - F616C6E30200B0D001EF0ADE, - F616C6E40200B0D001EF0ADE, - F616C6E50200B0D001EF0ADE, - F616C6E60200B0D001EF0ADE, - F616C6E70200B0D001EF0ADE, - F616C6E80200B0D001EF0ADE, - F616C6E90200B0D001EF0ADE, - F616C6EA0200B0D001EF0ADE, - F616C6EB0200B0D001EF0ADE, - F616C6EC0200B0D001EF0ADE, - F616C6ED0200B0D001EF0ADE, - F616C6EE0200B0D001EF0ADE, - F6A0479502AEDE0F01EF0ACB, - F6A0479602AEDE0F01EF0ACB, - F616C6EF0200B0D001EF0ADE, - F616C6F00200B0D001EF0ADE, - F616C6F10200B0D001EF0ADE, - F616C6F20200B0D001EF0ADE, - F616C6F30200B0D001EF0ADE, - F616C6F40200B0D001EF0ADE, - F616C6F50200B0D001EF0ADE, - F616C6F60200B0D001EF0ADE, - F616C6F70200B0D001EF0ADE, - F616C6F80200B0D001EF0ADE, - F616C6F90200B0D001EF0ADE, - F616C6FA0200B0D001EF0ADE, - F616C6FB0200B0D001EF0ADE, - ); - isa = PBXGroup; - path = jrd; - refType = 4; - }; - F616C55F0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = acl.h; - refType = 4; - }; - F616C5600200B0CF01EF0ADE = { - isa = PBXFileReference; - path = aif.cpp; - refType = 4; - }; - F616C5610200B0CF01EF0ADE = { - isa = PBXFileReference; - path = aif.h; - refType = 4; - }; - F616C5620200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ail.cpp; - refType = 4; - }; - F616C5630200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ail.h; - refType = 4; - }; - F616C5640200B0CF01EF0ADE = { - isa = PBXFileReference; - path = align.cpp; - refType = 4; - }; - F616C5650200B0CF01EF0ADE = { - isa = PBXFileReference; - path = align.h; - refType = 4; - }; - F616C5660200B0CF01EF0ADE = { - isa = PBXFileReference; - path = all.cpp; - refType = 4; - }; - F616C5670200B0CF01EF0ADE = { - isa = PBXFileReference; - path = all.h; - refType = 4; - }; - F616C5680200B0CF01EF0ADE = { - isa = PBXFileReference; - path = all_old.cpp; - refType = 4; - }; - F616C5690200B0CF01EF0ADE = { - isa = PBXFileReference; - path = all_old.h; - refType = 4; - }; - F616C56A0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = all_proto.h; - refType = 4; - }; - F616C56B0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = alt.cpp; - refType = 4; - }; - F616C56C0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = alt_use_sec.h; - refType = 4; - }; - F616C56D0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = alt_use_sec.h.pre; - refType = 4; - }; - F616C56E0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ansi.h; - refType = 4; - }; - F616C56F0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = log2.h; - refType = 4; - }; - F616C5710200B0CF01EF0ADE = { - children = ( - F616C5720200B0CF01EF0ADE, - F616C5730200B0CF01EF0ADE, - F616C5740200B0CF01EF0ADE, - ); - isa = PBXGroup; - path = auth; - refType = 4; - }; - F616C5720200B0CF01EF0ADE = { - isa = PBXFileReference; - path = local_user_unix.cpp; - refType = 4; - }; - F616C5730200B0CF01EF0ADE = { - isa = PBXFileReference; - path = reject_all.cpp; - refType = 4; - }; - F616C5740200B0CF01EF0ADE = { - isa = PBXFileReference; - path = security_db.cpp; - refType = 4; - }; - F616C5750200B0CF01EF0ADE = { - isa = PBXFileReference; - path = authenticate.cpp; - refType = 4; - }; - F616C5760200B0CF01EF0ADE = { - isa = PBXFileReference; - path = authenticate.h; - refType = 4; - }; - F616C5770200B0CF01EF0ADE = { - isa = PBXFileReference; - path = authenticator.h; - refType = 4; - }; - F616C5780200B0CF01EF0ADE = { - isa = PBXFileReference; - path = blb.cpp; - refType = 4; - }; - F616C5790200B0CF01EF0ADE = { - isa = PBXFileReference; - path = blb.h; - refType = 4; - }; - F616C57A0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = blb_proto.h; - refType = 4; - }; - F616C57B0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = blf_proto.h; - refType = 4; - }; - F616C57C0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = blk.h; - refType = 4; - }; - F616C57E0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = blob_filter.h; - refType = 4; - }; - F616C57F0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = block_cache.h; - refType = 4; - }; - F616C5800200B0CF01EF0ADE = { - isa = PBXFileReference; - path = blp.h; - refType = 4; - }; - F616C5810200B0CF01EF0ADE = { - isa = PBXFileReference; - path = blr.h; - refType = 4; - }; - F616C5860200B0CF01EF0ADE = { - children = ( - F616C5870200B0CF01EF0ADE, - F616C5880200B0CF01EF0ADE, - F616C5890200B0CF01EF0ADE, - F616C58A0200B0CF01EF0ADE, - F616C58B0200B0CF01EF0ADE, - F616C58C0200B0CF01EF0ADE, - F616C58D0200B0CF01EF0ADE, - F616C58E0200B0CF01EF0ADE, - ); - isa = PBXGroup; - path = boot_codes; - refType = 4; - }; - F616C5880200B0CF01EF0ADE = { - isa = PBXFileReference; - path = codetext.h; - refType = 4; - }; - F616C5890200B0CF01EF0ADE = { - isa = PBXFileReference; - path = files.txt; - refType = 4; - }; - F616C58A0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = iberror.h; - refType = 4; - }; - F616C58B0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = msg_facs.h; - refType = 4; - }; - F616C58C0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = msgs.h; - refType = 4; - }; - F616C58D0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = rdb_codes.h; - refType = 4; - }; - F616C58E0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = sql_code.h; - refType = 4; - }; - F616C58F0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = btr.cpp; - refType = 4; - }; - F616C5900200B0CF01EF0ADE = { - isa = PBXFileReference; - path = btr.h; - refType = 4; - }; - F616C5910200B0CF01EF0ADE = { - isa = PBXFileReference; - path = btr_proto.h; - refType = 4; - }; - F616C5920200B0CF01EF0ADE = { - isa = PBXFileReference; - path = build_no.h; - refType = 4; - }; - F616C5930200B0CF01EF0ADE = { - isa = PBXFileReference; - path = builtin.cpp; - refType = 4; - }; - F616C5940200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cch.cpp; - refType = 4; - }; - F616C5950200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cch.h; - refType = 4; - }; - F616C5960200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cch_proto.h; - refType = 4; - }; - F616C5970200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cdefs.h; - refType = 4; - }; - F616C5980200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cmp.cpp; - refType = 4; - }; - F616C5990200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cmp_proto.h; - refType = 4; - }; - F616C59A0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = codes.epp; - refType = 4; - }; - F616C59B0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = common.h; - refType = 4; - }; - F616C59C0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = constants.h; - refType = 4; - }; - F616C59D0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cvt.cpp; - refType = 4; - }; - F616C59E0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cvt2.cpp; - refType = 4; - }; - F616C59F0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cvt2_proto.h; - refType = 4; - }; - F616C5A00200B0CF01EF0ADE = { - isa = PBXFileReference; - path = cvt_proto.h; - refType = 4; - }; - F616C5A10200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dbg.cpp; - refType = 4; - }; - F616C5A20200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dbg.h; - refType = 4; - }; - F616C5A30200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dbg_proto.h; - refType = 4; - }; - F616C5A40200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dbt.cpp; - refType = 4; - }; - F616C5A50200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dfloat_stub.cpp; - refType = 4; - }; - F616C5A60200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dflt.gdl; - refType = 4; - }; - F616C5A70200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dflt.h; - refType = 4; - }; - F616C5A80200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dfw.epp; - refType = 4; - }; - F616C5A90200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dfw_proto.h; - refType = 4; - }; - F616C5AA0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = divorce.cpp; - refType = 4; - }; - F616C5AB0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = divorce.h; - refType = 4; - }; - F616C5AC0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dllshell.cpp; - refType = 4; - }; - F616C5AD0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dls.cpp; - refType = 4; - }; - F616C5AE0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dls_proto.h; - refType = 4; - }; - F616C5AF0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dmp.cpp; - refType = 4; - }; - F616C5B00200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dmp_proto.h; - refType = 4; - }; - F616C5B10200B0CF01EF0ADE = { - isa = PBXFileReference; - path = doserr.h; - refType = 4; - }; - F616C5B20200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dpm.epp; - refType = 4; - }; - F616C5B30200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dpm_proto.h; - refType = 4; - }; - F616C5B40200B0CF01EF0ADE = { - isa = PBXFileReference; - path = drq.h; - refType = 4; - }; - F616C5B50200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dsc.cpp; - refType = 4; - }; - F616C5B60200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dsc.h; - refType = 4; - }; - F616C5B60200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dsc_pub.h; - refType = 4; - }; - F616C5B70200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dsc_proto.h; - refType = 4; - }; - F616C5B80200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dyn.epp; - refType = 4; - }; - F616C5B90200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dyn.h; - refType = 4; - }; - F616C5BA0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dyn_def.epp; - refType = 4; - }; - F616C5BB0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dyn_def.sed; - refType = 4; - }; - F616C5BC0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dyn_del.epp; - refType = 4; - }; - F616C5BD0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dyn_df_proto.h; - refType = 4; - }; - F616C5BE0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dyn_dl_proto.h; - refType = 4; - }; - F616C5BF0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dyn_md_proto.h; - refType = 4; - }; - F616C5C00200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dyn_mod.epp; - refType = 4; - }; - F616C5C10200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dyn_proto.h; - refType = 4; - }; - F616C5C20200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dyn_ut_proto.h; - refType = 4; - }; - F616C5C30200B0CF01EF0ADE = { - isa = PBXFileReference; - path = dyn_util.epp; - refType = 4; - }; - F616C5C40200B0CF01EF0ADE = { - isa = PBXFileReference; - path = enc.cpp; - refType = 4; - }; - F616C5C50200B0CF01EF0ADE = { - isa = PBXFileReference; - path = enc_proto.h; - refType = 4; - }; - F616C5C60200B0CF01EF0ADE = { - isa = PBXFileReference; - path = entry.h; - refType = 4; - }; - F616C5C70200B0CF01EF0ADE = { - isa = PBXFileReference; - path = envelope.epp; - refType = 4; - }; - F616C5C80200B0CF01EF0ADE = { - isa = PBXFileReference; - path = err.cpp; - refType = 4; - }; - F616C5C90200B0CF01EF0ADE = { - isa = PBXFileReference; - path = err_proto.h; - refType = 4; - }; - F616C5CA0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = event.cpp; - refType = 4; - }; - F616C5CB0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = event.h; - refType = 4; - }; - F616C5CC0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = event_proto.h; - refType = 4; - }; - F616C5CD0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = everything.h; - refType = 4; - }; - F616C5CE0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = evl.cpp; - refType = 4; - }; - F616C5CF0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = evl_like.cpp; - refType = 4; - }; - F616C5D00200B0CF01EF0ADE = { - isa = PBXFileReference; - path = evl_proto.h; - refType = 4; - }; - F616C5D10200B0CF01EF0ADE = { - isa = PBXFileReference; - path = exe.cpp; - refType = 4; - }; - F616C5D20200B0CF01EF0ADE = { - isa = PBXFileReference; - path = exe.h; - refType = 4; - }; - F616C5D30200B0CF01EF0ADE = { - isa = PBXFileReference; - path = exe_proto.h; - refType = 4; - }; - F616C5D40200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ext.cpp; - refType = 4; - }; - F616C5D50200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ext.h; - refType = 4; - }; - F616C5D60200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ext_proto.h; - refType = 4; - }; - F616C5D70200B0CF01EF0ADE = { - isa = PBXFileReference; - path = extvms.cpp; - refType = 4; - }; - F616C5D80200B0CF01EF0ADE = { - isa = PBXFileReference; - path = fields.h; - refType = 4; - }; - F616C5D90200B0CF01EF0ADE = { - isa = PBXFileReference; - path = fil.h; - refType = 4; - }; - F616C5DA0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = file_params.h; - refType = 4; - }; - F616C5DB0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = filte_proto.h; - refType = 4; - }; - F616C5DC0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = filters.cpp; - refType = 4; - }; - F616C5DD0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = flags.h; - refType = 4; - }; - F616C5DE0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = flu.cpp; - refType = 4; - }; - F616C5DF0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = flu.h; - refType = 4; - }; - F616C5E00200B0CF01EF0ADE = { - isa = PBXFileReference; - path = flu_proto.h; - refType = 4; - }; - F616C5E10200B0CF01EF0ADE = { - isa = PBXFileReference; - path = fun.epp; - refType = 4; - }; - F616C5E20200B0CF01EF0ADE = { - isa = PBXFileReference; - path = fun_proto.h; - refType = 4; - }; - F616C5E40200B0CF01EF0ADE = { - isa = PBXFileReference; - path = gds.bas; - refType = 4; - }; - F616C5E50200B0CF01EF0ADE = { - isa = PBXFileReference; - path = gds.cpp; - refType = 4; - }; - F616C5E60200B0CF01EF0ADE = { - isa = PBXFileReference; - path = gds.def; - refType = 4; - }; - F616C5E90200B0CF01EF0ADE = { - isa = PBXFileReference; - path = gds.pas; - refType = 4; - }; - F616C5EA0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = gds.pli; - refType = 4; - }; - F616C5EB0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = gds.vpas; - refType = 4; - }; - F616C5EC0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = gds5entry.mar; - refType = 4; - }; - F616C5ED0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = gds_aix.f; - refType = 4; - }; - F616C5EE0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = gds_apollo.f; - refType = 4; - }; - F616C5EF0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = gds_h3.f; - refType = 4; - }; - F616C5F00200B0CF01EF0ADE = { - isa = PBXFileReference; - path = gds_hp.f; - refType = 4; - }; - F616C5F10200B0CF01EF0ADE = { - isa = PBXFileReference; - path = gds_proto.h; - refType = 4; - }; - F616C5F20200B0CF01EF0ADE = { - isa = PBXFileReference; - path = gds_sun.f; - refType = 4; - }; - F616C5F30200B0CF01EF0ADE = { - isa = PBXFileReference; - path = gds_vms.f; - refType = 4; - }; - F616C5F40200B0CF01EF0ADE = { - isa = PBXFileReference; - path = gdsassert.h; - refType = 4; - }; - F616C5F50200B0CF01EF0ADE = { - isa = PBXFileReference; - path = gdsentry.mar; - refType = 4; - }; - F616C5F70200B0CF01EF0ADE = { - isa = PBXFileReference; - path = grammar.cpp; - refType = 4; - }; - F616C5F80200B0CF01EF0ADE = { - isa = PBXFileReference; - path = grammar.y; - refType = 4; - }; - F616C5F90200B0CF01EF0ADE = { - isa = PBXFileReference; - path = grant.epp; - refType = 4; - }; - F616C5FA0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = grant.gdl; - refType = 4; - }; - F616C5FB0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = grant_proto.h; - refType = 4; - }; - F616C5FE0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ibase.h; - refType = 4; - }; - F616C5FF0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = iberr.cpp; - refType = 4; - }; - F616C6000200B0CF01EF0ADE = { - isa = PBXFileReference; - path = iberr.h; - refType = 4; - }; - F616C6010200B0CF01EF0ADE = { - isa = PBXFileReference; - path = iberr_proto.h; - refType = 4; - }; - F616C6020200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ibinitdll.cpp; - refType = 4; - }; - F616C6030200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ibsetjmp.h; - refType = 4; - }; - F616C6040200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ids.h; - refType = 4; - }; - F616C6060200B0CF01EF0ADE = { - isa = PBXFileReference; - path = idx.cpp; - refType = 4; - }; - F616C6070200B0CF01EF0ADE = { - isa = PBXFileReference; - path = idx.h; - refType = 4; - }; - F616C6080200B0CF01EF0ADE = { - isa = PBXFileReference; - path = idx_proto.h; - refType = 4; - }; - F616C6090200B0CF01EF0ADE = { - isa = PBXFileReference; - path = inf.cpp; - refType = 4; - }; - F616C60A0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = inf_pub.h; - refType = 4; - }; - F616C60B0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = inf_proto.h; - refType = 4; - }; - F616C60C0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ini.epp; - refType = 4; - }; - F616C60D0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ini.h; - refType = 4; - }; - F616C60E0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ini_proto.h; - refType = 4; - }; - F616C60F0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = intl.cpp; - refType = 4; - }; - F616C6100200B0CF01EF0ADE = { - isa = PBXFileReference; - path = intl.h; - refType = 4; - }; - F616C6110200B0CF01EF0ADE = { - isa = PBXFileReference; - path = intl_proto.h; - refType = 4; - }; - F616C6120200B0CF01EF0ADE = { - isa = PBXFileReference; - path = intlnames.h; - refType = 4; - }; - F616C6130200B0CF01EF0ADE = { - isa = PBXFileReference; - path = intlobj.h; - refType = 4; - }; - F616C6140200B0CF01EF0ADE = { - isa = PBXFileReference; - path = inuse.cpp; - refType = 4; - }; - F616C6150200B0CF01EF0ADE = { - isa = PBXFileReference; - path = inuse_proto.h; - refType = 4; - }; - F616C6160200B0CF01EF0ADE = { - isa = PBXFileReference; - path = irq.h; - refType = 4; - }; - F616C6170200B0CF01EF0ADE = { - isa = PBXFileReference; - path = isc.cpp; - refType = 4; - }; - F616C6180200B0CF01EF0ADE = { - isa = PBXFileReference; - path = isc.h; - refType = 4; - }; - F616C6190200B0CF01EF0ADE = { - isa = PBXFileReference; - path = isc_cray.cpp; - refType = 4; - }; - F616C61A0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = isc_f_proto.h; - refType = 4; - }; - F616C61B0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = isc_file.cpp; - refType = 4; - }; - F616C61C0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = isc_i_proto.h; - refType = 4; - }; - F616C61D0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = isc_ipc.cpp; - refType = 4; - }; - F616C61E0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = isc_proto.h; - refType = 4; - }; - F616C61F0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = isc_s_proto.h; - refType = 4; - }; - F616C6200200B0CF01EF0ADE = { - isa = PBXFileReference; - path = isc_signal.h; - refType = 4; - }; - F616C6210200B0CF01EF0ADE = { - isa = PBXFileReference; - path = isc_sync.cpp; - refType = 4; - }; - F616C6220200B0CF01EF0ADE = { - isa = PBXFileReference; - path = isc_sync_win32.cpp; - refType = 4; - }; - F616C6230200B0CF01EF0ADE = { - isa = PBXFileReference; - path = isc_win32.cpp; - refType = 4; - }; - F616C6240200B0CF01EF0ADE = { - isa = PBXFileReference; - path = iscmsgs.msg; - refType = 4; - }; - F616C6250200B0CF01EF0ADE = { - isa = PBXFileReference; - path = iutls.def; - refType = 4; - }; - F616C6260200B0CF01EF0ADE = { - isa = PBXFileReference; - path = jio.cpp; - refType = 4; - }; - F616C6270200B0CF01EF0ADE = { - isa = PBXFileReference; - path = jlx.c; - refType = 4; - }; - F616C6290200B0CF01EF0ADE = { - isa = PBXFileReference; - path = jrd.cpp; - refType = 4; - }; - F616C62A0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = jrd.def; - refType = 4; - }; - F616C62B0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = jrd.h; - refType = 4; - }; - F616C62C0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = jrd_blks.cpp; - refType = 4; - }; - F616C62D0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = jrd_blks.h; - refType = 4; - }; - F616C62E0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = jrd_proto.h; - refType = 4; - }; - F616C62F0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = jrd_ver.h; - refType = 4; - }; - F616C6300200B0CF01EF0ADE = { - isa = PBXFileReference; - path = jrd_ver.rc; - refType = 4; - }; - F616C6310200B0CF01EF0ADE = { - isa = PBXFileReference; - path = jrn.cpp; - refType = 4; - }; - F616C6320200B0CF01EF0ADE = { - isa = PBXFileReference; - path = jrn.h; - refType = 4; - }; - F616C6330200B0CF01EF0ADE = { - isa = PBXFileReference; - path = jrn_proto.h; - refType = 4; - }; - F616C6370200B0CF01EF0ADE = { - isa = PBXFileReference; - path = lan.cpp; - refType = 4; - }; - F616C6380200B0CF01EF0ADE = { - isa = PBXFileReference; - path = lck.cpp; - refType = 4; - }; - F616C6390200B0CF01EF0ADE = { - isa = PBXFileReference; - path = lck.h; - refType = 4; - }; - F616C63A0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = lck_dummy.cpp; - refType = 4; - }; - F616C63B0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = lck_proto.h; - refType = 4; - }; - F616C63C0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = license.h; - refType = 4; - }; - F616C6400200B0CF01EF0ADE = { - isa = PBXFileReference; - path = lls.h; - refType = 4; - }; - F616C6410200B0CF01EF0ADE = { - isa = PBXFileReference; - path = lnmdef.h; - refType = 4; - }; - F616C6420200B0CF01EF0ADE = { - isa = PBXFileReference; - path = log.cpp; - refType = 4; - }; - F616C6430200B0CF01EF0ADE = { - isa = PBXFileReference; - path = log.h; - refType = 4; - }; - F616C6440200B0CF01EF0ADE = { - isa = PBXFileReference; - path = log_proto.h; - refType = 4; - }; - F616C6450200B0CF01EF0ADE = { - isa = PBXFileReference; - path = loiter.cpp; - refType = 4; - }; - F616C6460200B0CF01EF0ADE = { - isa = PBXFileReference; - path = loiter.h; - refType = 4; - }; - F616C6490200B0CF01EF0ADE = { - isa = PBXFileReference; - path = map.cpp; - refType = 4; - }; - F616C64A0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = map_proto.h; - refType = 4; - }; - F616C64B0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = math.cpp; - refType = 4; - }; - F616C64C0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = math.h; - refType = 4; - }; - F616C64D0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = mblr.cpp; - refType = 4; - }; - F616C64E0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = mblr.h; - refType = 4; - }; - F616C64F0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = mblr_proto.h; - refType = 4; - }; - F616C6510200B0CF01EF0ADE = { - isa = PBXFileReference; - path = memtest.cpp; - refType = 4; - }; - F616C6520200B0CF01EF0ADE = { - isa = PBXFileReference; - path = met.epp; - refType = 4; - }; - F616C6530200B0CF01EF0ADE = { - isa = PBXFileReference; - path = met.h; - refType = 4; - }; - F616C6540200B0CF01EF0ADE = { - isa = PBXFileReference; - path = met_proto.h; - refType = 4; - }; - F616C6550200B0CF01EF0ADE = { - isa = PBXFileReference; - path = misc.cpp; - refType = 4; - }; - F616C6560200B0CF01EF0ADE = { - isa = PBXFileReference; - path = misc.h; - refType = 4; - }; - F616C6570200B0CF01EF0ADE = { - isa = PBXFileReference; - path = misc_proto.h; - refType = 4; - }; - F616C6580200B0CF01EF0ADE = { - isa = PBXFileReference; - path = mmov.mar; - refType = 4; - }; - F616C6590200B0CF01EF0ADE = { - isa = PBXFileReference; - path = mov.cpp; - refType = 4; - }; - F616C65A0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = mov_proto.h; - refType = 4; - }; - F616C65B0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = msg.h; - refType = 4; - }; - F616C65C0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = msg_encode.h; - refType = 4; - }; - F616C65D0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = names.h; - refType = 4; - }; - F616C65E0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = nav.cpp; - refType = 4; - }; - F616C65F0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = nav_proto.h; - refType = 4; - }; - F616C6600200B0CF01EF0ADE = { - isa = PBXFileReference; - path = netware.cpp; - refType = 4; - }; - F616C6610200B0CF01EF0ADE = { - isa = PBXFileReference; - path = nlm_thd.h; - refType = 4; - }; - F616C6620200B0CF01EF0ADE = { - isa = PBXFileReference; - path = nod.h; - refType = 4; - }; - F616C6630200B0CF01EF0ADE = { - isa = PBXFileReference; - path = nodebug.cpp; - refType = 4; - }; - F616C6640200B0CF01EF0ADE = { - isa = PBXFileReference; - path = obj.h; - refType = 4; - }; - F616C6650200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ods.h; - refType = 4; - }; - F616C6660200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ods10.gdl; - refType = 4; - }; - F616C6670200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ods72.gdl; - refType = 4; - }; - F616C6680200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ods80.gdl; - refType = 4; - }; - F616C6690200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ods80dif.gdl; - refType = 4; - }; - F616C66A0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ods81.gdl; - refType = 4; - }; - F616C66B0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = ods91.gdl; - refType = 4; - }; - F616C66C0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = old.cpp; - refType = 4; - }; - F616C66D0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = old.h; - refType = 4; - }; - F616C66E0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = old_proto.h; - refType = 4; - }; - F616C6710200B0CF01EF0ADE = { - children = ( - F616C6720200B0CF01EF0ADE, - F616C6740200B0CF01EF0ADE, - F616C6750200B0CF01EF0ADE, - F616C6760200B0CF01EF0ADE, - ); - isa = PBXGroup; - path = os; - refType = 4; - }; - F616C6720200B0CF01EF0ADE = { - children = ( - F616C6730200B0CF01EF0ADE, - ); - isa = PBXGroup; - path = darwin; - refType = 4; - }; - F616C6730200B0CF01EF0ADE = { - isa = PBXFileReference; - path = mod_loader.cpp; - refType = 4; - }; - F616C6740200B0CF01EF0ADE = { - isa = PBXFileReference; - path = mod_loader.h; - refType = 4; - }; - F616C6750200B0CF01EF0ADE = { - isa = PBXFileReference; - path = path_utils.h; - refType = 4; - }; - F616C6760200B0CF01EF0ADE = { - children = ( - F616C6770200B0CF01EF0ADE, - ); - isa = PBXGroup; - path = posix; - refType = 4; - }; - F616C6770200B0CF01EF0ADE = { - isa = PBXFileReference; - path = path_utils.cpp; - refType = 4; - }; - F616C6780200B0CF01EF0ADE = { - isa = PBXFileReference; - path = os2.cpp; - refType = 4; - }; - F616C6790200B0CF01EF0ADE = { - isa = PBXFileReference; - path = pag.cpp; - refType = 4; - }; - F616C67A0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = pag.h; - refType = 4; - }; - F616C67B0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = pag_proto.h; - refType = 4; - }; - F616C67C0200B0CF01EF0ADE = { - isa = PBXFileReference; - path = par.cpp; - refType = 4; - }; - F616C67D0200B0D001EF0ADE = { - isa = PBXFileReference; - path = par_proto.h; - refType = 4; - }; - F616C6800200B0D001EF0ADE = { - isa = PBXFileReference; - path = pcsleep.cpp; - refType = 4; - }; - F616C6810200B0D001EF0ADE = { - isa = PBXFileReference; - path = perf.cpp; - refType = 4; - }; - F616C6820200B0D001EF0ADE = { - isa = PBXFileReference; - path = perf.h; - refType = 4; - }; - F616C6830200B0D001EF0ADE = { - isa = PBXFileReference; - path = perf.pas; - refType = 4; - }; - F616C6840200B0D001EF0ADE = { - isa = PBXFileReference; - path = perf_proto.h; - refType = 4; - }; - F616C6850200B0D001EF0ADE = { - isa = PBXFileReference; - path = pio.h; - refType = 4; - }; - F616C6860200B0D001EF0ADE = { - isa = PBXFileReference; - path = pio_proto.h; - refType = 4; - }; - F616C6870200B0D001EF0ADE = { - isa = PBXFileReference; - path = plugin_manager.cpp; - refType = 4; - }; - F616C6880200B0D001EF0ADE = { - isa = PBXFileReference; - path = plugin_manager.h; - refType = 4; - }; - F616C6890200B0D001EF0ADE = { - isa = PBXFileReference; - path = pragma.h; - refType = 4; - }; - F616C68A0200B0D001EF0ADE = { - isa = PBXFileReference; - path = print.cpp; - refType = 4; - }; - F616C68B0200B0D001EF0ADE = { - isa = PBXFileReference; - path = procs2.gdl; - refType = 4; - }; - F616C68C0200B0D001EF0ADE = { - isa = PBXFileReference; - path = prv_m_bypass.h; - refType = 4; - }; - F616C68D0200B0D001EF0ADE = { - isa = PBXFileReference; - path = pwd.cpp; - refType = 4; - }; - F616C68E0200B0D001EF0ADE = { - isa = PBXFileReference; - path = pwd_old.h; - refType = 4; - }; - F616C68F0200B0D001EF0ADE = { - isa = PBXFileReference; - path = pwd_proto.h; - refType = 4; - }; - F616C6900200B0D001EF0ADE = { - isa = PBXFileReference; - path = qatest.cpp; - refType = 4; - }; - F616C6940200B0D001EF0ADE = { - isa = PBXFileReference; - path = que.h; - refType = 4; - }; - F616C6950200B0D001EF0ADE = { - isa = PBXFileReference; - path = rdb.cpp; - refType = 4; - }; - F616C6960200B0D001EF0ADE = { - isa = PBXFileReference; - path = rdb.h; - refType = 4; - }; - F616C6970200B0D001EF0ADE = { - isa = PBXFileReference; - path = rdb_codes.h; - refType = 4; - }; - F616C6980200B0D001EF0ADE = { - isa = PBXFileReference; - path = rdbcodes.h; - refType = 4; - }; - F616C6990200B0D001EF0ADE = { - isa = PBXFileReference; - path = rdbcodes.mar; - refType = 4; - }; - F616C69A0200B0D001EF0ADE = { - isa = PBXFileReference; - path = rdbgentry.mar; - refType = 4; - }; - F616C69B0200B0D001EF0ADE = { - isa = PBXFileReference; - path = rdbgpas.cpp; - refType = 4; - }; - F616C69C0200B0D001EF0ADE = { - isa = PBXFileReference; - path = rdbint.cpp; - refType = 4; - }; - F616C69D0200B0D001EF0ADE = { - isa = PBXFileReference; - path = rec.cpp; - refType = 4; - }; - F616C69E0200B0D001EF0ADE = { - isa = PBXFileReference; - path = rec_proto.h; - refType = 4; - }; - F616C69F0200B0D001EF0ADE = { - isa = PBXFileReference; - path = relations.h; - refType = 4; - }; - F616C6A00200B0D001EF0ADE = { - isa = PBXFileReference; - path = req.h; - refType = 4; - }; - F616C6A10200B0D001EF0ADE = { - isa = PBXFileReference; - path = rlck.cpp; - refType = 4; - }; - F616C6A20200B0D001EF0ADE = { - isa = PBXFileReference; - path = rlck_proto.h; - refType = 4; - }; - F616C6A60200B0D001EF0ADE = { - isa = PBXFileReference; - path = rse.cpp; - refType = 4; - }; - F616C6A80200B0D001EF0ADE = { - isa = PBXFileReference; - path = rse_proto.h; - refType = 4; - }; - F616C6A90200B0D001EF0ADE = { - isa = PBXFileReference; - path = sbm.cpp; - refType = 4; - }; - F616C6AA0200B0D001EF0ADE = { - isa = PBXFileReference; - path = sbm.h; - refType = 4; - }; - F616C6AB0200B0D001EF0ADE = { - isa = PBXFileReference; - path = sbm_proto.h; - refType = 4; - }; - F616C6AC0200B0D001EF0ADE = { - isa = PBXFileReference; - path = sch.cpp; - refType = 4; - }; - F616C6AD0200B0D001EF0ADE = { - isa = PBXFileReference; - path = sch_proto.h; - refType = 4; - }; - F616C6AE0200B0D001EF0ADE = { - isa = PBXFileReference; - path = scl.epp; - refType = 4; - }; - F616C6AF0200B0D001EF0ADE = { - isa = PBXFileReference; - path = scl.h; - refType = 4; - }; - F616C6B00200B0D001EF0ADE = { - isa = PBXFileReference; - path = scl_proto.h; - refType = 4; - }; - F616C6B10200B0D001EF0ADE = { - isa = PBXFileReference; - path = scroll_cursors.h; - refType = 4; - }; - F616C6B20200B0D001EF0ADE = { - isa = PBXFileReference; - path = sdl.cpp; - refType = 4; - }; - F616C6B30200B0D001EF0ADE = { - isa = PBXFileReference; - path = sdl.h; - refType = 4; - }; - F616C6B40200B0D001EF0ADE = { - isa = PBXFileReference; - path = sdl_proto.h; - refType = 4; - }; - F616C6B50200B0D001EF0ADE = { - isa = PBXFileReference; - path = sdw.cpp; - refType = 4; - }; - F616C6B60200B0D001EF0ADE = { - isa = PBXFileReference; - path = sdw.h; - refType = 4; - }; - F616C6B70200B0D001EF0ADE = { - isa = PBXFileReference; - path = sdw_proto.h; - refType = 4; - }; - F616C6B80200B0D001EF0ADE = { - isa = PBXFileReference; - path = shdef.h; - refType = 4; - }; - F616C6B90200B0D001EF0ADE = { - isa = PBXFileReference; - path = shrfinit.cpp; - refType = 4; - }; - F616C6BA0200B0D001EF0ADE = { - isa = PBXFileReference; - path = shrinit.cpp; - refType = 4; - }; - F616C6BB0200B0D001EF0ADE = { - isa = PBXFileReference; - path = shut.cpp; - refType = 4; - }; - F616C6BC0200B0D001EF0ADE = { - isa = PBXFileReference; - path = shut_proto.h; - refType = 4; - }; - F616C6BD0200B0D001EF0ADE = { - isa = PBXFileReference; - path = smp.h; - refType = 4; - }; - F616C6BE0200B0D001EF0ADE = { - isa = PBXFileReference; - path = smp_impl.h; - refType = 4; - }; - F616C6BF0200B0D001EF0ADE = { - isa = PBXFileReference; - path = sort.cpp; - refType = 4; - }; - F616C6C00200B0D001EF0ADE = { - isa = PBXFileReference; - path = sort.h; - refType = 4; - }; - F616C6C10200B0D001EF0ADE = { - isa = PBXFileReference; - path = sort_proto.h; - refType = 4; - }; - F616C6C20200B0D001EF0ADE = { - isa = PBXFileReference; - path = sqz.cpp; - refType = 4; - }; - F616C6C30200B0D001EF0ADE = { - isa = PBXFileReference; - path = sqz.h; - refType = 4; - }; - F616C6C40200B0D001EF0ADE = { - isa = PBXFileReference; - path = sqz_proto.h; - refType = 4; - }; - F616C6C50200B0D001EF0ADE = { - isa = PBXFileReference; - path = stats.epp; - refType = 4; - }; - F616C6C60200B0D001EF0ADE = { - isa = PBXFileReference; - path = status.cpp; - refType = 4; - }; - F616C6C70200B0D001EF0ADE = { - isa = PBXFileReference; - path = status.h; - refType = 4; - }; - F616C6C80200B0D001EF0ADE = { - isa = PBXFileReference; - path = stored_proc.gdl; - refType = 4; - }; - F616C6C90200B0D001EF0ADE = { - isa = PBXFileReference; - path = stubs.cpp; - refType = 4; - }; - F616C6CA0200B0D001EF0ADE = { - isa = PBXFileReference; - path = sun_ftn.cpp; - refType = 4; - }; - F616C6CB0200B0D001EF0ADE = { - isa = PBXFileReference; - path = svc.cpp; - refType = 4; - }; - F616C6CC0200B0D001EF0ADE = { - isa = PBXFileReference; - path = svc.h; - refType = 4; - }; - F616C6CD0200B0D001EF0ADE = { - isa = PBXFileReference; - path = svc_proto.h; - refType = 4; - }; - F616C6CE0200B0D001EF0ADE = { - isa = PBXFileReference; - path = svc_undoc.h; - refType = 4; - }; - F616C6CF0200B0D001EF0ADE = { - isa = PBXFileReference; - path = syidef.h; - refType = 4; - }; - F616C6D00200B0D001EF0ADE = { - isa = PBXFileReference; - path = sym.cpp; - refType = 4; - }; - F616C6D10200B0D001EF0ADE = { - isa = PBXFileReference; - path = sym_proto.h; - refType = 4; - }; - F616C6D20200B0D001EF0ADE = { - isa = PBXFileReference; - path = termtype.h; - refType = 4; - }; - F616C6D70200B0D001EF0ADE = { - isa = PBXFileReference; - path = thin.asm; - refType = 4; - }; - F616C6D80200B0D001EF0ADE = { - isa = PBXFileReference; - path = thread.mar; - refType = 4; - }; - F616C6D90200B0D001EF0ADE = { - isa = PBXFileReference; - path = time.h; - refType = 4; - }; - F616C6DA0200B0D001EF0ADE = { - isa = PBXFileReference; - path = tpc.cpp; - refType = 4; - }; - F616C6DC0200B0D001EF0ADE = { - isa = PBXFileReference; - path = tpc_proto.h; - refType = 4; - }; - F616C6DD0200B0D001EF0ADE = { - isa = PBXFileReference; - path = tra.cpp; - refType = 4; - }; - F616C6DE0200B0D001EF0ADE = { - isa = PBXFileReference; - path = tra.h; - refType = 4; - }; - F616C6DF0200B0D001EF0ADE = { - isa = PBXFileReference; - path = tra_proto.h; - refType = 4; - }; - F616C6E00200B0D001EF0ADE = { - isa = PBXFileReference; - path = trig.h; - refType = 4; - }; - F616C6E10200B0D001EF0ADE = { - isa = PBXFileReference; - path = types.h; - refType = 4; - }; - F616C6E20200B0D001EF0ADE = { - isa = PBXFileReference; - path = unix.cpp; - refType = 4; - }; - F616C6E30200B0D001EF0ADE = { - isa = PBXFileReference; - path = utl.cpp; - refType = 4; - }; - F616C6E40200B0D001EF0ADE = { - isa = PBXFileReference; - path = utl_proto.h; - refType = 4; - }; - F616C6E50200B0D001EF0ADE = { - isa = PBXFileReference; - path = utls.def; - refType = 4; - }; - F616C6E60200B0D001EF0ADE = { - isa = PBXFileReference; - path = v2_triggers.gdl; - refType = 4; - }; - F616C6E70200B0D001EF0ADE = { - isa = PBXFileReference; - path = validation.cpp; - refType = 4; - }; - F616C6E80200B0D001EF0ADE = { - isa = PBXFileReference; - path = val.h; - refType = 4; - }; - F616C6E90200B0D001EF0ADE = { - isa = PBXFileReference; - path = val_proto.h; - refType = 4; - }; - F616C6EA0200B0D001EF0ADE = { - isa = PBXFileReference; - path = version.rc; - refType = 4; - }; - F616C6EB0200B0D001EF0ADE = { - isa = PBXFileReference; - path = version_95.rc; - refType = 4; - }; - F616C6EC0200B0D001EF0ADE = { - isa = PBXFileReference; - path = vio.cpp; - refType = 4; - }; - F616C6ED0200B0D001EF0ADE = { - isa = PBXFileReference; - path = vio_debug.h; - refType = 4; - }; - F616C6EE0200B0D001EF0ADE = { - isa = PBXFileReference; - path = vio_proto.h; - refType = 4; - }; - F616C6EF0200B0D001EF0ADE = { - isa = PBXFileReference; - path = vms.cpp; - refType = 4; - }; - F616C6F00200B0D001EF0ADE = { - isa = PBXFileReference; - path = vms.h; - refType = 4; - }; - F616C6F10200B0D001EF0ADE = { - isa = PBXFileReference; - path = vms_command.cpp; - refType = 4; - }; - F616C6F20200B0D001EF0ADE = { - isa = PBXFileReference; - path = vmsevent.cpp; - refType = 4; - }; - F616C6F30200B0D001EF0ADE = { - isa = PBXFileReference; - path = vmslo_proto.h; - refType = 4; - }; - F616C6F40200B0D001EF0ADE = { - isa = PBXFileReference; - path = vmslock.cpp; - refType = 4; - }; - F616C6F50200B0D001EF0ADE = { - isa = PBXFileReference; - path = vmsthread.cpp; - refType = 4; - }; - F616C6F60200B0D001EF0ADE = { - isa = PBXFileReference; - path = why.c; - refType = 4; - }; - F616C6F70200B0D001EF0ADE = { - isa = PBXFileReference; - path = why_proto.h; - refType = 4; - }; - F616C6F80200B0D001EF0ADE = { - isa = PBXFileReference; - path = windows.cpp; - refType = 4; - }; - F616C6F90200B0D001EF0ADE = { - isa = PBXFileReference; - path = winnt.cpp; - refType = 4; - }; - F616C6FA0200B0D001EF0ADE = { - isa = PBXFileReference; - path = winnt_dll.cpp; - refType = 4; - }; - F616C6FB0200B0D001EF0ADE = { - isa = PBXFileReference; - path = "y-valve.cpp"; - refType = 4; - }; - F616C6FC0200B0D001EF0ADE = { - children = ( - F616C6FF0200B0D001EF0ADE, - F616C7000200B0D001EF0ADE, - F616C7010200B0D001EF0ADE, - F616C7020200B0D001EF0ADE, - F616C7050200B0D001EF0ADE, - F616C7060200B0D001EF0ADE, - F616C7070200B0D001EF0ADE, - F616C7090200B0D001EF0ADE, - F616C70A0200B0D001EF0ADE, - F616C70B0200B0D001EF0ADE, - F616C70C0200B0D001EF0ADE, - F616C70D0200B0D001EF0ADE, - F616C70E0200B0D001EF0ADE, - F616C70F0200B0D001EF0ADE, - F616C7100200B0D001EF0ADE, - F616C7110200B0D001EF0ADE, - F616C7120200B0D001EF0ADE, - ); - isa = PBXGroup; - path = lock; - refType = 4; - }; - F616C6FF0200B0D001EF0ADE = { - isa = PBXFileReference; - path = driver.cpp; - refType = 4; - }; - F616C7000200B0D001EF0ADE = { - isa = PBXFileReference; - path = fparamv3.h; - refType = 4; - }; - F616C7010200B0D001EF0ADE = { - isa = PBXFileReference; - path = lock.cpp; - refType = 4; - }; - F616C7020200B0D001EF0ADE = { - isa = PBXFileReference; - path = lock.h; - refType = 4; - }; - F616C7050200B0D001EF0ADE = { - isa = PBXFileReference; - path = lock_proto.h; - refType = 4; - }; - F616C7060200B0D001EF0ADE = { - isa = PBXFileReference; - path = lockv3.h; - refType = 4; - }; - F616C7070200B0D001EF0ADE = { - isa = PBXFileReference; - path = lockv3s4.h; - refType = 4; - }; - F616C7090200B0D001EF0ADE = { - isa = PBXFileReference; - path = manager.cpp; - refType = 4; - }; - F616C70A0200B0D001EF0ADE = { - isa = PBXFileReference; - path = pls.cpp; - refType = 4; - }; - F616C70B0200B0D001EF0ADE = { - isa = PBXFileReference; - path = plserver.cpp; - refType = 4; - }; - F616C70C0200B0D001EF0ADE = { - isa = PBXFileReference; - path = plserver.h; - refType = 4; - }; - F616C70D0200B0D001EF0ADE = { - isa = PBXFileReference; - path = print.cpp; - refType = 4; - }; - F616C70E0200B0D001EF0ADE = { - isa = PBXFileReference; - path = printv3.cpp; - refType = 4; - }; - F616C70F0200B0D001EF0ADE = { - isa = PBXFileReference; - path = printv3s4.cpp; - refType = 4; - }; - F616C7100200B0D001EF0ADE = { - isa = PBXFileReference; - path = prtv3_proto.h; - refType = 4; - }; - F616C7110200B0D001EF0ADE = { - isa = PBXFileReference; - path = reset.cpp; - refType = 4; - }; - F616C7120200B0D001EF0ADE = { - isa = PBXFileReference; - path = ulimit.cpp; - refType = 4; - }; - F616C7F30200B0D001EF0ADE = { - children = ( - F616C7F40200B0D001EF0ADE, - F616C7F50200B0D001EF0ADE, - F616C7F60200B0D001EF0ADE, - F616C7F70200B0D001EF0ADE, - F616C7F80200B0D001EF0ADE, - F616C7F90200B0D001EF0ADE, - F616C7FA0200B0D001EF0ADE, - F616C7FB0200B0D001EF0ADE, - F616C7FC0200B0D001EF0ADE, - F616C7FD0200B0D001EF0ADE, - F616C7FE0200B0D001EF0ADE, - F616C7FF0200B0D001EF0ADE, - F616C8000200B0D001EF0ADE, - F616C8010200B0D001EF0ADE, - F616C8020200B0D001EF0ADE, - F616C8030200B0D001EF0ADE, - ); - isa = PBXGroup; - path = misc; - refType = 4; - }; - F616C7F50200B0D001EF0ADE = { - isa = PBXFileReference; - path = codetext.h; - refType = 4; - }; - F616C7F80200B0D001EF0ADE = { - isa = PBXFileReference; - path = gds_codes.pas; - refType = 4; - }; - F616C7FA0200B0D001EF0ADE = { - isa = PBXFileReference; - path = help.gbak; - refType = 4; - }; - F616C7FB0200B0D001EF0ADE = { - isa = PBXFileReference; - path = metadata.gbak; - refType = 4; - }; - F616C7FC0200B0D001EF0ADE = { - isa = PBXFileReference; - path = metadata.sql; - refType = 4; - }; - F616C7FD0200B0D001EF0ADE = { - isa = PBXFileReference; - path = msg_facs.h; - refType = 4; - }; - F616C7FE0200B0D001EF0ADE = { - isa = PBXFileReference; - path = msgs.h; - refType = 4; - }; - F616C7FF0200B0D001EF0ADE = { - isa = PBXFileReference; - path = rdb_codes.h; - refType = 4; - }; - F616C8000200B0D001EF0ADE = { - isa = PBXFileReference; - path = sql_code.h; - refType = 4; - }; - F616C8010200B0D001EF0ADE = { - isa = PBXFileReference; - path = status.cpp; - refType = 4; - }; - F616C8020200B0D001EF0ADE = { - isa = PBXFileReference; - path = status.h; - refType = 4; - }; - F616C8030200B0D001EF0ADE = { - isa = PBXExecutableFileReference; - path = writeBuildNum.sh; - refType = 4; - }; - F616C8040200B0D001EF0ADE = { - children = ( - F616C8050200B0D001EF0ADE, - F616C8060200B0D001EF0ADE, - F616C8070200B0D001EF0ADE, - F616C8080200B0D001EF0ADE, - F616C8090200B0D001EF0ADE, - F616C80A0200B0D001EF0ADE, - F616C80B0200B0D001EF0ADE, - F616C80C0200B0D001EF0ADE, - F616C80D0200B0D001EF0ADE, - F616C80E0200B0D001EF0ADE, - F616C80F0200B0D001EF0ADE, - F616C8100200B0D001EF0ADE, - F616C8110200B0D001EF0ADE, - F616C8120200B0D001EF0ADE, - F616C8130200B0D001EF0ADE, - F616C8140200B0D001EF0ADE, - F616C8150200B0D001EF0ADE, - F616C8160200B0D001EF0ADE, - F616C8170200B0D001EF0ADE, - F616C8180200B0D001EF0ADE, - F616C8190200B0D001EF0ADE, - F616C81A0200B0D001EF0ADE, - F616C81B0200B0D001EF0ADE, - ); - isa = PBXGroup; - path = msgs; - refType = 4; - }; - F616C8050200B0D001EF0ADE = { - isa = PBXFileReference; - path = build.def; - refType = 4; - }; - F616C8060200B0D001EF0ADE = { - isa = PBXFileReference; - path = build_file.cpp; - refType = 4; - }; - F616C8080200B0D001EF0ADE = { - isa = PBXFileReference; - path = change_msgs.cpp; - refType = 4; - }; - F616C8090200B0D001EF0ADE = { - isa = PBXFileReference; - path = change_msgs.epp; - refType = 4; - }; - F616C80A0200B0D001EF0ADE = { - isa = PBXFileReference; - path = check_msgs.cpp; - refType = 4; - }; - F616C80B0200B0D001EF0ADE = { - isa = PBXFileReference; - path = check_msgs.epp; - refType = 4; - }; - F616C80C0200B0D001EF0ADE = { - isa = PBXFileReference; - path = depends.mak; - refType = 4; - }; - F616C80D0200B0D001EF0ADE = { - isa = PBXFileReference; - path = enter_msgs.cpp; - refType = 4; - }; - F616C80E0200B0D001EF0ADE = { - isa = PBXFileReference; - path = enter_msgs.epp; - refType = 4; - }; - F616C80F0200B0D001EF0ADE = { - isa = PBXFileReference; - path = include.epp; - refType = 4; - }; - F616C8100200B0D001EF0ADE = { - isa = PBXFileReference; - path = indicator.incl; - refType = 4; - }; - F616C8110200B0D001EF0ADE = { - isa = PBXFileReference; - path = indicator.loc; - refType = 4; - }; - F616C8120200B0D001EF0ADE = { - isa = PBXFileReference; - path = indicator.msg; - refType = 4; - }; - F616C8130200B0D001EF0ADE = { - isa = PBXFileReference; - path = load.epp; - refType = 4; - }; - F616C8140200B0D001EF0ADE = { - isa = PBXFileReference; - path = Makefile; - refType = 4; - }; - F616C8150200B0D001EF0ADE = { - isa = PBXFileReference; - path = makefile.mak; - refType = 4; - }; - F616C8160200B0D001EF0ADE = { - isa = PBXFileReference; - path = master_msg_db; - refType = 4; - }; - F616C8170200B0D001EF0ADE = { - isa = PBXFileReference; - path = modify_msgs.cpp; - refType = 4; - }; - F616C8180200B0D001EF0ADE = { - isa = PBXFileReference; - path = modify_msgs.epp; - refType = 4; - }; - F616C8190200B0D001EF0ADE = { - isa = PBXFileReference; - path = msg.gbak; - refType = 4; - }; - F616C81A0200B0D001EF0ADE = { - isa = PBXFileReference; - path = msg.gdb; - refType = 4; - }; - F616C81B0200B0D001EF0ADE = { - isa = PBXFileReference; - path = msg.gdl; - refType = 4; - }; - F616C81C0200B0D001EF0ADE = { - children = ( - F616C81D0200B0D001EF0ADE, - F616C81E0200B0D001EF0ADE, - F616C81F0200B0D001EF0ADE, - F616C8200200B0D001EF0ADE, - F616C8210200B0D001EF0ADE, - F616C8220200B0D001EF0ADE, - F616C8230200B0D001EF0ADE, - F616C8250200B0D001EF0ADE, - ); - isa = PBXGroup; - path = pipe; - refType = 4; - }; - F616C81D0200B0D001EF0ADE = { - isa = PBXFileReference; - path = allp.cpp; - refType = 4; - }; - F616C81E0200B0D001EF0ADE = { - isa = PBXFileReference; - path = allp_proto.h; - refType = 4; - }; - F616C81F0200B0D001EF0ADE = { - isa = PBXFileReference; - path = blk.h; - refType = 4; - }; - F616C8200200B0D001EF0ADE = { - isa = PBXFileReference; - path = foot.cpp; - refType = 4; - }; - F616C8210200B0D001EF0ADE = { - isa = PBXFileReference; - path = head.cpp; - refType = 4; - }; - F616C8220200B0D001EF0ADE = { - isa = PBXFileReference; - path = head5.cpp; - refType = 4; - }; - F616C8230200B0D001EF0ADE = { - isa = PBXFileReference; - path = head_proto.h; - refType = 4; - }; - F616C8250200B0D001EF0ADE = { - isa = PBXFileReference; - path = pipe.h; - refType = 4; - }; - F616C8270200B0D001EF0ADE = { - children = ( - F616C8280200B0D001EF0ADE, - F616C8290200B0D001EF0ADE, - F616C82A0200B0D001EF0ADE, - F616C82B0200B0D001EF0ADE, - F616C82C0200B0D001EF0ADE, - F616C82D0200B0D001EF0ADE, - F616C82E0200B0D001EF0ADE, - F616C82F0200B0D001EF0ADE, - F616C8310200B0D001EF0ADE, - F616C8320200B0D001EF0ADE, - F616C8330200B0D001EF0ADE, - F616C8340200B0D001EF0ADE, - F616C8350200B0D001EF0ADE, - F616C8360200B0D001EF0ADE, - F616C8370200B0D001EF0ADE, - F616C8380200B0D001EF0ADE, - F616C8390200B0D001EF0ADE, - F616C83A0200B0D001EF0ADE, - F616C83B0200B0D001EF0ADE, - F616C83C0200B0D001EF0ADE, - F616C83D0200B0D001EF0ADE, - F616C83E0200B0D001EF0ADE, - F616C83F0200B0D001EF0ADE, - F616C8400200B0D001EF0ADE, - F616C8410200B0D001EF0ADE, - F616C8420200B0D001EF0ADE, - F616C8430200B0D001EF0ADE, - F616C8440200B0D001EF0ADE, - F616C8450200B0D001EF0ADE, - F616C8460200B0D001EF0ADE, - F616C8470200B0D001EF0ADE, - F616C8480200B0D001EF0ADE, - F616C8490200B0D001EF0ADE, - F616C84A0200B0D001EF0ADE, - F616C84C0200B0D001EF0ADE, - F616C84D0200B0D001EF0ADE, - F616C84E0200B0D001EF0ADE, - F616C84F0200B0D001EF0ADE, - F616C8500200B0D001EF0ADE, - F616C8510200B0D001EF0ADE, - F616C8520200B0D001EF0ADE, - F616C8530200B0D001EF0ADE, - F616C8540200B0D001EF0ADE, - F616C8550200B0D001EF0ADE, - F616C8560200B0D001EF0ADE, - F616C8570200B0D001EF0ADE, - F616C8580200B0D001EF0ADE, - F616C8590200B0D001EF0ADE, - F616C85A0200B0D001EF0ADE, - F616C85B0200B0D001EF0ADE, - F616C85C0200B0D001EF0ADE, - F616C85D0200B0D001EF0ADE, - F616C85E0200B0D001EF0ADE, - F616C85F0200B0D001EF0ADE, - F616C8600200B0D001EF0ADE, - F616C8610200B0D001EF0ADE, - F616C8620200B0D001EF0ADE, - F616C8630200B0D001EF0ADE, - F616C8640200B0D001EF0ADE, - F616C8650200B0D001EF0ADE, - ); - isa = PBXGroup; - path = qli; - refType = 4; - }; - F616C8280200B0D001EF0ADE = { - isa = PBXFileReference; - path = all.cpp; - refType = 4; - }; - F616C8290200B0D001EF0ADE = { - isa = PBXFileReference; - path = all_proto.h; - refType = 4; - }; - F616C82A0200B0D001EF0ADE = { - isa = PBXFileReference; - path = blk.h; - refType = 4; - }; - F616C82B0200B0D001EF0ADE = { - isa = PBXFileReference; - path = comma_proto.h; - refType = 4; - }; - F616C82C0200B0D001EF0ADE = { - isa = PBXFileReference; - path = command.cpp; - refType = 4; - }; - F616C82D0200B0D001EF0ADE = { - isa = PBXFileReference; - path = compi_proto.h; - refType = 4; - }; - F616C82E0200B0D001EF0ADE = { - isa = PBXFileReference; - path = compile.cpp; - refType = 4; - }; - F616C82F0200B0D001EF0ADE = { - isa = PBXFileReference; - path = compile.h; - refType = 4; - }; - F616C8310200B0D001EF0ADE = { - isa = PBXFileReference; - path = dtr.cpp; - refType = 4; - }; - F616C8320200B0D001EF0ADE = { - isa = PBXFileReference; - path = dtr.h; - refType = 4; - }; - F616C8330200B0D001EF0ADE = { - isa = PBXFileReference; - path = err.cpp; - refType = 4; - }; - F616C8340200B0D001EF0ADE = { - isa = PBXFileReference; - path = err_proto.h; - refType = 4; - }; - F616C8350200B0D001EF0ADE = { - isa = PBXFileReference; - path = eval.cpp; - refType = 4; - }; - F616C8360200B0D001EF0ADE = { - isa = PBXFileReference; - path = eval_proto.h; - refType = 4; - }; - F616C8370200B0D001EF0ADE = { - isa = PBXFileReference; - path = everything.h; - refType = 4; - }; - F616C8380200B0D001EF0ADE = { - isa = PBXFileReference; - path = exe.cpp; - refType = 4; - }; - F616C8390200B0D001EF0ADE = { - isa = PBXFileReference; - path = exe.h; - refType = 4; - }; - F616C83A0200B0D001EF0ADE = { - isa = PBXFileReference; - path = exe_proto.h; - refType = 4; - }; - F616C83B0200B0D001EF0ADE = { - isa = PBXFileReference; - path = expan_proto.h; - refType = 4; - }; - F616C83C0200B0D001EF0ADE = { - isa = PBXFileReference; - path = expand.cpp; - refType = 4; - }; - F616C8400200B0D001EF0ADE = { - isa = PBXFileReference; - path = forma_proto.h; - refType = 4; - }; - F616C8410200B0D001EF0ADE = { - isa = PBXFileReference; - path = format.cpp; - refType = 4; - }; - F616C8420200B0D001EF0ADE = { - isa = PBXFileReference; - path = format.h; - refType = 4; - }; - F616C8430200B0D001EF0ADE = { - isa = PBXFileReference; - path = gener.cpp; - refType = 4; - }; - F616C8440200B0D001EF0ADE = { - isa = PBXFileReference; - path = gener_proto.h; - refType = 4; - }; - F616C8450200B0D001EF0ADE = { - isa = PBXFileReference; - path = help.epp; - refType = 4; - }; - F616C8460200B0D001EF0ADE = { - isa = PBXFileReference; - path = help_proto.h; - refType = 4; - }; - F616C8470200B0D001EF0ADE = { - isa = PBXFileReference; - path = hsh.cpp; - refType = 4; - }; - F616C8480200B0D001EF0ADE = { - isa = PBXFileReference; - path = hsh_proto.h; - refType = 4; - }; - F616C8490200B0D001EF0ADE = { - isa = PBXFileReference; - path = lex.cpp; - refType = 4; - }; - F616C84A0200B0D001EF0ADE = { - isa = PBXFileReference; - path = lex_proto.h; - refType = 4; - }; - F616C84C0200B0D001EF0ADE = { - isa = PBXFileReference; - path = meta.epp; - refType = 4; - }; - F616C84D0200B0D001EF0ADE = { - isa = PBXFileReference; - path = meta_proto.h; - refType = 4; - }; - F616C84E0200B0D001EF0ADE = { - isa = PBXFileReference; - path = mov.cpp; - refType = 4; - }; - F616C84F0200B0D001EF0ADE = { - isa = PBXFileReference; - path = mov_proto.h; - refType = 4; - }; - F616C8510200B0D001EF0ADE = { - isa = PBXFileReference; - path = nounix.cpp; - refType = 4; - }; - F616C8520200B0D001EF0ADE = { - isa = PBXFileReference; - path = parse.cpp; - refType = 4; - }; - F616C8530200B0D001EF0ADE = { - isa = PBXFileReference; - path = parse.h; - refType = 4; - }; - F616C8540200B0D001EF0ADE = { - isa = PBXFileReference; - path = parse_proto.h; - refType = 4; - }; - F616C8550200B0D001EF0ADE = { - isa = PBXFileReference; - path = picst_proto.h; - refType = 4; - }; - F616C8560200B0D001EF0ADE = { - isa = PBXFileReference; - path = picstr.cpp; - refType = 4; - }; - F616C8570200B0D001EF0ADE = { - isa = PBXFileReference; - path = proc.epp; - refType = 4; - }; - F616C8580200B0D001EF0ADE = { - isa = PBXFileReference; - path = proc_ddl.h; - refType = 4; - }; - F616C8590200B0D001EF0ADE = { - isa = PBXFileReference; - path = proc_proto.h; - refType = 4; - }; - F616C85A0200B0D001EF0ADE = { - isa = PBXFileReference; - path = procddl1.h; - refType = 4; - }; - F616C85B0200B0D001EF0ADE = { - isa = PBXFileReference; - path = procddl2.h; - refType = 4; - }; - F616C85C0200B0D001EF0ADE = { - isa = PBXFileReference; - path = procddl3.h; - refType = 4; - }; - F616C85D0200B0D001EF0ADE = { - isa = PBXFileReference; - path = procddl4.h; - refType = 4; - }; - F616C85E0200B0D001EF0ADE = { - isa = PBXFileReference; - path = repor_proto.h; - refType = 4; - }; - F616C85F0200B0D001EF0ADE = { - isa = PBXFileReference; - path = report.cpp; - refType = 4; - }; - F616C8600200B0D001EF0ADE = { - isa = PBXFileReference; - path = report.h; - refType = 4; - }; - F616C8610200B0D001EF0ADE = { - isa = PBXFileReference; - path = reqs.h; - refType = 4; - }; - F616C8620200B0D001EF0ADE = { - isa = PBXFileReference; - path = show.epp; - refType = 4; - }; - F616C8630200B0D001EF0ADE = { - isa = PBXFileReference; - path = show_proto.h; - refType = 4; - }; - F616C8640200B0D001EF0ADE = { - isa = PBXFileReference; - path = symbols.h; - refType = 4; - }; - F616C8650200B0D001EF0ADE = { - isa = PBXFileReference; - path = words.h; - refType = 4; - }; - F616C8680200B0D001EF0ADE = { - children = ( - F616C8690200B0D001EF0ADE, - F616C86A0200B0D001EF0ADE, - F616C86B0200B0D001EF0ADE, - F616C86C0200B0D001EF0ADE, - F616C86D0200B0D001EF0ADE, - F616C86E0200B0D001EF0ADE, - F616C86F0200B0D001EF0ADE, - F616C8700200B0D001EF0ADE, - F616C8720200B0D001EF0ADE, - F616C8730200B0D001EF0ADE, - F616C8740200B0D001EF0ADE, - F616C8750200B0D001EF0ADE, - F616C8760200B0D001EF0ADE, - F616C8770200B0D001EF0ADE, - F616C8780200B0D001EF0ADE, - F616C8790200B0D001EF0ADE, - F616C87A0200B0D001EF0ADE, - F616C87B0200B0D001EF0ADE, - F616C87C0200B0D001EF0ADE, - F616C87D0200B0D001EF0ADE, - F616C87E0200B0D001EF0ADE, - F616C87F0200B0D001EF0ADE, - F616C8800200B0D001EF0ADE, - F616C8810200B0D001EF0ADE, - F616C8820200B0D001EF0ADE, - F616C8830200B0D001EF0ADE, - F616C8840200B0D001EF0ADE, - F616C8850200B0D001EF0ADE, - F616C8860200B0D001EF0ADE, - F616C8870200B0D001EF0ADE, - F616C88A0200B0D001EF0ADE, - F616C88B0200B0D001EF0ADE, - F616C88C0200B0D001EF0ADE, - F616C88D0200B0D001EF0ADE, - F616C88E0200B0D001EF0ADE, - F616C88F0200B0D001EF0ADE, - F616C8900200B0D001EF0ADE, - F616C8910200B0D001EF0ADE, - F616C8920200B0D001EF0ADE, - F616C8930200B0D001EF0ADE, - F616C8940200B0D001EF0ADE, - F616C8950200B0D001EF0ADE, - F616C8960200B0D001EF0ADE, - F616C8970200B0D001EF0ADE, - F616C8980200B0D001EF0ADE, - F616C8990200B0D001EF0ADE, - F616C89A0200B0D001EF0ADE, - F616C89B0200B0D001EF0ADE, - F616C89C0200B0D001EF0ADE, - F616C89D0200B0D001EF0ADE, - F616C89E0200B0D001EF0ADE, - F616C89F0200B0D001EF0ADE, - F616C8A00200B0D001EF0ADE, - F616C8A10200B0D001EF0ADE, - F616C8A20200B0D001EF0ADE, - F616C8A30200B0D001EF0ADE, - F616C8A40200B0D001EF0ADE, - F616C8A50200B0D001EF0ADE, - F616C8A60200B0D001EF0ADE, - F616C8A70200B0D001EF0ADE, - F616C8A80200B0D001EF0ADE, - F616C8A90200B0D001EF0ADE, - F616C8AA0200B0D001EF0ADE, - F616C8AB0200B0D001EF0ADE, - F616C8AC0200B0D001EF0ADE, - F616C8AD0200B0D001EF0ADE, - F616C8AE0200B0D001EF0ADE, - F616C8AF0200B0D001EF0ADE, - F616C8B00200B0D001EF0ADE, - F616C8B10200B0D001EF0ADE, - F616C8B20200B0D001EF0ADE, - F616C8B30200B0D001EF0ADE, - F616C8B40200B0D001EF0ADE, - F616C8B50200B0D001EF0ADE, - F616C8B60200B0D001EF0ADE, - F616C8B70200B0D001EF0ADE, - F616C8B80200B0D001EF0ADE, - F616C8B90200B0D001EF0ADE, - F616C8BA0200B0D001EF0ADE, - F616C8BB0200B0D001EF0ADE, - F616C8BC0200B0D001EF0ADE, - F616C8BD0200B0D001EF0ADE, - F616C8BE0200B0D001EF0ADE, - F616C8BF0200B0D001EF0ADE, - F616C8C00200B0D001EF0ADE, - F616C8C10200B0D001EF0ADE, - F616C8C20200B0D001EF0ADE, - F616C8C30200B0D001EF0ADE, - F616C8C40200B0D001EF0ADE, - F616C8C50200B0D001EF0ADE, - F616C8C60200B0D001EF0ADE, - F616C8C70200B0D001EF0ADE, - F616C8C80200B0D001EF0ADE, - ); - isa = PBXGroup; - path = remote; - refType = 4; - }; - F616C8690200B0D001EF0ADE = { - isa = PBXFileReference; - path = allr.cpp; - refType = 4; - }; - F616C86A0200B0D001EF0ADE = { - isa = PBXFileReference; - path = allr_proto.h; - refType = 4; - }; - F616C86B0200B0D001EF0ADE = { - isa = PBXFileReference; - path = caution.ico; - refType = 4; - }; - F616C86C0200B0D001EF0ADE = { - isa = PBXFileReference; - path = chop.cpp; - refType = 4; - }; - F616C86D0200B0D001EF0ADE = { - isa = PBXFileReference; - path = chop_proto.h; - refType = 4; - }; - F616C86E0200B0D001EF0ADE = { - isa = PBXFileReference; - path = chuser.cpp; - refType = 4; - }; - F616C86F0200B0D001EF0ADE = { - isa = PBXFileReference; - path = cntl.cpp; - refType = 4; - }; - F616C8700200B0D001EF0ADE = { - isa = PBXFileReference; - path = cntl_proto.h; - refType = 4; - }; - F616C8720200B0D001EF0ADE = { - isa = PBXFileReference; - path = divorce.cpp; - refType = 4; - }; - F616C8730200B0D001EF0ADE = { - isa = PBXFileReference; - path = dllshell.cpp; - refType = 4; - }; - F616C8740200B0D001EF0ADE = { - isa = PBXFileReference; - path = faux.cpp; - refType = 4; - }; - F616C8750200B0D001EF0ADE = { - isa = PBXFileReference; - path = faux.h; - refType = 4; - }; - F616C8760200B0D001EF0ADE = { - isa = PBXFileReference; - path = ibconfig.cpp; - refType = 4; - }; - F616C8770200B0D001EF0ADE = { - isa = PBXFileReference; - path = ibconfig.h; - refType = 4; - }; - F616C8780200B0D001EF0ADE = { - isa = PBXFileReference; - path = ibconfig.rc; - refType = 4; - }; - F616C8790200B0D001EF0ADE = { - isa = PBXFileReference; - path = ibsvrhlp.h; - refType = 4; - }; - F616C87A0200B0D001EF0ADE = { - isa = PBXFileReference; - path = in.h; - refType = 4; - }; - F616C87B0200B0D001EF0ADE = { - isa = PBXFileReference; - path = inet.cpp; - refType = 4; - }; - F616C87C0200B0D001EF0ADE = { - isa = PBXFileReference; - path = inet_proto.h; - refType = 4; - }; - F616C87D0200B0D001EF0ADE = { - isa = PBXFileReference; - path = inet_server.cpp; - refType = 4; - }; - F616C87E0200B0D001EF0ADE = { - isa = PBXFileReference; - path = inetiodef.h; - refType = 4; - }; - F616C87F0200B0D001EF0ADE = { - isa = PBXFileReference; - path = inter_proto.h; - refType = 4; - }; - F616C8800200B0D001EF0ADE = { - isa = PBXFileReference; - path = interface.cpp; - refType = 4; - }; - F616C8850200B0D001EF0ADE = { - isa = PBXFileReference; - path = isc_tcpent.mar; - refType = 4; - }; - F616C8860200B0D001EF0ADE = { - isa = PBXFileReference; - path = jibdef.mar; - refType = 4; - }; - F616C8870200B0D001EF0ADE = { - isa = PBXFileReference; - path = lanentry.h; - refType = 4; - }; - F616C88A0200B0D001EF0ADE = { - isa = PBXFileReference; - path = merge.cpp; - refType = 4; - }; - F616C88B0200B0D001EF0ADE = { - isa = PBXFileReference; - path = merge_proto.h; - refType = 4; - }; - F616C88C0200B0D001EF0ADE = { - isa = PBXFileReference; - path = mgr.cpp; - refType = 4; - }; - F616C88D0200B0D001EF0ADE = { - isa = PBXFileReference; - path = multivx.cpp; - refType = 4; - }; - F616C88E0200B0D001EF0ADE = { - isa = PBXFileReference; - path = neterr.h; - refType = 4; - }; - F616C88F0200B0D001EF0ADE = { - isa = PBXFileReference; - path = netwcon.cpp; - refType = 4; - }; - F616C8900200B0D001EF0ADE = { - isa = PBXFileReference; - path = nlmtst.def; - refType = 4; - }; - F616C8910200B0D001EF0ADE = { - isa = PBXFileReference; - path = nt_server.cpp; - refType = 4; - }; - F616C8920200B0D001EF0ADE = { - isa = PBXFileReference; - path = ntoh.cpp; - refType = 4; - }; - F616C8930200B0D001EF0ADE = { - isa = PBXFileReference; - path = ntoh_proto.h; - refType = 4; - }; - F616C8940200B0D001EF0ADE = { - isa = PBXFileReference; - path = nwserv.cpp; - refType = 4; - }; - F616C8950200B0D001EF0ADE = { - isa = PBXFileReference; - path = parse_proto.h; - refType = 4; - }; - F616C8960200B0D001EF0ADE = { - isa = PBXFileReference; - path = parser.cpp; - refType = 4; - }; - F616C8970200B0D001EF0ADE = { - isa = PBXFileReference; - path = pcbdefv4.mar; - refType = 4; - }; - F616C8980200B0D001EF0ADE = { - isa = PBXFileReference; - path = pcbdefv5.mar; - refType = 4; - }; - F616C8990200B0D001EF0ADE = { - isa = PBXFileReference; - path = property.cpp; - refType = 4; - }; - F616C89A0200B0D001EF0ADE = { - isa = PBXFileReference; - path = property.rc; - refType = 4; - }; - F616C89B0200B0D001EF0ADE = { - isa = PBXFileReference; - path = property.rh; - refType = 4; - }; - F616C89C0200B0D001EF0ADE = { - isa = PBXFileReference; - path = propty_proto.h; - refType = 4; - }; - F616C89D0200B0D001EF0ADE = { - isa = PBXFileReference; - path = proto_proto.h; - refType = 4; - }; - F616C89E0200B0D001EF0ADE = { - isa = PBXFileReference; - path = protocol.cpp; - refType = 4; - }; - F616C89F0200B0D001EF0ADE = { - isa = PBXFileReference; - path = protocol.h; - refType = 4; - }; - F616C8A00200B0D001EF0ADE = { - isa = PBXFileReference; - path = remot_proto.h; - refType = 4; - }; - F616C8A10200B0D001EF0ADE = { - isa = PBXFileReference; - path = remote.cpp; - refType = 4; - }; - F616C8A20200B0D001EF0ADE = { - isa = PBXFileReference; - path = remote.def; - refType = 4; - }; - F616C8A30200B0D001EF0ADE = { - isa = PBXFileReference; - path = remote.h; - refType = 4; - }; - F616C8A40200B0D001EF0ADE = { - isa = PBXFileReference; - path = remote_def.h; - refType = 4; - }; - F616C8A50200B0D001EF0ADE = { - isa = PBXFileReference; - path = serve_proto.h; - refType = 4; - }; - F616C8A60200B0D001EF0ADE = { - isa = PBXFileReference; - path = server.cpp; - refType = 4; - }; - F616C8A70200B0D001EF0ADE = { - isa = PBXFileReference; - path = server.ico; - refType = 4; - }; - F616C8A80200B0D001EF0ADE = { - isa = PBXFileReference; - path = spxesr.cpp; - refType = 4; - }; - F616C8A90200B0D001EF0ADE = { - isa = PBXFileReference; - path = spxne_proto.h; - refType = 4; - }; - F616C8AA0200B0D001EF0ADE = { - isa = PBXFileReference; - path = spxnet.cpp; - refType = 4; - }; - F616C8AB0200B0D001EF0ADE = { - isa = PBXFileReference; - path = spxnet32.cpp; - refType = 4; - }; - F616C8AC0200B0D001EF0ADE = { - isa = PBXFileReference; - path = spxnet32_proto.h; - refType = 4; - }; - F616C8AD0200B0D001EF0ADE = { - isa = PBXFileReference; - path = spxwi_proto.h; - refType = 4; - }; - F616C8AE0200B0D001EF0ADE = { - isa = PBXFileReference; - path = spxwin.cpp; - refType = 4; - }; - F616C8AF0200B0D001EF0ADE = { - isa = PBXFileReference; - path = spxwin.h; - refType = 4; - }; - F616C8B00200B0D001EF0ADE = { - isa = PBXFileReference; - path = srvr_w32.cpp; - refType = 4; - }; - F616C8B10200B0D001EF0ADE = { - isa = PBXFileReference; - path = tcptypes.h; - refType = 4; - }; - F616C8B20200B0D001EF0ADE = { - isa = PBXFileReference; - path = types.h; - refType = 4; - }; - F616C8B30200B0D001EF0ADE = { - isa = PBXFileReference; - path = ucx.cpp; - refType = 4; - }; - F616C8B40200B0D001EF0ADE = { - isa = PBXFileReference; - path = wfwnp.cpp; - refType = 4; - }; - F616C8B50200B0D001EF0ADE = { - isa = PBXFileReference; - path = wfwnp.h; - refType = 4; - }; - F616C8B60200B0D001EF0ADE = { - isa = PBXFileReference; - path = wfwnp_proto.h; - refType = 4; - }; - F616C8B70200B0D001EF0ADE = { - isa = PBXFileReference; - path = window.aps; - refType = 4; - }; - F616C8B80200B0D001EF0ADE = { - isa = PBXFileReference; - path = window.cpp; - refType = 4; - }; - F616C8B90200B0D001EF0ADE = { - isa = PBXFileReference; - path = window.h; - refType = 4; - }; - F616C8BA0200B0D001EF0ADE = { - isa = PBXFileReference; - path = window.rc; - refType = 4; - }; - F616C8BB0200B0D001EF0ADE = { - isa = PBXFileReference; - path = window.rh; - refType = 4; - }; - F616C8BC0200B0D001EF0ADE = { - isa = PBXFileReference; - path = window_proto.h; - refType = 4; - }; - F616C8BD0200B0D001EF0ADE = { - isa = PBXFileReference; - path = winerr.h; - refType = 4; - }; - F616C8BE0200B0D001EF0ADE = { - isa = PBXFileReference; - path = winmain.cpp; - refType = 4; - }; - F616C8BF0200B0D001EF0ADE = { - isa = PBXFileReference; - path = winvx.cpp; - refType = 4; - }; - F616C8C20200B0D001EF0ADE = { - isa = PBXFileReference; - path = xdr.cpp; - refType = 4; - }; - F616C8C30200B0D001EF0ADE = { - isa = PBXFileReference; - path = xdr.h; - refType = 4; - }; - F616C8C40200B0D001EF0ADE = { - isa = PBXFileReference; - path = xdr_proto.h; - refType = 4; - }; - F616C8C50200B0D001EF0ADE = { - isa = PBXFileReference; - path = xnet.cpp; - refType = 4; - }; - F616C8C60200B0D001EF0ADE = { - isa = PBXFileReference; - path = xnet.h; - refType = 4; - }; - F616C8C70200B0D001EF0ADE = { - isa = PBXFileReference; - path = xnet_proto.h; - refType = 4; - }; - F616C8C80200B0D001EF0ADE = { - isa = PBXFileReference; - path = zap.mar; - refType = 4; - }; - F616C8C90200B0D001EF0ADE = { - children = ( - F616C8CA0200B0D001EF0ADE, - F616C8CB0200B0D001EF0ADE, - F616C8CC0200B0D001EF0ADE, - F616C8CD0200B0D001EF0ADE, - F616C8CE0200B0D001EF0ADE, - F616C8CF0200B0D001EF0ADE, - F616C8D00200B0D001EF0ADE, - F616C8D10200B0D001EF0ADE, - F616C8D20200B0D001EF0ADE, - F616C8D30200B0D001EF0ADE, - F616C8D40200B0D001EF0ADE, - F616C8D50200B0D001EF0ADE, - F616C8D60200B0D001EF0ADE, - F616C8D70200B0D001EF0ADE, - F616C8D80200B0D001EF0ADE, - F616C8D90200B0D001EF0ADE, - F616C8DA0200B0D001EF0ADE, - F616C8DB0200B0D001EF0ADE, - F616C8DC0200B0D001EF0ADE, - F616C8DD0200B0D001EF0ADE, - F616C8DE0200B0D001EF0ADE, - F616C8DF0200B0D001EF0ADE, - F616C8E00200B0D001EF0ADE, - F616C8E10200B0D001EF0ADE, - F616C8E30200B0D001EF0ADE, - F616C8E40200B0D001EF0ADE, - F616C8E50200B0D001EF0ADE, - F616C8E60200B0D001EF0ADE, - F616C8E70200B0D001EF0ADE, - F616C8E80200B0D001EF0ADE, - F616C8E90200B0D001EF0ADE, - F616C8EA0200B0D001EF0ADE, - F616C8EB0200B0D001EF0ADE, - F616C8EC0200B0D001EF0ADE, - F616C8ED0200B0D001EF0ADE, - F616C8EE0200B0D001EF0ADE, - F616C8EF0200B0D001EF0ADE, - F616C8F00200B0D001EF0ADE, - F616C8F10200B0D001EF0ADE, - F616C8F20200B0D001EF0ADE, - F616C8F30200B0D001EF0ADE, - F616C8F40200B0D001EF0ADE, - F616C8F50200B0D001EF0ADE, - F616C8F60200B0D001EF0ADE, - F616C8F70200B0D001EF0ADE, - F616C8F80200B0D001EF0ADE, - F616C8F90200B0D001EF0ADE, - F616C8FA0200B0D001EF0ADE, - F616C8FB0200B0D001EF0ADE, - F616C8FC0200B0D001EF0ADE, - F616C8FD0200B0D001EF0ADE, - F616C8FE0200B0D001EF0ADE, - F616C8FF0200B0D001EF0ADE, - ); - isa = PBXGroup; - path = utilities; - refType = 4; - }; - F616C8CA0200B0D001EF0ADE = { - isa = PBXFileReference; - path = analyse.cpp; - refType = 4; - }; - F616C8CB0200B0D001EF0ADE = { - isa = PBXFileReference; - path = cache.cpp; - refType = 4; - }; - F616C8CC0200B0D001EF0ADE = { - isa = PBXFileReference; - path = cmd_util.cpp; - refType = 4; - }; - F616C8CD0200B0D001EF0ADE = { - isa = PBXFileReference; - path = cmd_util_proto.h; - refType = 4; - }; - F616C8CE0200B0D001EF0ADE = { - isa = PBXFileReference; - path = create_db.cpp; - refType = 4; - }; - F616C8CF0200B0D001EF0ADE = { - isa = PBXFileReference; - path = dba.epp; - refType = 4; - }; - F616C8D10200B0D001EF0ADE = { - isa = PBXFileReference; - path = dbaswi.h; - refType = 4; - }; - F616C8D20200B0D001EF0ADE = { - isa = PBXFileReference; - path = drop.cpp; - refType = 4; - }; - F616C8D30200B0D001EF0ADE = { - isa = PBXFileReference; - path = dropv3.cpp; - refType = 4; - }; - F616C8D40200B0D001EF0ADE = { - isa = PBXFileReference; - path = drpv3_proto.h; - refType = 4; - }; - F616C8D50200B0D001EF0ADE = { - isa = PBXFileReference; - path = gsec.cpp; - refType = 4; - }; - F616C8D60200B0D001EF0ADE = { - isa = PBXFileReference; - path = gsec.h; - refType = 4; - }; - F616C8D70200B0D001EF0ADE = { - isa = PBXFileReference; - path = gsecswi.h; - refType = 4; - }; - F616C8D80200B0D001EF0ADE = { - isa = PBXFileReference; - path = guard.cpp; - refType = 4; - }; - F616C8D90200B0D001EF0ADE = { - isa = PBXFileReference; - path = ibmgr.cpp; - refType = 4; - }; - F616C8DA0200B0D001EF0ADE = { - isa = PBXFileReference; - path = ibmgr.h; - refType = 4; - }; - F616C8DB0200B0D001EF0ADE = { - isa = PBXFileReference; - path = ibmgrswi.h; - refType = 4; - }; - F616C8DC0200B0D001EF0ADE = { - isa = PBXFileReference; - path = install_nt.h; - refType = 4; - }; - F616C8DD0200B0D001EF0ADE = { - isa = PBXFileReference; - path = install_reg.cpp; - refType = 4; - }; - F616C8DE0200B0D001EF0ADE = { - isa = PBXFileReference; - path = install_svc.cpp; - refType = 4; - }; - F616C8DF0200B0D001EF0ADE = { - isa = PBXFileReference; - path = isc.gdl; - refType = 4; - }; - F616C8E00200B0D001EF0ADE = { - isa = PBXFileReference; - path = isc4.gdl; - refType = 4; - }; - F616C8E10200B0D001EF0ADE = { - isa = PBXFileReference; - path = isc4.sql; - refType = 4; - }; - F616C8E30200B0D001EF0ADE = { - isa = PBXFileReference; - path = ppg.cpp; - refType = 4; - }; - F616C8E40200B0D001EF0ADE = { - isa = PBXFileReference; - path = ppg_proto.h; - refType = 4; - }; - F616C8E50200B0D001EF0ADE = { - isa = PBXFileReference; - path = print_pool.cpp; - refType = 4; - }; - F616C8E60200B0D001EF0ADE = { - isa = PBXFileReference; - path = rebui_proto.h; - refType = 4; - }; - F616C8E70200B0D001EF0ADE = { - isa = PBXFileReference; - path = rebuild.cpp; - refType = 4; - }; - F616C8E80200B0D001EF0ADE = { - isa = PBXFileReference; - path = rebuild.gdl; - refType = 4; - }; - F616C8E90200B0D001EF0ADE = { - isa = PBXFileReference; - path = rebuild.h; - refType = 4; - }; - F616C8EA0200B0D001EF0ADE = { - isa = PBXFileReference; - path = regis_proto.h; - refType = 4; - }; - F616C8EB0200B0D001EF0ADE = { - isa = PBXFileReference; - path = registry.cpp; - refType = 4; - }; - F616C8EC0200B0D001EF0ADE = { - isa = PBXFileReference; - path = relay.cpp; - refType = 4; - }; - F616C8ED0200B0D001EF0ADE = { - isa = PBXFileReference; - path = rmet.epp; - refType = 4; - }; - F616C8EE0200B0D001EF0ADE = { - isa = PBXFileReference; - path = rmet_proto.h; - refType = 4; - }; - F616C8EF0200B0D001EF0ADE = { - isa = PBXFileReference; - path = rstor_proto.h; - refType = 4; - }; - F616C8F00200B0D001EF0ADE = { - isa = PBXFileReference; - path = rstore.epp; - refType = 4; - }; - F616C8F10200B0D001EF0ADE = { - isa = PBXFileReference; - path = run_service.cpp; - refType = 4; - }; - F616C8F20200B0D001EF0ADE = { - isa = PBXFileReference; - path = sbc_print.cpp; - refType = 4; - }; - F616C8F30200B0D001EF0ADE = { - isa = PBXFileReference; - path = scrty_apollo.gdl; - refType = 4; - }; - F616C8F40200B0D001EF0ADE = { - isa = PBXFileReference; - path = scrty_unix.gdl; - refType = 4; - }; - F616C8F50200B0D001EF0ADE = { - isa = PBXFileReference; - path = scrty_vms.gdl; - refType = 4; - }; - F616C8F60200B0D001EF0ADE = { - isa = PBXFileReference; - path = scrty_xl.gdl; - refType = 4; - }; - F616C8F70200B0D001EF0ADE = { - isa = PBXFileReference; - path = secur_proto.h; - refType = 4; - }; - F616C8F80200B0D001EF0ADE = { - isa = PBXFileReference; - path = security.epp; - refType = 4; - }; - F616C8F90200B0D001EF0ADE = { - isa = PBXFileReference; - path = servi_proto.h; - refType = 4; - }; - F616C8FA0200B0D001EF0ADE = { - isa = PBXFileReference; - path = services.cpp; - refType = 4; - }; - F616C8FB0200B0D001EF0ADE = { - isa = PBXFileReference; - path = srvrmgr.cpp; - refType = 4; - }; - F616C8FC0200B0D001EF0ADE = { - isa = PBXFileReference; - path = srvrmgr_proto.h; - refType = 4; - }; - F616C8FD0200B0D001EF0ADE = { - isa = PBXFileReference; - path = util.cpp; - refType = 4; - }; - F616C8FE0200B0D001EF0ADE = { - isa = PBXFileReference; - path = util_proto.h; - refType = 4; - }; - F616C8FF0200B0D001EF0ADE = { - isa = PBXFileReference; - path = v2_dmp.cpp; - refType = 4; - }; - F616C9000200B0D001EF0ADE = { - children = ( - F616C9010200B0D001EF0ADE, - F616C9020200B0D001EF0ADE, - F616C9030200B0D001EF0ADE, - F616C9040200B0D001EF0ADE, - F616C9050200B0D001EF0ADE, - F616C9060200B0D001EF0ADE, - F616C9070200B0D001EF0ADE, - F616C9080200B0D001EF0ADE, - F616C9090200B0D001EF0ADE, - F616C90A0200B0D001EF0ADE, - F616C90B0200B0D001EF0ADE, - F616C90C0200B0D001EF0ADE, - F616C90D0200B0D001EF0ADE, - F616C90E0200B0D001EF0ADE, - F616C90F0200B0D001EF0ADE, - F616C9100200B0D001EF0ADE, - F616C9110200B0D001EF0ADE, - F616C9120200B0D001EF0ADE, - F616C9130200B0D001EF0ADE, - F616C9140200B0D001EF0ADE, - F616C9150200B0D001EF0ADE, - F616C9160200B0D001EF0ADE, - F616C9170200B0D001EF0ADE, - F616C9180200B0D001EF0ADE, - F616C9190200B0D001EF0ADE, - F616C91A0200B0D001EF0ADE, - F616C91B0200B0D001EF0ADE, - F616C91C0200B0D001EF0ADE, - F616C91D0200B0D001EF0ADE, - F616C91E0200B0D001EF0ADE, - F616C91F0200B0D001EF0ADE, - F616C9200200B0D001EF0ADE, - F616C9210200B0D001EF0ADE, - F616C9220200B0D001EF0ADE, - F616C9230200B0D001EF0ADE, - F616C9240200B0D001EF0ADE, - F616C9250200B0D001EF0ADE, - F616C9260200B0D001EF0ADE, - F616C9270200B0D001EF0ADE, - F616C9280200B0D001EF0ADE, - F616C9290200B0D001EF0ADE, - F616C92A0200B0D001EF0ADE, - F616C92B0200B0D001EF0ADE, - F616C92C0200B0D001EF0ADE, - F616C92D0200B0D001EF0ADE, - F616C92E0200B0D001EF0ADE, - F616C92F0200B0D001EF0ADE, - F616C9300200B0D001EF0ADE, - F616C9310200B0D001EF0ADE, - F616C9320200B0D001EF0ADE, - F616C9330200B0D001EF0ADE, - F616C9340200B0D001EF0ADE, - F616C9350200B0D001EF0ADE, - F616C9360200B0D001EF0ADE, - F616C9370200B0D001EF0ADE, - F616C9380200B0D001EF0ADE, - F616C9390200B0D001EF0ADE, - F616C93A0200B0D001EF0ADE, - F616C93B0200B0D001EF0ADE, - F616C93C0200B0D001EF0ADE, - F616C93D0200B0D001EF0ADE, - F616C93E0200B0D001EF0ADE, - F616C93F0200B0D001EF0ADE, - F616C9400200B0D001EF0ADE, - F616C9410200B0D001EF0ADE, - F616C9420200B0D001EF0ADE, - F616C9430200B0D001EF0ADE, - F616C9440200B0D001EF0ADE, - F616C9450200B0D001EF0ADE, - F616C9460200B0D001EF0ADE, - F616C9470200B0D001EF0ADE, - F616C9480200B0D001EF0ADE, - F616C9490200B0D001EF0ADE, - F616C94A0200B0D001EF0ADE, - F616C94B0200B0D001EF0ADE, - F616C94C0200B0D001EF0ADE, - F616C94D0200B0D001EF0ADE, - F616C94E0200B0D001EF0ADE, - F616C94F0200B0D001EF0ADE, - ); - isa = PBXGroup; - path = v5_examples; - refType = 4; - }; - F616C9010200B0D001EF0ADE = { - isa = PBXFileReference; - path = align.h; - refType = 4; - }; - F616C9020200B0D001EF0ADE = { - isa = PBXFileReference; - path = api1.c; - refType = 4; - }; - F616C9030200B0D001EF0ADE = { - isa = PBXFileReference; - path = api10.c; - refType = 4; - }; - F616C9040200B0D001EF0ADE = { - isa = PBXFileReference; - path = api11.c; - refType = 4; - }; - F616C9050200B0D001EF0ADE = { - isa = PBXFileReference; - path = api12.c; - refType = 4; - }; - F616C9060200B0D001EF0ADE = { - isa = PBXFileReference; - path = api13.c; - refType = 4; - }; - F616C9070200B0D001EF0ADE = { - isa = PBXFileReference; - path = api14.e; - refType = 4; - }; - F616C9080200B0D001EF0ADE = { - isa = PBXFileReference; - path = api15.c; - refType = 4; - }; - F616C9090200B0D001EF0ADE = { - isa = PBXFileReference; - path = api16.c; - refType = 4; - }; - F616C90A0200B0D001EF0ADE = { - isa = PBXFileReference; - path = api16t.c; - refType = 4; - }; - F616C90B0200B0D001EF0ADE = { - isa = PBXFileReference; - path = api2.c; - refType = 4; - }; - F616C90C0200B0D001EF0ADE = { - isa = PBXFileReference; - path = api3.c; - refType = 4; - }; - F616C90D0200B0D001EF0ADE = { - isa = PBXFileReference; - path = api4.c; - refType = 4; - }; - F616C90E0200B0D001EF0ADE = { - isa = PBXFileReference; - path = api5.c; - refType = 4; - }; - F616C90F0200B0D001EF0ADE = { - isa = PBXFileReference; - path = api6.c; - refType = 4; - }; - F616C9100200B0D001EF0ADE = { - isa = PBXFileReference; - path = api7.c; - refType = 4; - }; - F616C9110200B0D001EF0ADE = { - isa = PBXFileReference; - path = api8.c; - refType = 4; - }; - F616C9120200B0D001EF0ADE = { - isa = PBXFileReference; - path = api9.c; - refType = 4; - }; - F616C9130200B0D001EF0ADE = { - isa = PBXFileReference; - path = api9f.c; - refType = 4; - }; - F616C9140200B0D001EF0ADE = { - isa = PBXFileReference; - path = api9f.def; - refType = 4; - }; - F616C9150200B0D001EF0ADE = { - isa = PBXFileReference; - path = api9f.sql; - refType = 4; - }; - F616C9160200B0D001EF0ADE = { - isa = PBXFileReference; - path = apifull.c; - refType = 4; - }; - F616C9170200B0D001EF0ADE = { - isa = PBXFileReference; - path = dyn1.e; - refType = 4; - }; - F616C9180200B0D001EF0ADE = { - isa = PBXFileReference; - path = dyn2.e; - refType = 4; - }; - F616C9190200B0D001EF0ADE = { - isa = PBXFileReference; - path = dyn3.e; - refType = 4; - }; - F616C91A0200B0D001EF0ADE = { - isa = PBXFileReference; - path = dyn4.e; - refType = 4; - }; - F616C91B0200B0D001EF0ADE = { - isa = PBXFileReference; - path = dyn5.e; - refType = 4; - }; - F616C91C0200B0D001EF0ADE = { - isa = PBXFileReference; - path = dynfull.e; - refType = 4; - }; - F616C91D0200B0D001EF0ADE = { - isa = PBXFileReference; - path = empbld.sql; - refType = 4; - }; - F616C91E0200B0D001EF0ADE = { - isa = PBXFileReference; - path = empbuild.cpp; - refType = 4; - }; - F616C91F0200B0D001EF0ADE = { - isa = PBXFileReference; - path = empbuild.epp; - refType = 4; - }; - F616C9200200B0D001EF0ADE = { - isa = PBXFileReference; - path = empddl.sql; - refType = 4; - }; - F616C9210200B0D001EF0ADE = { - isa = PBXFileReference; - path = empdml.sql; - refType = 4; - }; - F616C9220200B0D001EF0ADE = { - isa = PBXFileReference; - path = employe2.sql; - refType = 4; - }; - F616C9230200B0D001EF0ADE = { - isa = PBXFileReference; - path = example.def; - refType = 4; - }; - F616C9240200B0D001EF0ADE = { - isa = PBXFileReference; - path = example.h; - refType = 4; - }; - F616C9250200B0D001EF0ADE = { - isa = PBXFileReference; - path = example.mak; - refType = 4; - }; - F616C9270200B0D001EF0ADE = { - isa = PBXFileReference; - path = indexoff.sql; - refType = 4; - }; - F616C9280200B0D001EF0ADE = { - isa = PBXFileReference; - path = indexon.sql; - refType = 4; - }; - F616C9290200B0D001EF0ADE = { - isa = PBXFileReference; - path = intlbld.e; - refType = 4; - }; - F616C92A0200B0D001EF0ADE = { - isa = PBXFileReference; - path = intlbld.sql; - refType = 4; - }; - F616C92B0200B0D001EF0ADE = { - isa = PBXFileReference; - path = intlddl.sql; - refType = 4; - }; - F616C92C0200B0D001EF0ADE = { - isa = PBXFileReference; - path = intldml.sql; - refType = 4; - }; - F616C92D0200B0D001EF0ADE = { - isa = PBXFileReference; - path = job.inp; - refType = 4; - }; - F616C92E0200B0D001EF0ADE = { - isa = PBXFileReference; - path = lang.inp; - refType = 4; - }; - F616C92F0200B0D001EF0ADE = { - isa = PBXFileReference; - path = Makefile; - refType = 4; - }; - F616C9300200B0D001EF0ADE = { - isa = PBXFileReference; - path = makefile.mak; - refType = 4; - }; - F616C9310200B0D001EF0ADE = { - isa = PBXFileReference; - path = makefile.old; - refType = 4; - }; - F616C9320200B0D001EF0ADE = { - isa = PBXFileReference; - path = prefix.hp10; - refType = 4; - }; - F616C9330200B0D001EF0ADE = { - isa = PBXFileReference; - path = prefix.linux; - refType = 4; - }; - F616C9340200B0D001EF0ADE = { - isa = PBXFileReference; - path = prefix.sco_ev; - refType = 4; - }; - F616C9350200B0D001EF0ADE = { - isa = PBXFileReference; - path = prefix.solaris; - refType = 4; - }; - F616C9360200B0D001EF0ADE = { - isa = PBXFileReference; - path = prefix.win32_bc; - refType = 4; - }; - F616C9370200B0D001EF0ADE = { - isa = PBXFileReference; - path = prefix.win32_msc; - refType = 4; - }; - F616C9380200B0D001EF0ADE = { - isa = PBXFileReference; - path = proj.inp; - refType = 4; - }; - F616C9390200B0D001EF0ADE = { - isa = PBXFileReference; - path = qtr.inp; - refType = 4; - }; - F616C93A0200B0D001EF0ADE = { - isa = PBXFileReference; - path = readme; - refType = 4; - }; - F616C93B0200B0D001EF0ADE = { - isa = PBXFileReference; - path = sfx.unix_makefile; - refType = 4; - }; - F616C93C0200B0D001EF0ADE = { - isa = PBXFileReference; - path = sfx.win32_makefile; - refType = 4; - }; - F616C93D0200B0D001EF0ADE = { - isa = PBXFileReference; - path = stat1.e; - refType = 4; - }; - F616C93E0200B0D001EF0ADE = { - isa = PBXFileReference; - path = stat10.e; - refType = 4; - }; - F616C93F0200B0D001EF0ADE = { - isa = PBXFileReference; - path = stat11.e; - refType = 4; - }; - F616C9400200B0D001EF0ADE = { - isa = PBXFileReference; - path = stat12.e; - refType = 4; - }; - F616C9410200B0D001EF0ADE = { - isa = PBXFileReference; - path = stat12t.e; - refType = 4; - }; - F616C9420200B0D001EF0ADE = { - isa = PBXFileReference; - path = stat2.e; - refType = 4; - }; - F616C9430200B0D001EF0ADE = { - isa = PBXFileReference; - path = stat3.e; - refType = 4; - }; - F616C9440200B0D001EF0ADE = { - isa = PBXFileReference; - path = stat4.e; - refType = 4; - }; - F616C9450200B0D001EF0ADE = { - isa = PBXFileReference; - path = stat5.e; - refType = 4; - }; - F616C9460200B0D001EF0ADE = { - isa = PBXFileReference; - path = stat6.e; - refType = 4; - }; - F616C9470200B0D001EF0ADE = { - isa = PBXFileReference; - path = stat7.e; - refType = 4; - }; - F616C9480200B0D001EF0ADE = { - isa = PBXFileReference; - path = stat8.e; - refType = 4; - }; - F616C9490200B0D001EF0ADE = { - isa = PBXFileReference; - path = stat9.e; - refType = 4; - }; - F616C94A0200B0D001EF0ADE = { - isa = PBXFileReference; - path = udf.sql; - refType = 4; - }; - F616C94B0200B0D001EF0ADE = { - isa = PBXFileReference; - path = udflib.c; - refType = 4; - }; - F616C94C0200B0D001EF0ADE = { - isa = PBXFileReference; - path = udflib.def; - refType = 4; - }; - F616C94D0200B0D001EF0ADE = { - isa = PBXFileReference; - path = winevent.c; - refType = 4; - }; - F616C94E0200B0D001EF0ADE = { - isa = PBXFileReference; - path = winevent.def; - refType = 4; - }; - F616C94F0200B0D001EF0ADE = { - isa = PBXFileReference; - path = winevent.rc; - refType = 4; - }; - F616C9500200B0D001EF0ADE = { - children = ( - F616C9510200B0D001EF0ADE, - F616C9530200B0D001EF0ADE, - F616C9540200B0D001EF0ADE, - F616C9550200B0D001EF0ADE, - F616C9560200B0D001EF0ADE, - F616C9570200B0D001EF0ADE, - F616C9580200B0D001EF0ADE, - F616C9590200B0D001EF0ADE, - F616C95A0200B0D001EF0ADE, - F616C95B0200B0D001EF0ADE, - F616C95C0200B0D001EF0ADE, - F616C95D0200B0D001EF0ADE, - F616C95E0200B0D001EF0ADE, - F616C95F0200B0D001EF0ADE, - F616C9600200B0D001EF0ADE, - F616C9610200B0D001EF0ADE, - ); - isa = PBXGroup; - path = wal; - refType = 4; - }; - F616C9510200B0D001EF0ADE = { - isa = PBXFileReference; - path = driver.cpp; - refType = 4; - }; - F616C9530200B0D001EF0ADE = { - isa = PBXFileReference; - path = wal.cpp; - refType = 4; - }; - F616C9540200B0D001EF0ADE = { - isa = PBXFileReference; - path = wal.h; - refType = 4; - }; - F616C9550200B0D001EF0ADE = { - isa = PBXFileReference; - path = wal_prnt.cpp; - refType = 4; - }; - F616C9560200B0D001EF0ADE = { - isa = PBXFileReference; - path = wal_proto.h; - refType = 4; - }; - F616C9570200B0D001EF0ADE = { - isa = PBXFileReference; - path = walc.cpp; - refType = 4; - }; - F616C9580200B0D001EF0ADE = { - isa = PBXFileReference; - path = walc_proto.h; - refType = 4; - }; - F616C9590200B0D001EF0ADE = { - isa = PBXFileReference; - path = walf.cpp; - refType = 4; - }; - F616C95A0200B0D001EF0ADE = { - isa = PBXFileReference; - path = walf_proto.h; - refType = 4; - }; - F616C95B0200B0D001EF0ADE = { - isa = PBXFileReference; - path = walr.cpp; - refType = 4; - }; - F616C95C0200B0D001EF0ADE = { - isa = PBXFileReference; - path = walr_proto.h; - refType = 4; - }; - F616C95D0200B0D001EF0ADE = { - isa = PBXFileReference; - path = walw.cpp; - refType = 4; - }; - F616C95E0200B0D001EF0ADE = { - isa = PBXFileReference; - path = walw_main.cpp; - refType = 4; - }; - F616C95F0200B0D001EF0ADE = { - isa = PBXFileReference; - path = walw_proto.h; - refType = 4; - }; - F616C9600200B0D001EF0ADE = { - isa = PBXFileReference; - path = wstat_proto.h; - refType = 4; - }; - F616C9610200B0D001EF0ADE = { - isa = PBXFileReference; - path = wstatus.cpp; - refType = 4; - }; - F616C9770200B0D001EF0ADE = { - fileRef = F616C3A00200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9780200B0D001EF0ADE = { - fileRef = F616C3A30200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9820200B0D001EF0ADE = { - fileRef = F616C3B70200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9830200B0D001EF0ADE = { - fileRef = F616C3B90200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9840200B0D001EF0ADE = { - fileRef = F616C3BB0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9850200B0D001EF0ADE = { - fileRef = F616C3BC0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9860200B0D001EF0ADE = { - fileRef = F616C3BE0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9870200B0D001EF0ADE = { - fileRef = F616C3BF0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9880200B0D001EF0ADE = { - fileRef = F616C3C10200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9890200B0D001EF0ADE = { - fileRef = F616C3C50200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C98A0200B0D001EF0ADE = { - fileRef = F616C3C60200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C98B0200B0D001EF0ADE = { - fileRef = F616C3C80200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C98C0200B0D001EF0ADE = { - fileRef = F616C3CA0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C98D0200B0D001EF0ADE = { - fileRef = F616C3CC0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C98E0200B0D001EF0ADE = { - fileRef = F616C3CD0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C98F0200B0D001EF0ADE = { - fileRef = F616C3CF0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9900200B0D001EF0ADE = { - fileRef = F616C3D30200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9910200B0D001EF0ADE = { - fileRef = F616C3D50200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9920200B0D001EF0ADE = { - fileRef = F616C3D60200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9930200B0D001EF0ADE = { - fileRef = F616C3DB0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9940200B0D001EF0ADE = { - fileRef = F616C3DD0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9950200B0D001EF0ADE = { - fileRef = F616C3DE0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9960200B0D001EF0ADE = { - fileRef = F616C3E00200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9970200B0D001EF0ADE = { - fileRef = F616C3E10200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9980200B0D001EF0ADE = { - fileRef = F616C3E20200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9990200B0D001EF0ADE = { - fileRef = F616C3E50200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9A80200B0D001EF0ADE = { - fileRef = F616C40A0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9A90200B0D001EF0ADE = { - fileRef = F616C40C0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9C10200B0D001EF0ADE = { - fileRef = F616C4410200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9C60200B0D001EF0ADE = { - fileRef = F616C44A0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9C70200B0D001EF0ADE = { - fileRef = F616C44B0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9C80200B0D001EF0ADE = { - fileRef = F616C44C0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9C90200B0D001EF0ADE = { - fileRef = F616C44D0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9CA0200B0D001EF0ADE = { - fileRef = F616C44E0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9CB0200B0D001EF0ADE = { - fileRef = F616C44F0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9CC0200B0D001EF0ADE = { - fileRef = F616C4500200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9CD0200B0D001EF0ADE = { - fileRef = F616C4510200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9CE0200B0D001EF0ADE = { - fileRef = F616C4520200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9CF0200B0D001EF0ADE = { - fileRef = F616C4540200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9D00200B0D001EF0ADE = { - fileRef = F616C4550200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9D10200B0D001EF0ADE = { - fileRef = F616C4560200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9D20200B0D001EF0ADE = { - fileRef = F616C4570200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9D30200B0D001EF0ADE = { - fileRef = F616C4580200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9D40200B0D001EF0ADE = { - fileRef = F616C45C0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - ATTRIBUTES = ( - Public, - ); - }; - }; - F616C9D50200B0D001EF0ADE = { - fileRef = F616C45D0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9D60200B0D001EF0ADE = { - fileRef = F616C45E0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9D70200B0D001EF0ADE = { - fileRef = F616C45F0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9D80200B0D001EF0ADE = { - fileRef = F616C4600200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9D90200B0D001EF0ADE = { - fileRef = F616C4620200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616C9DB0200B0D001EF0ADE = { - fileRef = F616C4650200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - ATTRIBUTES = ( - ); - }; - }; - F616CA610200B0D001EF0ADE = { - fileRef = F616C55F0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA630200B0D001EF0ADE = { - fileRef = F616C5630200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA650200B0D001EF0ADE = { - fileRef = F616C5670200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA670200B0D001EF0ADE = { - fileRef = F616C56A0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA6E0200B0D001EF0ADE = { - fileRef = F616C5790200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA6F0200B0D001EF0ADE = { - fileRef = F616C57A0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA700200B0D001EF0ADE = { - fileRef = F616C57B0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA710200B0D001EF0ADE = { - fileRef = F616C57C0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA720200B0D001EF0ADE = { - fileRef = F616C57E0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA730200B0D001EF0ADE = { - fileRef = F616C57F0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA740200B0D001EF0ADE = { - fileRef = F616C5800200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA750200B0D001EF0ADE = { - fileRef = F616C5810200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA770200B0D001EF0ADE = { - fileRef = F616C5850200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA7F0200B0D001EF0ADE = { - fileRef = F616C5900200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA800200B0D001EF0ADE = { - fileRef = F616C5910200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA810200B0D001EF0ADE = { - fileRef = F616C5920200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA820200B0D001EF0ADE = { - fileRef = F616C5950200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA830200B0D001EF0ADE = { - fileRef = F616C5960200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA840200B0D001EF0ADE = { - fileRef = F616C5970200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA850200B0D001EF0ADE = { - fileRef = F616C5990200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA860200B0D001EF0ADE = { - fileRef = F616C59B0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA870200B0D001EF0ADE = { - fileRef = F616C59C0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA880200B0D001EF0ADE = { - fileRef = F616C59F0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA890200B0D001EF0ADE = { - fileRef = F616C5A00200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA8A0200B0D001EF0ADE = { - fileRef = F616C5A20200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA8B0200B0D001EF0ADE = { - fileRef = F616C5A30200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA8C0200B0D001EF0ADE = { - fileRef = F616C5A70200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA8D0200B0D001EF0ADE = { - fileRef = F616C5A90200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA8E0200B0D001EF0ADE = { - fileRef = F616C5AB0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA8F0200B0D001EF0ADE = { - fileRef = F616C5AE0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA920200B0D001EF0ADE = { - fileRef = F616C5B30200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA930200B0D001EF0ADE = { - fileRef = F616C5B40200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA940200B0D001EF0ADE = { - fileRef = F616C5B60200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA950200B0D001EF0ADE = { - fileRef = F616C5B70200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA960200B0D001EF0ADE = { - fileRef = F616C5B90200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA970200B0D001EF0ADE = { - fileRef = F616C5BD0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA980200B0D001EF0ADE = { - fileRef = F616C5BE0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA990200B0D001EF0ADE = { - fileRef = F616C5BF0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA9A0200B0D001EF0ADE = { - fileRef = F616C5C10200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA9B0200B0D001EF0ADE = { - fileRef = F616C5C20200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA9C0200B0D001EF0ADE = { - fileRef = F616C5C50200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA9D0200B0D001EF0ADE = { - fileRef = F616C5C60200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA9E0200B0D001EF0ADE = { - fileRef = F616C5C90200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CA9F0200B0D001EF0ADE = { - fileRef = F616C5CB0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAA00200B0D001EF0ADE = { - fileRef = F616C5CC0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAA10200B0D001EF0ADE = { - fileRef = F616C5CD0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAA20200B0D001EF0ADE = { - fileRef = F616C5D00200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAA30200B0D001EF0ADE = { - fileRef = F616C5D20200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAA40200B0D001EF0ADE = { - fileRef = F616C5D30200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAA50200B0D001EF0ADE = { - fileRef = F616C5D50200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAA60200B0D001EF0ADE = { - fileRef = F616C5D60200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAA70200B0D001EF0ADE = { - fileRef = F616C5D80200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAA80200B0D001EF0ADE = { - fileRef = F616C5D90200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAA90200B0D001EF0ADE = { - fileRef = F616C5DA0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAAA0200B0D001EF0ADE = { - fileRef = F616C5DB0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAAB0200B0D001EF0ADE = { - fileRef = F616C5DD0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAAC0200B0D001EF0ADE = { - fileRef = F616C5DF0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAAD0200B0D001EF0ADE = { - fileRef = F616C5E00200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAAE0200B0D001EF0ADE = { - fileRef = F616C5E20200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAAF0200B0D001EF0ADE = { - fileRef = F616C5E70200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAB00200B0D001EF0ADE = { - fileRef = F616C5E80200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - ATTRIBUTES = ( - Public, - ); - }; - }; - F616CAB10200B0D001EF0ADE = { - fileRef = F616C5F10200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAB20200B0D001EF0ADE = { - fileRef = F616C5F40200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAB30200B0D001EF0ADE = { - fileRef = F616C5F60200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAB40200B0D001EF0ADE = { - fileRef = F616C5FB0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAB50200B0D001EF0ADE = { - fileRef = F616C5FD0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAB60200B0D001EF0ADE = { - fileRef = F616C5FE0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - ATTRIBUTES = ( - Public, - ); - }; - }; - F616CAB70200B0D001EF0ADE = { - fileRef = F616C6000200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAB80200B0D001EF0ADE = { - fileRef = F616C6010200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAB90200B0D001EF0ADE = { - fileRef = F616C6030200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CABA0200B0D001EF0ADE = { - fileRef = F616C6040200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CABB0200B0D001EF0ADE = { - fileRef = F616C6070200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CABC0200B0D001EF0ADE = { - fileRef = F616C6080200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CABD0200B0D001EF0ADE = { - fileRef = F616C60A0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CABE0200B0D001EF0ADE = { - fileRef = F616C60B0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CABF0200B0D001EF0ADE = { - fileRef = F616C60D0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAC00200B0D001EF0ADE = { - fileRef = F616C60E0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAC10200B0D001EF0ADE = { - fileRef = F616C6100200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAC20200B0D001EF0ADE = { - fileRef = F616C6110200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAC30200B0D001EF0ADE = { - fileRef = F616C6120200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAC40200B0D001EF0ADE = { - fileRef = F616C6130200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAC50200B0D001EF0ADE = { - fileRef = F616C6150200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAC60200B0D001EF0ADE = { - fileRef = F616C6160200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAC70200B0D001EF0ADE = { - fileRef = F616C6180200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAC80200B0D001EF0ADE = { - fileRef = F616C61A0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAC90200B0D001EF0ADE = { - fileRef = F616C61C0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CACA0200B0D001EF0ADE = { - fileRef = F616C61E0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CACB0200B0D001EF0ADE = { - fileRef = F616C61F0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CACC0200B0D001EF0ADE = { - fileRef = F616C6200200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CACD0200B0D001EF0ADE = { - fileRef = F616C62B0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CACE0200B0D001EF0ADE = { - fileRef = F616C62D0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CACF0200B0D001EF0ADE = { - fileRef = F616C62E0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAD00200B0D001EF0ADE = { - fileRef = F616C62F0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAD10200B0D001EF0ADE = { - fileRef = F616C6320200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAD20200B0D001EF0ADE = { - fileRef = F616C6330200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAD50200B0D001EF0ADE = { - fileRef = F616C6390200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAD60200B0D001EF0ADE = { - fileRef = F616C63B0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAD70200B0D001EF0ADE = { - fileRef = F616C63C0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAD80200B0D001EF0ADE = { - fileRef = F616C63E0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAD90200B0D001EF0ADE = { - fileRef = F616C63F0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CADA0200B0D001EF0ADE = { - fileRef = F616C6400200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CADB0200B0D001EF0ADE = { - fileRef = F616C6410200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CADC0200B0D001EF0ADE = { - fileRef = F616C6430200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CADD0200B0D001EF0ADE = { - fileRef = F616C6440200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAE30200B0D001EF0ADE = { - fileRef = F616C6530200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAE40200B0D001EF0ADE = { - fileRef = F616C6540200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAE50200B0D001EF0ADE = { - fileRef = F616C6560200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAE60200B0D001EF0ADE = { - fileRef = F616C6570200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAE70200B0D001EF0ADE = { - fileRef = F616C65A0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAE80200B0D001EF0ADE = { - fileRef = F616C65B0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAE90200B0D001EF0ADE = { - fileRef = F616C65C0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAEA0200B0D001EF0ADE = { - fileRef = F616C65D0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAEB0200B0D001EF0ADE = { - fileRef = F616C65F0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAEC0200B0D001EF0ADE = { - fileRef = F616C6610200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAED0200B0D001EF0ADE = { - fileRef = F616C6620200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAEE0200B0D001EF0ADE = { - fileRef = F616C6640200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAEF0200B0D001EF0ADE = { - fileRef = F616C6650200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAF00200B0D001EF0ADE = { - fileRef = F616C66D0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAF10200B0D001EF0ADE = { - fileRef = F616C66E0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAF20200B0D001EF0ADE = { - fileRef = F616C6700200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAF30200B0D001EF0ADE = { - fileRef = F616C6740200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAF40200B0D001EF0ADE = { - fileRef = F616C6750200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAF50200B0D001EF0ADE = { - fileRef = F616C67A0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAF60200B0D001EF0ADE = { - fileRef = F616C67B0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAF70200B0D001EF0ADE = { - fileRef = F616C67D0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAF90200B0D001EF0ADE = { - fileRef = F616C6820200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - ATTRIBUTES = ( - Public, - ); - }; - }; - F616CAFA0200B0D001EF0ADE = { - fileRef = F616C6840200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAFB0200B0D001EF0ADE = { - fileRef = F616C6850200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAFC0200B0D001EF0ADE = { - fileRef = F616C6860200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAFD0200B0D001EF0ADE = { - fileRef = F616C6880200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAFE0200B0D001EF0ADE = { - fileRef = F616C6890200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CAFF0200B0D001EF0ADE = { - fileRef = F616C68C0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB040200B0D001EF0ADE = { - fileRef = F616C6940200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB050200B0D001EF0ADE = { - fileRef = F616C6960200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB070200B0D001EF0ADE = { - fileRef = F616C6980200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB080200B0D001EF0ADE = { - fileRef = F616C69E0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB090200B0D001EF0ADE = { - fileRef = F616C69F0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB0A0200B0D001EF0ADE = { - fileRef = F616C6A00200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB0B0200B0D001EF0ADE = { - fileRef = F616C6A20200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB0C0200B0D001EF0ADE = { - fileRef = F616C6A40200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB0D0200B0D001EF0ADE = { - fileRef = F616C6A50200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB0E0200B0D001EF0ADE = { - fileRef = F616C6A70200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB0F0200B0D001EF0ADE = { - fileRef = F616C6A80200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB100200B0D001EF0ADE = { - fileRef = F616C6AA0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB110200B0D001EF0ADE = { - fileRef = F616C6AB0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB120200B0D001EF0ADE = { - fileRef = F616C6AD0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB130200B0D001EF0ADE = { - fileRef = F616C6AF0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB140200B0D001EF0ADE = { - fileRef = F616C6B00200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB150200B0D001EF0ADE = { - fileRef = F616C6B10200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB160200B0D001EF0ADE = { - fileRef = F616C6B30200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB170200B0D001EF0ADE = { - fileRef = F616C6B40200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB180200B0D001EF0ADE = { - fileRef = F616C6B60200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB190200B0D001EF0ADE = { - fileRef = F616C6B70200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB1B0200B0D001EF0ADE = { - fileRef = F616C6BC0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB1C0200B0D001EF0ADE = { - fileRef = F616C6BD0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB1D0200B0D001EF0ADE = { - fileRef = F616C6BE0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB1E0200B0D001EF0ADE = { - fileRef = F616C6C00200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB1F0200B0D001EF0ADE = { - fileRef = F616C6C10200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB200200B0D001EF0ADE = { - fileRef = F616C6C30200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB210200B0D001EF0ADE = { - fileRef = F616C6C40200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB220200B0D001EF0ADE = { - fileRef = F616C6C70200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB230200B0D001EF0ADE = { - fileRef = F616C6CC0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB240200B0D001EF0ADE = { - fileRef = F616C6CD0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB250200B0D001EF0ADE = { - fileRef = F616C6CE0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB260200B0D001EF0ADE = { - fileRef = F616C6CF0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB270200B0D001EF0ADE = { - fileRef = F616C6D10200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB280200B0D001EF0ADE = { - fileRef = F616C6D20200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB290200B0D001EF0ADE = { - fileRef = F616C6D40200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB2A0200B0D001EF0ADE = { - fileRef = F616C6D50200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB2B0200B0D001EF0ADE = { - fileRef = F616C6D90200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB2C0200B0D001EF0ADE = { - fileRef = F616C6DB0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB2D0200B0D001EF0ADE = { - fileRef = F616C6DC0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB2E0200B0D001EF0ADE = { - fileRef = F616C6DE0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB2F0200B0D001EF0ADE = { - fileRef = F616C6DF0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB300200B0D001EF0ADE = { - fileRef = F616C6E00200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB310200B0D001EF0ADE = { - fileRef = F616C6E10200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB320200B0D001EF0ADE = { - fileRef = F616C6E40200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB330200B0D001EF0ADE = { - fileRef = F616C6E80200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB340200B0D001EF0ADE = { - fileRef = F616C6E90200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB360200B0D001EF0ADE = { - fileRef = F616C6EE0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CB390200B0D001EF0ADE = { - fileRef = F616C6F70200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CDB60200B0D101EF0ADE = { - fileRef = F616C39F0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CDB70200B0D101EF0ADE = { - fileRef = F616C3A20200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CDBD0200B0D101EF0ADE = { - fileRef = F616C3B80200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CDBE0200B0D101EF0ADE = { - fileRef = F616C3C00200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CDBF0200B0D101EF0ADE = { - fileRef = F616C3C30200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CDC00200B0D101EF0ADE = { - fileRef = F616C3C70200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CDC10200B0D101EF0ADE = { - fileRef = F616C3C90200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CDC20200B0D101EF0ADE = { - fileRef = F616C3CB0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CDC30200B0D101EF0ADE = { - fileRef = F616C3CE0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CDC40200B0D101EF0ADE = { - fileRef = F616C3D40200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CDC70200B0D101EF0ADE = { - fileRef = F616C3DC0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CDC80200B0D101EF0ADE = { - fileRef = F616C3DF0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CDC90200B0D101EF0ADE = { - fileRef = F616C3E30200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CDCA0200B0D101EF0ADE = { - fileRef = F616C3E40200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CDD50200B0D101EF0ADE = { - fileRef = F616C4090200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CDD60200B0D101EF0ADE = { - fileRef = F616C40B0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CDEF0200B0D101EF0ADE = { - fileRef = F616C4420200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE1F0200B0D101EF0ADE = { - fileRef = F616C5620200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE210200B0D101EF0ADE = { - fileRef = F616C5660200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE230200B0D101EF0ADE = { - fileRef = F616C56B0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE280200B0D101EF0ADE = { - fileRef = F616C5780200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE2A0200B0D101EF0ADE = { - fileRef = F616C5840200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE2B0200B0D101EF0ADE = { - fileRef = F616C58F0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE2C0200B0D101EF0ADE = { - fileRef = F616C5930200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE2D0200B0D101EF0ADE = { - fileRef = F616C5940200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE2E0200B0D101EF0ADE = { - fileRef = F616C5980200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE2F0200B0D101EF0ADE = { - fileRef = F616C59D0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE300200B0D101EF0ADE = { - fileRef = F616C59E0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE320200B0D101EF0ADE = { - fileRef = F616C5A40200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE340200B0D101EF0ADE = { - fileRef = F616C5AA0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE360200B0D101EF0ADE = { - fileRef = F616C5AD0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE380200B0D101EF0ADE = { - fileRef = F616C5B50200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE390200B0D101EF0ADE = { - fileRef = F616C5C40200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE3A0200B0D101EF0ADE = { - fileRef = F616C5C80200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE3B0200B0D101EF0ADE = { - fileRef = F616C5CA0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE3C0200B0D101EF0ADE = { - fileRef = F616C5CE0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE3D0200B0D101EF0ADE = { - fileRef = F616C5CF0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE3E0200B0D101EF0ADE = { - fileRef = F616C5D10200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE3F0200B0D101EF0ADE = { - fileRef = F616C5D40200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE410200B0D101EF0ADE = { - fileRef = F616C5DC0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE420200B0D101EF0ADE = { - fileRef = F616C5DE0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE430200B0D101EF0ADE = { - fileRef = F616C5E30200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE440200B0D101EF0ADE = { - fileRef = F616C5E50200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE480200B0D101EF0ADE = { - fileRef = F616C5FF0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE4B0200B0D101EF0ADE = { - fileRef = F616C6060200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE4C0200B0D101EF0ADE = { - fileRef = F616C6090200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE4D0200B0D101EF0ADE = { - fileRef = F616C60F0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE4E0200B0D101EF0ADE = { - fileRef = F616C6140200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE4F0200B0D101EF0ADE = { - fileRef = F616C6170200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE510200B0D101EF0ADE = { - fileRef = F616C61B0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE520200B0D101EF0ADE = { - fileRef = F616C61D0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE530200B0D101EF0ADE = { - fileRef = F616C6210200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE580200B0D101EF0ADE = { - fileRef = F616C6290200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE5A0200B0D101EF0ADE = { - fileRef = F616C6310200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE5D0200B0D101EF0ADE = { - fileRef = F616C6380200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE5F0200B0D101EF0ADE = { - fileRef = F616C63D0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE600200B0D101EF0ADE = { - fileRef = F616C6420200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE670200B0D101EF0ADE = { - fileRef = F616C6550200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE680200B0D101EF0ADE = { - fileRef = F616C6590200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE690200B0D101EF0ADE = { - fileRef = F616C65E0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE6B0200B0D101EF0ADE = { - fileRef = F616C6630200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE6C0200B0D101EF0ADE = { - fileRef = F616C66C0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE6D0200B0D101EF0ADE = { - fileRef = F616C66F0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE6E0200B0D101EF0ADE = { - fileRef = F616C6730200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE6F0200B0D101EF0ADE = { - fileRef = F616C6770200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE710200B0D101EF0ADE = { - fileRef = F616C6790200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE720200B0D101EF0ADE = { - fileRef = F616C67C0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE740200B0D101EF0ADE = { - fileRef = F616C6810200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE750200B0D101EF0ADE = { - fileRef = F616C6870200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE7D0200B0D101EF0ADE = { - fileRef = F616C69D0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE7E0200B0D101EF0ADE = { - fileRef = F616C6A10200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE7F0200B0D101EF0ADE = { - fileRef = F616C6A30200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE800200B0D101EF0ADE = { - fileRef = F616C6A60200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE810200B0D101EF0ADE = { - fileRef = F616C6A90200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE820200B0D101EF0ADE = { - fileRef = F616C6AC0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE830200B0D101EF0ADE = { - fileRef = F616C6B20200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE840200B0D101EF0ADE = { - fileRef = F616C6B50200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE870200B0D101EF0ADE = { - fileRef = F616C6BB0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE880200B0D101EF0ADE = { - fileRef = F616C6BF0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE890200B0D101EF0ADE = { - fileRef = F616C6C20200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE8A0200B0D101EF0ADE = { - fileRef = F616C6C60200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE8D0200B0D101EF0ADE = { - fileRef = F616C6CB0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE8E0200B0D101EF0ADE = { - fileRef = F616C6D00200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE8F0200B0D101EF0ADE = { - fileRef = F616C6D30200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE910200B0D101EF0ADE = { - fileRef = F616C6DA0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE920200B0D101EF0ADE = { - fileRef = F616C6DD0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE930200B0D101EF0ADE = { - fileRef = F616C6E20200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE940200B0D101EF0ADE = { - fileRef = F616C6E30200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE950200B0D101EF0ADE = { - fileRef = F616C6E70200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CE960200B0D101EF0ADE = { - fileRef = F616C6EC0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CEA00200B0D101EF0ADE = { - fileRef = F616C6FB0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CF240200B13D01EF0ADE = { - children = ( - F616CF250200B13D01EF0ADE, - F616CF260200B13D01EF0ADE, - ); - isa = PBXGroup; - name = "PB Specific"; - refType = 4; - }; - F616CF250200B13D01EF0ADE = { - isa = PBXFileReference; - path = stlport_vars.cpp; - refType = 4; - }; - F616CF260200B13D01EF0ADE = { - isa = PBXFileReference; - path = stub.c; - refType = 4; - }; - F616CF270200B13E01EF0ADE = { - fileRef = F616CF250200B13D01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CF280200B14001EF0ADE = { - fileRef = F616CF250200B13D01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CF290200B14001EF0ADE = { - fileRef = F616CF260200B13D01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CF2B0200B1BE01EF0ADE = { - fileRef = F616C4290200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CF2C0200B1BE01EF0ADE = { - fileRef = F616C4120200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CF2D0200B1BE01EF0ADE = { - fileRef = F616C4140200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CF2E0200B1BE01EF0ADE = { - fileRef = F616C4160200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CF2F0200B1BE01EF0ADE = { - fileRef = F616C41D0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CF300200B1BE01EF0ADE = { - fileRef = F616C4250200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CF310200B1BE01EF0ADE = { - fileRef = F616C42C0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CF320200B1BE01EF0ADE = { - fileRef = F616C42F0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CF330200B1BE01EF0ADE = { - fileRef = F616C4300200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CF340200B1BE01EF0ADE = { - fileRef = F616C4320200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CF350200B1BE01EF0ADE = { - fileRef = F616C4350200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CF360200B1BE01EF0ADE = { - fileRef = F616C4370200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CF370200B1BE01EF0ADE = { - fileRef = F616C4390200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CF380200B1BE01EF0ADE = { - fileRef = F616C43A0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CF390200B1BE01EF0ADE = { - fileRef = F616C43E0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CF3A0200B1BE01EF0ADE = { - fileRef = F616C4440200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CF3B0200B1BE01EF0ADE = { - fileRef = F616C4460200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CF3F0200B21601EF0ADE = { - fileRef = F616C4180200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CF400200B26101EF0ADE = { - fileRef = F616C4420200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CF410200B30D01EF0ADE = { - fileRef = F616C39F0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CF420200B30D01EF0ADE = { - fileRef = F616C3A20200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CF430200B35C01EF0ADE = { - fileRef = F616C5AD0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CF440200B35C01EF0ADE = { - fileRef = F616C5B50200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CF450200B35C01EF0ADE = { - fileRef = F616C5E50200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CF460200B35C01EF0ADE = { - fileRef = F616C6170200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CF470200B35C01EF0ADE = { - fileRef = F616C61D0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CF480200B4EE01EF0ADE = { - isa = PBXFrameworkReference; - name = CoreFoundation.framework; - path = /System/Library/Frameworks/CoreFoundation.framework; - refType = 0; - }; - F616CF490200B4EE01EF0ADE = { - fileRef = F616CF480200B4EE01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CF4A0200B51101EF0ADE = { - fileRef = F616C4090200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CF4B0200B51101EF0ADE = { - fileRef = F616C40B0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CF4F0200B66401EF0ADE = { - isa = PBXTargetDependency; - target = F616C3610200AE9501EF0ADE; - }; - F616CF500200B72801EF0ADE = { - isa = PBXFileReference; - name = "libstdc++.a"; - path = "/usr/lib/gcc/darwin/2.95.2/libstdc++.a"; - refType = 0; - }; - F616CF510200B72801EF0ADE = { - fileRef = F616CF500200B72801EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F616CF530200BA9301EF0ADE = { - buildArgumentsString = "-f Helpers.make jrd_preprocess_$ACTION dsql_preprocess_$ACTION"; - buildPhases = ( - ); - buildSettings = { - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PRODUCT_NAME = "gpre engine files"; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; - }; - buildToolPath = /usr/bin/gnumake; - buildWorkingDirectory = ""; - dependencies = ( - F616CF540200BA9301EF0ADE, - ); - isa = PBXLegacyTarget; - name = "gpre engine files"; - productName = "gpre engine files"; - settingsToExpand = 6; - settingsToPassInEnvironment = 287; - settingsToPassOnCommandLine = 280; - shouldUseHeadermap = 0; - }; - F616CF540200BA9301EF0ADE = { - isa = PBXTargetDependency; - target = F616C3650200B08E01EF0ADE; - }; - F621170F026B731901A86433 = { - fileRef = F616C3820200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6211710026B731901A86433 = { - fileRef = F616C3830200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F654BF81025ED53F01C1F659 = { - fileRef = F616C68D0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F654BFB002626F6B01C1F659 = { - fileRef = F616C3640200B08E01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F654BFB1026283B801C1F659 = { - buildActionMask = 2147483647; - files = ( - ); - generatedFileNames = ( - ); - isa = PBXShellScriptBuildPhase; - name = "Shell Script"; - neededFileNames = ( - ); - shellPath = /bin/sh; - shellScript = "./make_wrapper.sh intl_lib"; - }; - F654BFB20262859901C1F659 = { - isa = PBXTargetDependency; - target = F6A930B9025B5CBE01EF0AD1; - }; - F654BFB30262859901C1F659 = { - isa = PBXTargetDependency; - target = F616C36A0200B08E01EF0ADE; - }; - F66FEC090259586B01EF0AD1 = { - isa = PBXTargetDependency; - target = F69A8CF6025918F501A86432; - }; - F69A8CC90255A19801A86432 = { - isa = PBXFileReference; - path = fb_exception.cpp; - refType = 4; - }; - F69A8CCA0255A19901A86432 = { - fileRef = F69A8CC90255A19801A86432; - isa = PBXBuildFile; - settings = { - }; - }; - F69A8CF40257DF1E01A86432 = { - fileRef = F69A8CC90255A19801A86432; - isa = PBXBuildFile; - settings = { - }; - }; - F69A8CF6025918F501A86432 = { - buildArgumentsString = "-f Helpers.make headers_$ACTION"; - buildPhases = ( - ); - buildSettings = { - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PRODUCT_NAME = "header files"; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; - }; - buildToolPath = /usr/bin/gnumake; - buildWorkingDirectory = ""; - dependencies = ( - ); - isa = PBXLegacyTarget; - name = "header files"; - productName = "header files"; - settingsToExpand = 6; - settingsToPassInEnvironment = 287; - settingsToPassOnCommandLine = 280; - shouldUseHeadermap = 0; - }; - F6A0478F02AD56AF01EF0ACB = { - isa = PBXFileReference; - path = db_alias.cpp; - refType = 4; - }; - F6A0479002AD56AF01EF0ACB = { - fileRef = F6A0478F02AD56AF01EF0ACB; - isa = PBXBuildFile; - settings = { - }; - }; - F6A0479102AD571001EF0ACB = { - isa = PBXFileReference; - path = sort_mem.cpp; - refType = 4; - }; - F6A0479202AD571001EF0ACB = { - isa = PBXFileReference; - path = sort_mem.h; - refType = 4; - }; - F6A0479302AD571101EF0ACB = { - fileRef = F6A0479202AD571001EF0ACB; - isa = PBXBuildFile; - settings = { - }; - }; - F6A0479402AD571101EF0ACB = { - fileRef = F6A0479102AD571001EF0ACB; - isa = PBXBuildFile; - settings = { - }; - }; - F6A0479502AEDE0F01EF0ACB = { - isa = PBXFileReference; - path = virtab.cpp; - refType = 4; - }; - F6A0479602AEDE0F01EF0ACB = { - isa = PBXFileReference; - path = virtab.h; - refType = 4; - }; - F6A930B8025B5CBD01EF0AD1 = { - isa = PBXLibraryReference; - path = gdsintl; - refType = 3; - }; - F6A930B9025B5CBE01EF0AD1 = { - buildPhases = ( - F6A930BA025B5CBE01EF0AD1, - F6A930BB025B5CBE01EF0AD1, - F6A930BC025B5CBE01EF0AD1, - F6A930BD025B5CBE01EF0AD1, - F654BFB1026283B801C1F659, - ); - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - INSTALL_PATH = ""; - LIBRARY_STYLE = BUNDLE; - OTHER_CFLAGS = "-bundle"; - OTHER_LIBTOOL_FLAGS = ""; - OTHER_REZFLAGS = ""; - PREBINDING = NO; - PRODUCT_NAME = gdsintl; - REZ_EXECUTABLE = YES; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; - }; - dependencies = ( - F654BFB30262859901C1F659, - ); - isa = PBXLibraryTarget; - name = "International Character Sets"; - productInstallPath = ""; - productName = "International Character Sets"; - productReference = F6A930B8025B5CBD01EF0AD1; - shouldUseHeadermap = 0; - }; - F6A930BA025B5CBE01EF0AD1 = { - buildActionMask = 2147483647; - files = ( - ); - isa = PBXHeadersBuildPhase; - name = Headers; - }; - F6A930BB025B5CBE01EF0AD1 = { - buildActionMask = 2147483647; - files = ( - F6A930BE025B5F4F01EF0AD1, - F6A930BF025B5F4F01EF0AD1, - F6A930C0025B5F4F01EF0AD1, - F6A930C1025B5F4F01EF0AD1, - F6A930C2025B5F4F01EF0AD1, - F6A930C3025B5F4F01EF0AD1, - F6A930C4025B5F4F01EF0AD1, - F6A930C5025B5F4F01EF0AD1, - F6A930C6025B5F4F01EF0AD1, - F6A930C7025B5F4F01EF0AD1, - F6A930C8025B5F4F01EF0AD1, - F6A930C9025B5F4F01EF0AD1, - F6A930CA025B5F4F01EF0AD1, - F6A930CB025B5F4F01EF0AD1, - F6A930CC025B5F4F01EF0AD1, - F6A930CD025B5F4F01EF0AD1, - F6A930CE025B5F4F01EF0AD1, - F6A930CF025B5F4F01EF0AD1, - F6A930D0025B5F4F01EF0AD1, - F6A930D1025B5F4F01EF0AD1, - F6A930D2025B5F4F01EF0AD1, - F6A930D3025B5F4F01EF0AD1, - F6A930D5025B5FF601EF0AD1, - ); - isa = PBXSourcesBuildPhase; - name = Sources; - }; - F6A930BC025B5CBE01EF0AD1 = { - buildActionMask = 2147483647; - files = ( - F654BFB002626F6B01C1F659, - ); - isa = PBXFrameworksBuildPhase; - name = "Frameworks & Libraries"; - }; - F6A930BD025B5CBE01EF0AD1 = { - buildActionMask = 2147483647; - files = ( - ); - isa = PBXRezBuildPhase; - name = "ResourceManager Resources"; - }; - F6A930BE025B5F4F01EF0AD1 = { - fileRef = F616C4CA0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6A930BF025B5F4F01EF0AD1 = { - fileRef = F616C50A0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6A930C0025B5F4F01EF0AD1 = { - fileRef = F616C4D90200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6A930C1025B5F4F01EF0AD1 = { - fileRef = F616C5010200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6A930C2025B5F4F01EF0AD1 = { - fileRef = F616C5080200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6A930C3025B5F4F01EF0AD1 = { - fileRef = F616C5070200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6A930C4025B5F4F01EF0AD1 = { - fileRef = F616C5030200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6A930C5025B5F4F01EF0AD1 = { - fileRef = F616C4CD0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6A930C6025B5F4F01EF0AD1 = { - fileRef = F616C5090200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6A930C7025B5F4F01EF0AD1 = { - fileRef = F616C4CE0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6A930C8025B5F4F01EF0AD1 = { - fileRef = F616C4BF0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6A930C9025B5F4F01EF0AD1 = { - fileRef = F616C4D50200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6A930CA025B5F4F01EF0AD1 = { - fileRef = F616C5020200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6A930CB025B5F4F01EF0AD1 = { - fileRef = F616C4C20200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6A930CC025B5F4F01EF0AD1 = { - fileRef = F616C4D60200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6A930CD025B5F4F01EF0AD1 = { - fileRef = F616C5040200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6A930CE025B5F4F01EF0AD1 = { - fileRef = F616C5050200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6A930CF025B5F4F01EF0AD1 = { - fileRef = F616C4D70200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6A930D0025B5F4F01EF0AD1 = { - fileRef = F616C4C40200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6A930D1025B5F4F01EF0AD1 = { - fileRef = F616C4C70200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6A930D2025B5F4F01EF0AD1 = { - fileRef = F616C4D80200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6A930D3025B5F4F01EF0AD1 = { - fileRef = F616C5060200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6A930D4025B5FF501EF0AD1 = { - isa = PBXFileReference; - path = lc_latin2.c; - refType = 4; - }; - F6A930D5025B5FF601EF0AD1 = { - fileRef = F6A930D4025B5FF501EF0AD1; - isa = PBXBuildFile; - settings = { - }; - }; - F6B280D00200CB8101EF0ADE = { - fileRef = F616CF500200B72801EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B280D10200CC3601EF0ADE = { - children = ( - F6B280D20200CC3601EF0ADE, - F6B280D30200CC3601EF0ADE, - F6B280D40200CC3601EF0ADE, - F6B280D60200CC3601EF0ADE, - F6B280D70200CC3601EF0ADE, - F6B280DD0200CC3601EF0ADE, - F6B280DF0200CC3601EF0ADE, - F6B280E00200CC3601EF0ADE, - F6B280E10200CC3601EF0ADE, - F6B280E20200CC3601EF0ADE, - F6B280EA0200CC3601EF0ADE, - F6B280EB0200CC3601EF0ADE, - F6B280EE0200CC3601EF0ADE, - F6B281530200CC3601EF0ADE, - F6B281540200CC3601EF0ADE, - F6B2815F0200CC3601EF0ADE, - F6B281600200CC3601EF0ADE, - F6B281610200CC3601EF0ADE, - F6B281620200CC3601EF0ADE, - F6B281630200CC3601EF0ADE, - F6B281670200CC3601EF0ADE, - F6B281680200CC3601EF0ADE, - ); - isa = PBXGroup; - name = gen; - path = ../../../gen; - refType = 2; - }; - F6B280D20200CC3601EF0ADE = { - children = ( - F6B2827802011B4B01EF0ADE, - ); - isa = PBXGroup; - path = alice; - refType = 4; - }; - F6B280D30200CC3601EF0ADE = { - children = ( - F6B28256020116EA01EF0ADE, - F6B28257020116EA01EF0ADE, - ); - isa = PBXGroup; - path = burp; - refType = 4; - }; - F6B280D40200CC3601EF0ADE = { - children = ( - F6B280D50200CC3601EF0ADE, - ); - isa = PBXGroup; - path = common; - refType = 4; - }; - F6B280D50200CC3601EF0ADE = { - children = ( - ); - isa = PBXGroup; - path = memory; - refType = 4; - }; - F6B280D60200CC3601EF0ADE = { - children = ( - ); - isa = PBXGroup; - path = csv; - refType = 4; - }; - F6B280D70200CC3601EF0ADE = { - children = ( - F6B280D80200CC3601EF0ADE, - F6B280D90200CC3601EF0ADE, - F6B280DA0200CC3601EF0ADE, - F6B280DB0200CC3601EF0ADE, - F6B280DC0200CC3601EF0ADE, - ); - isa = PBXGroup; - path = dsql; - refType = 4; - }; - F6B280D80200CC3601EF0ADE = { - isa = PBXFileReference; - path = array.cpp; - refType = 4; - }; - F6B280D90200CC3601EF0ADE = { - isa = PBXFileReference; - path = blob.cpp; - refType = 4; - }; - F6B280DA0200CC3601EF0ADE = { - isa = PBXFileReference; - path = metd.cpp; - refType = 4; - }; - F6B280DB0200CC3601EF0ADE = { - isa = PBXFileReference; - path = parse.cpp; - refType = 4; - }; - F6B280DC0200CC3601EF0ADE = { - isa = PBXFileReference; - path = y.tab.c; - refType = 4; - }; - F6B280DD0200CC3601EF0ADE = { - children = ( - F6B2829802011D1D01EF0ADE, - F6B2829902011D1D01EF0ADE, - ); - isa = PBXGroup; - path = dudley; - refType = 4; - }; - F6B280DF0200CC3601EF0ADE = { - children = ( - ); - isa = PBXGroup; - path = extlib; - refType = 4; - }; - F6B280E00200CC3601EF0ADE = { - children = ( - ); - isa = PBXGroup; - path = fbutil; - refType = 4; - }; - F6B280E10200CC3601EF0ADE = { - children = ( - F6B2823D0200D27C01EF0ADE, - ); - isa = PBXGroup; - path = gpre; - refType = 4; - }; - F6B280E20200CC3601EF0ADE = { - children = ( - F6B280E30200CC3601EF0ADE, - F6B280E40200CC3601EF0ADE, - ); - isa = PBXGroup; - path = install; - refType = 4; - }; - F6B280E30200CC3601EF0ADE = { - isa = PBXFileReference; - path = install.sh; - refType = 4; - }; - F6B280E40200CC3601EF0ADE = { - children = ( - F6B280E50200CC3601EF0ADE, - F6B280E60200CC3601EF0ADE, - F6B280E70200CC3601EF0ADE, - F6B280E80200CC3601EF0ADE, - F6B280E90200CC3601EF0ADE, - ); - isa = PBXGroup; - path = scripts; - refType = 4; - }; - F6B280E50200CC3601EF0ADE = { - isa = PBXExecutableFileReference; - path = install.sh; - refType = 4; - }; - F6B280E60200CC3601EF0ADE = { - isa = PBXExecutableFileReference; - path = postinstall.sh; - refType = 4; - }; - F6B280E70200CC3601EF0ADE = { - isa = PBXExecutableFileReference; - path = postuninstall.sh; - refType = 4; - }; - F6B280E80200CC3601EF0ADE = { - isa = PBXExecutableFileReference; - path = preinstall.sh; - refType = 4; - }; - F6B280E90200CC3601EF0ADE = { - isa = PBXExecutableFileReference; - path = preuninstall.sh; - refType = 4; - }; - F6B280EA0200CC3601EF0ADE = { - children = ( - ); - isa = PBXGroup; - path = intl; - refType = 4; - }; - F6B280EB0200CC3601EF0ADE = { - children = ( - F6B282E4020125B001EF0ADE, - F6B282E5020125B001EF0ADE, - F6B282E6020125B001EF0ADE, - ); - isa = PBXGroup; - path = isql; - refType = 4; - }; - F6B280EE0200CC3601EF0ADE = { - children = ( - F6B280F40200CC3601EF0ADE, - F6B280FD0200CC3601EF0ADE, - F6B281010200CC3601EF0ADE, - F6B281040200CC3601EF0ADE, - F6B281060200CC3601EF0ADE, - F6B281080200CC3601EF0ADE, - F6B2810A0200CC3601EF0ADE, - F6B2810C0200CC3601EF0ADE, - F6B281160200CC3601EF0ADE, - F6B2811A0200CC3601EF0ADE, - F6B2811F0200CC3601EF0ADE, - F6B2812C0200CC3601EF0ADE, - F6B281360200CC3601EF0ADE, - F6B281400200CC3601EF0ADE, - F6B281470200CC3601EF0ADE, - ); - isa = PBXGroup; - path = jrd; - refType = 4; - }; - F6B280F40200CC3601EF0ADE = { - isa = PBXFileReference; - path = blob_filter.cpp; - refType = 4; - }; - F6B280FD0200CC3601EF0ADE = { - isa = PBXFileReference; - path = dfw.cpp; - refType = 4; - }; - F6B281010200CC3601EF0ADE = { - isa = PBXFileReference; - path = dpm.cpp; - refType = 4; - }; - F6B281040200CC3601EF0ADE = { - isa = PBXFileReference; - path = dyn.cpp; - refType = 4; - }; - F6B281060200CC3601EF0ADE = { - isa = PBXFileReference; - path = dyn_def.cpp; - refType = 4; - }; - F6B281080200CC3601EF0ADE = { - isa = PBXFileReference; - path = dyn_del.cpp; - refType = 4; - }; - F6B2810A0200CC3601EF0ADE = { - isa = PBXFileReference; - path = dyn_mod.cpp; - refType = 4; - }; - F6B2810C0200CC3601EF0ADE = { - isa = PBXFileReference; - path = dyn_util.cpp; - refType = 4; - }; - F6B281160200CC3601EF0ADE = { - isa = PBXFileReference; - path = fun.cpp; - refType = 4; - }; - F6B2811A0200CC3601EF0ADE = { - isa = PBXFileReference; - path = grant.cpp; - refType = 4; - }; - F6B2811F0200CC3601EF0ADE = { - isa = PBXFileReference; - path = ini.cpp; - refType = 4; - }; - F6B2812C0200CC3601EF0ADE = { - isa = PBXFileReference; - path = met.cpp; - refType = 4; - }; - F6B281400200CC3601EF0ADE = { - isa = PBXFileReference; - path = scl.cpp; - refType = 4; - }; - F6B281470200CC3601EF0ADE = { - isa = PBXFileReference; - path = stats.cpp; - refType = 4; - }; - F6B281530200CC3601EF0ADE = { - children = ( - ); - isa = PBXGroup; - path = lock; - refType = 4; - }; - F6B281540200CC3601EF0ADE = { - children = ( - F6B282BD0201200901EF0ADE, - F6B282BE0201200901EF0ADE, - F6B282BF0201200901EF0ADE, - F6B282C00201200901EF0ADE, - F6B282C10201200901EF0ADE, - F6B282C20201200901EF0ADE, - ); - isa = PBXGroup; - path = msgs; - refType = 4; - }; - F6B2815F0200CC3601EF0ADE = { - children = ( - ); - isa = PBXGroup; - path = pipe; - refType = 4; - }; - F6B281600200CC3601EF0ADE = { - children = ( - F6B283300202209301EF0ADE, - F6B283310202209301EF0ADE, - F6B283320202209301EF0ADE, - F6B283330202209301EF0ADE, - ); - isa = PBXGroup; - path = qli; - refType = 4; - }; - F6B281610200CC3601EF0ADE = { - children = ( - ); - isa = PBXGroup; - path = refDatabases; - refType = 4; - }; - F6B281620200CC3601EF0ADE = { - children = ( - ); - isa = PBXGroup; - path = remote; - refType = 4; - }; - F6B281630200CC3601EF0ADE = { - children = ( - F6B281650200CC3601EF0ADE, - ); - isa = PBXGroup; - path = utilities; - refType = 4; - }; - F6B281650200CC3601EF0ADE = { - isa = PBXFileReference; - path = security.cpp; - refType = 4; - }; - F6B281670200CC3601EF0ADE = { - children = ( - ); - isa = PBXGroup; - path = v5_examples; - refType = 4; - }; - F6B281680200CC3601EF0ADE = { - children = ( - ); - isa = PBXGroup; - path = wal; - refType = 4; - }; - F6B281CD0200CC3601EF0ADE = { - fileRef = F6B280D80200CC3601EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281CE0200CC3601EF0ADE = { - fileRef = F6B280D90200CC3601EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281CF0200CC3601EF0ADE = { - fileRef = F6B280DA0200CC3601EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281D00200CC3601EF0ADE = { - fileRef = F6B280DB0200CC3601EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281D10200CC3601EF0ADE = { - fileRef = F6B280F40200CC3601EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281D20200CC3601EF0ADE = { - fileRef = F6B280FD0200CC3601EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281D30200CC3601EF0ADE = { - fileRef = F6B281010200CC3601EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281D40200CC3601EF0ADE = { - fileRef = F6B281040200CC3601EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281D50200CC3601EF0ADE = { - fileRef = F6B281060200CC3601EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281D60200CC3601EF0ADE = { - fileRef = F6B281080200CC3601EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281D70200CC3601EF0ADE = { - fileRef = F6B2810A0200CC3601EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281D80200CC3601EF0ADE = { - fileRef = F6B2810C0200CC3601EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281D90200CC3601EF0ADE = { - fileRef = F6B281160200CC3601EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281DA0200CC3601EF0ADE = { - fileRef = F6B2811A0200CC3601EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281DB0200CC3601EF0ADE = { - fileRef = F6B2811F0200CC3601EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281DC0200CC3601EF0ADE = { - fileRef = F6B2812C0200CC3601EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281DD0200CC3601EF0ADE = { - fileRef = F6B281360200CC3601EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281DE0200CC3601EF0ADE = { - fileRef = F6B281400200CC3601EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281E60200CDC101EF0ADE = { - fileRef = F616C7020200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281E70200CDC101EF0ADE = { - fileRef = F616C81E0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281E80200CDC101EF0ADE = { - fileRef = F616C8230200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281E90200CDC101EF0ADE = { - fileRef = F616C8250200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281EA0200CDC101EF0ADE = { - fileRef = F616C88B0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281EB0200CDC101EF0ADE = { - fileRef = F616C8950200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281EC0200CDC101EF0ADE = { - fileRef = F616C89D0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281ED0200CDC101EF0ADE = { - fileRef = F616C89F0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281EE0200CDC101EF0ADE = { - fileRef = F616C8A00200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281EF0200CDC101EF0ADE = { - fileRef = F616C8A30200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281F00200CDC101EF0ADE = { - fileRef = F616C8A40200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281F10200CDC101EF0ADE = { - fileRef = F616C86A0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281F20200CDC101EF0ADE = { - fileRef = F616C87C0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281F30200CDC101EF0ADE = { - fileRef = F616C9540200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281F40200CDC101EF0ADE = { - fileRef = F616C9560200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281F50200CDC101EF0ADE = { - fileRef = F616C9580200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281F60200CDC101EF0ADE = { - fileRef = F616C95A0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281F70200CDC101EF0ADE = { - fileRef = F616C95C0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281F80200CDC101EF0ADE = { - fileRef = F616C95F0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281F90200CDC101EF0ADE = { - fileRef = F616C9600200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281FA0200CDC101EF0ADE = { - fileRef = F616C7010200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281FB0200CDC101EF0ADE = { - fileRef = F616C81D0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281FC0200CDC101EF0ADE = { - fileRef = F616C8220200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281FD0200CDC101EF0ADE = { - fileRef = F616C88A0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281FE0200CDC101EF0ADE = { - fileRef = F616C8960200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B281FF0200CDC101EF0ADE = { - fileRef = F616C89E0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282000200CDC101EF0ADE = { - fileRef = F616C8A10200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282010200CDC101EF0ADE = { - fileRef = F616C8690200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282020200CDC101EF0ADE = { - fileRef = F616C87B0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282030200CDC101EF0ADE = { - fileRef = F616C8800200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282040200CDC101EF0ADE = { - fileRef = F616C9530200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282050200CDC101EF0ADE = { - fileRef = F616C9570200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282060200CDC101EF0ADE = { - fileRef = F616C9590200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282070200CDC101EF0ADE = { - fileRef = F616C95B0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282080200CDC101EF0ADE = { - fileRef = F616C95D0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282090200CDC101EF0ADE = { - fileRef = F616C9610200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2820A0200CDC101EF0ADE = { - fileRef = F616CF480200B4EE01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2820B0200D1DC01EF0ADE = { - isa = PBXExecutableFileReference; - path = gpre; - refType = 3; - }; - F6B2820C0200D1DC01EF0ADE = { - buildPhases = ( - F6B282110200D1DC01EF0ADE, - F6B282120200D1DC01EF0ADE, - F6B282130200D1DC01EF0ADE, - F6B282150200D1DC01EF0ADE, - ); - buildSettings = { - HEADER_SEARCH_PATHS = ../../../src/include; - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PREBINDING = NO; - PRODUCT_NAME = gpre; - REZ_EXECUTABLE = YES; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; - }; - dependencies = ( - F6B2820D0200D1DC01EF0ADE, - F6B2820E0200D1DC01EF0ADE, - ); - isa = PBXToolTarget; - name = gpre; - productInstallPath = /usr/local/bin; - productName = gpre; - productReference = F6B2820B0200D1DC01EF0ADE; - shouldUseHeadermap = 0; - }; - F6B2820D0200D1DC01EF0ADE = { - isa = PBXTargetDependency; - target = F616C36A0200B08E01EF0ADE; - }; - F6B2820E0200D1DC01EF0ADE = { - isa = PBXTargetDependency; - target = F6B2820F0200D1DC01EF0ADE; - }; - F6B2820F0200D1DC01EF0ADE = { - buildArgumentsString = "-f Helpers.make gpre_preprocess_$ACTION"; - buildPhases = ( - ); - buildSettings = { - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PRODUCT_NAME = "gpre gpre files"; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; - }; - buildToolPath = /usr/bin/gnumake; - buildWorkingDirectory = ""; - dependencies = ( - F6B282100200D1DC01EF0ADE, - ); - isa = PBXLegacyTarget; - name = "gpre gpre files"; - productName = "gpre gpre files"; - settingsToExpand = 6; - settingsToPassInEnvironment = 287; - settingsToPassOnCommandLine = 280; - shouldUseHeadermap = 0; - }; - F6B282100200D1DC01EF0ADE = { - isa = PBXTargetDependency; - target = F616C3650200B08E01EF0ADE; - }; - F6B282110200D1DC01EF0ADE = { - buildActionMask = 2147483647; - files = ( - F6B282160200D23C01EF0ADE, - F6B282170200D23C01EF0ADE, - F6B282180200D23C01EF0ADE, - F6B282190200D23C01EF0ADE, - F6B2821A0200D23C01EF0ADE, - F6B2821B0200D23C01EF0ADE, - F6B2821C0200D23C01EF0ADE, - F6B2821D0200D23C01EF0ADE, - F6B2821E0200D23C01EF0ADE, - F6B2821F0200D23C01EF0ADE, - F6B282200200D23C01EF0ADE, - F6B282210200D23C01EF0ADE, - F6B282220200D23C01EF0ADE, - F6B282230200D23C01EF0ADE, - F6B282240200D23C01EF0ADE, - F6B282250200D23C01EF0ADE, - F6B282260200D23C01EF0ADE, - F6B282270200D23C01EF0ADE, - F6B282280200D23C01EF0ADE, - ); - isa = PBXHeadersBuildPhase; - name = Headers; - }; - F6B282120200D1DC01EF0ADE = { - buildActionMask = 2147483647; - files = ( - F6B282290200D23C01EF0ADE, - F6B2822A0200D23C01EF0ADE, - F6B2822B0200D23C01EF0ADE, - F6B2822C0200D23C01EF0ADE, - F6B2822D0200D23C01EF0ADE, - F6B2822E0200D23C01EF0ADE, - F6B2822F0200D23C01EF0ADE, - F6B282300200D23C01EF0ADE, - F6B282310200D23C01EF0ADE, - F6B282320200D23C01EF0ADE, - F6B282330200D23C01EF0ADE, - F6B282340200D23C01EF0ADE, - F6B282350200D23C01EF0ADE, - F6B282360200D23C01EF0ADE, - F6B282370200D23C01EF0ADE, - F6B282380200D23C01EF0ADE, - F6B282390200D23C01EF0ADE, - F6B2823E0200D27C01EF0ADE, - ); - isa = PBXSourcesBuildPhase; - name = Sources; - }; - F6B282130200D1DC01EF0ADE = { - buildActionMask = 2147483647; - files = ( - F6B282140200D1DC01EF0ADE, - ); - isa = PBXFrameworksBuildPhase; - name = "Frameworks & Libraries"; - }; - F6B282140200D1DC01EF0ADE = { - fileRef = F616C3640200B08E01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282150200D1DC01EF0ADE = { - buildActionMask = 2147483647; - files = ( - ); - isa = PBXRezBuildPhase; - name = "ResourceManager Resources"; - }; - F6B282160200D23C01EF0ADE = { - fileRef = F616C4150200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282170200D23C01EF0ADE = { - fileRef = F616C4170200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282180200D23C01EF0ADE = { - fileRef = F616C4190200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282190200D23C01EF0ADE = { - fileRef = F616C41E0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2821A0200D23C01EF0ADE = { - fileRef = F616C42A0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2821B0200D23C01EF0ADE = { - fileRef = F616C4260200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2821C0200D23C01EF0ADE = { - fileRef = F616C42E0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2821D0200D23C01EF0ADE = { - fileRef = F616C42D0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2821E0200D23C01EF0ADE = { - fileRef = F616C4310200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2821F0200D23C01EF0ADE = { - fileRef = F616C4330200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282200200D23C01EF0ADE = { - fileRef = F616C4360200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282210200D23C01EF0ADE = { - fileRef = F616C4380200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282220200D23C01EF0ADE = { - fileRef = F616C43B0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282230200D23C01EF0ADE = { - fileRef = F616C43C0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282240200D23C01EF0ADE = { - fileRef = F616C43F0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282250200D23C01EF0ADE = { - fileRef = F616C4400200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282260200D23C01EF0ADE = { - fileRef = F616C4450200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282270200D23C01EF0ADE = { - fileRef = F616C4470200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282280200D23C01EF0ADE = { - fileRef = F616C4480200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282290200D23C01EF0ADE = { - fileRef = F616C4120200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2822A0200D23C01EF0ADE = { - fileRef = F616C4140200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2822B0200D23C01EF0ADE = { - fileRef = F616C4160200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2822C0200D23C01EF0ADE = { - fileRef = F616C4180200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2822D0200D23C01EF0ADE = { - fileRef = F616C41D0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2822E0200D23C01EF0ADE = { - fileRef = F616C4250200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2822F0200D23C01EF0ADE = { - fileRef = F616C42C0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282300200D23C01EF0ADE = { - fileRef = F616C4300200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282310200D23C01EF0ADE = { - fileRef = F616C42F0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282320200D23C01EF0ADE = { - fileRef = F616C4320200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282330200D23C01EF0ADE = { - fileRef = F616C4350200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282340200D23C01EF0ADE = { - fileRef = F616C4370200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282350200D23C01EF0ADE = { - fileRef = F616C4390200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282360200D23C01EF0ADE = { - fileRef = F616C43A0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282370200D23C01EF0ADE = { - fileRef = F616C43E0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282380200D23C01EF0ADE = { - fileRef = F616C4440200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282390200D23C01EF0ADE = { - fileRef = F616C4460200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2823D0200D27C01EF0ADE = { - isa = PBXFileReference; - path = gpre_meta.cpp; - refType = 4; - }; - F6B2823E0200D27C01EF0ADE = { - fileRef = F6B2823D0200D27C01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282400200E48501EF0ADE = { - isa = PBXExecutableFileReference; - path = create_db; - refType = 3; - }; - F6B282410200E48501EF0ADE = { - buildPhases = ( - F6B282420200E48501EF0ADE, - F6B282430200E48501EF0ADE, - F6B282450200E48501EF0ADE, - F6B282470200E48501EF0ADE, - ); - buildSettings = { - HEADER_SEARCH_PATHS = ../../../src/include; - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PREBINDING = NO; - PRODUCT_NAME = create_db; - REZ_EXECUTABLE = YES; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; - }; - dependencies = ( - F6B2831102013C4701EF0ADE, - ); - isa = PBXToolTarget; - name = create_db; - productInstallPath = /usr/local/bin; - productName = create_db; - productReference = F6B282400200E48501EF0ADE; - shouldUseHeadermap = 0; - }; - F6B282420200E48501EF0ADE = { - buildActionMask = 2147483647; - files = ( - ); - isa = PBXHeadersBuildPhase; - name = Headers; - }; - F6B282430200E48501EF0ADE = { - buildActionMask = 2147483647; - files = ( - F6B282440200E48501EF0ADE, - ); - isa = PBXSourcesBuildPhase; - name = Sources; - }; - F6B282440200E48501EF0ADE = { - fileRef = F616C8CE0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282450200E48501EF0ADE = { - buildActionMask = 2147483647; - files = ( - F6B2824B0200E48D01EF0ADE, - ); - isa = PBXFrameworksBuildPhase; - name = "Frameworks & Libraries"; - }; - F6B282470200E48501EF0ADE = { - buildActionMask = 2147483647; - files = ( - ); - isa = PBXRezBuildPhase; - name = "ResourceManager Resources"; - }; - F6B2824B0200E48D01EF0ADE = { - fileRef = F616C3640200B08E01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2824F0200E55001EF0ADE = { - buildArgumentsString = "-f Helpers.make empty_db_$ACTION"; - buildPhases = ( - ); - buildSettings = { - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PRODUCT_NAME = "empty db"; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; - }; - buildToolPath = /usr/bin/gnumake; - buildWorkingDirectory = ""; - dependencies = ( - F6B282500200E55001EF0ADE, - ); - isa = PBXLegacyTarget; - name = "empty db"; - productName = "empty db"; - settingsToExpand = 6; - settingsToPassInEnvironment = 287; - settingsToPassOnCommandLine = 280; - shouldUseHeadermap = 0; - }; - F6B282500200E55001EF0ADE = { - isa = PBXTargetDependency; - target = F6B282410200E48501EF0ADE; - }; - F6B2825402010B6101EF0ADE = { - buildArgumentsString = "-f Helpers.make burp_preprocess_$ACTION"; - buildPhases = ( - ); - buildSettings = { - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PRODUCT_NAME = "gpre gbak files"; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; - }; - buildToolPath = /usr/bin/gnumake; - dependencies = ( - F6B2825502010C1701EF0ADE, - ); - isa = PBXLegacyTarget; - name = "gpre gbak files"; - productName = "gpre gbak files"; - settingsToExpand = 6; - settingsToPassInEnvironment = 287; - settingsToPassOnCommandLine = 280; - shouldUseHeadermap = 0; - }; - F6B2825502010C1701EF0ADE = { - isa = PBXTargetDependency; - target = F6B2824F0200E55001EF0ADE; - }; - F6B28256020116EA01EF0ADE = { - isa = PBXFileReference; - path = backup.cpp; - refType = 4; - }; - F6B28257020116EA01EF0ADE = { - isa = PBXFileReference; - path = restore.cpp; - refType = 4; - }; - F6B28258020116EA01EF0ADE = { - isa = PBXExecutableFileReference; - path = gbak; - refType = 3; - }; - F6B28259020116EB01EF0ADE = { - buildPhases = ( - F6B2825C020116EB01EF0ADE, - F6B2825D020116EB01EF0ADE, - F6B28260020116EB01EF0ADE, - F6B28261020116EB01EF0ADE, - ); - buildSettings = { - HEADER_SEARCH_PATHS = ../../../src/include; - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PREBINDING = NO; - PRODUCT_NAME = gbak; - REZ_EXECUTABLE = YES; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; - }; - dependencies = ( - F6B2825A020116EB01EF0ADE, - F6B2825B020116EB01EF0ADE, - ); - isa = PBXToolTarget; - name = gbak; - productInstallPath = /usr/local/bin; - productName = gbak; - productReference = F6B28258020116EA01EF0ADE; - shouldUseHeadermap = 0; - }; - F6B2825A020116EB01EF0ADE = { - isa = PBXTargetDependency; - target = F6B2824F0200E55001EF0ADE; - }; - F6B2825B020116EB01EF0ADE = { - isa = PBXTargetDependency; - target = F6B2825402010B6101EF0ADE; - }; - F6B2825C020116EB01EF0ADE = { - buildActionMask = 2147483647; - files = ( - F6B282630201170601EF0ADE, - F6B282640201170601EF0ADE, - F6B282650201170601EF0ADE, - F6B282660201170601EF0ADE, - F6B282670201170601EF0ADE, - F6B282680201170601EF0ADE, - F6B282690201170601EF0ADE, - F6B2826A0201170601EF0ADE, - ); - isa = PBXHeadersBuildPhase; - name = Headers; - }; - F6B2825D020116EB01EF0ADE = { - buildActionMask = 2147483647; - files = ( - F6B2825E020116EB01EF0ADE, - F6B2825F020116EB01EF0ADE, - F6B2826B0201170601EF0ADE, - F6B2826C0201170601EF0ADE, - F6B2826D0201170601EF0ADE, - F6B2826E0201170601EF0ADE, - ); - isa = PBXSourcesBuildPhase; - name = Sources; - }; - F6B2825E020116EB01EF0ADE = { - fileRef = F6B28256020116EA01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2825F020116EB01EF0ADE = { - fileRef = F6B28257020116EA01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B28260020116EB01EF0ADE = { - buildActionMask = 2147483647; - files = ( - F6B282720201174901EF0ADE, - ); - isa = PBXFrameworksBuildPhase; - name = "Frameworks & Libraries"; - }; - F6B28261020116EB01EF0ADE = { - buildActionMask = 2147483647; - files = ( - ); - isa = PBXRezBuildPhase; - name = "ResourceManager Resources"; - }; - F6B282630201170601EF0ADE = { - fileRef = F616C3880200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282640201170601EF0ADE = { - fileRef = F616C38C0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282650201170601EF0ADE = { - fileRef = F616C38E0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282660201170601EF0ADE = { - fileRef = F616C38F0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282670201170601EF0ADE = { - fileRef = F616C3900200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282680201170601EF0ADE = { - fileRef = F616C3960200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282690201170601EF0ADE = { - fileRef = F616C3980200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2826A0201170601EF0ADE = { - fileRef = F616C3990200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2826B0201170601EF0ADE = { - fileRef = F616C38A0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2826C0201170601EF0ADE = { - fileRef = F616C3910200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2826D0201170601EF0ADE = { - fileRef = F616C3950200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2826E0201170601EF0ADE = { - fileRef = F616C3970200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282720201174901EF0ADE = { - fileRef = F616C3640200B08E01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282730201192101EF0ADE = { - buildArgumentsString = "-f Helpers.make build_dbs_$ACTION"; - buildPhases = ( - ); - buildSettings = { - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PRODUCT_NAME = "restore databases"; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; - }; - buildToolPath = /usr/bin/gnumake; - dependencies = ( - F6B282740201194401EF0ADE, - ); - isa = PBXLegacyTarget; - name = "restore databases"; - productName = "restore databases"; - settingsToExpand = 6; - settingsToPassInEnvironment = 287; - settingsToPassOnCommandLine = 280; - shouldUseHeadermap = 0; - }; - F6B282740201194401EF0ADE = { - isa = PBXTargetDependency; - target = F6B28259020116EB01EF0ADE; - }; - F6B28275020119F401EF0ADE = { - buildArgumentsString = "-f Helpers.make gfix_preprocess_$ACTION"; - buildPhases = ( - ); - buildSettings = { - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PRODUCT_NAME = "gpre gfix files"; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; - }; - buildToolPath = /usr/bin/gnumake; - dependencies = ( - F6B28276020119F401EF0ADE, - F6B28277020119F401EF0ADE, - ); - isa = PBXLegacyTarget; - name = "gpre gfix files"; - productName = "gpre gfix files"; - settingsToExpand = 6; - settingsToPassInEnvironment = 287; - settingsToPassOnCommandLine = 280; - shouldUseHeadermap = 0; - }; - F6B28276020119F401EF0ADE = { - isa = PBXTargetDependency; - target = F6B2824F0200E55001EF0ADE; - }; - F6B28277020119F401EF0ADE = { - isa = PBXTargetDependency; - target = F6B2820C0200D1DC01EF0ADE; - }; - F6B2827802011B4B01EF0ADE = { - isa = PBXFileReference; - path = alice_meta.cpp; - refType = 4; - }; - F6B2827902011B4B01EF0ADE = { - isa = PBXExecutableFileReference; - path = gfix; - refType = 3; - }; - F6B2827A02011B4B01EF0ADE = { - buildPhases = ( - F6B2827C02011B4B01EF0ADE, - F6B2828802011B4B01EF0ADE, - F6B2828E02011B4B01EF0ADE, - F6B2828F02011B4B01EF0ADE, - ); - buildSettings = { - HEADER_SEARCH_PATHS = ../../../src/include; - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PREBINDING = NO; - PRODUCT_NAME = gfix; - REZ_EXECUTABLE = YES; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; - }; - dependencies = ( - F6B2827B02011B4B01EF0ADE, - ); - isa = PBXToolTarget; - name = gfix; - productInstallPath = /usr/local/bin; - productName = gfix; - productReference = F6B2827902011B4B01EF0ADE; - shouldUseHeadermap = 0; - }; - F6B2827B02011B4B01EF0ADE = { - isa = PBXTargetDependency; - target = F6B28275020119F401EF0ADE; - }; - F6B2827C02011B4B01EF0ADE = { - buildActionMask = 2147483647; - files = ( - F6B2827D02011B4B01EF0ADE, - F6B2827E02011B4B01EF0ADE, - F6B2827F02011B4B01EF0ADE, - F6B2828002011B4B01EF0ADE, - F6B2828102011B4B01EF0ADE, - F6B2828202011B4B01EF0ADE, - F6B2828302011B4B01EF0ADE, - F6B2828402011B4B01EF0ADE, - F6B2828502011B4B01EF0ADE, - F6B2828602011B4B01EF0ADE, - F621170F026B731901A86433, - ); - isa = PBXHeadersBuildPhase; - name = Headers; - }; - F6B2827D02011B4B01EF0ADE = { - fileRef = F616C3730200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2827E02011B4B01EF0ADE = { - fileRef = F616C3750200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2827F02011B4B01EF0ADE = { - fileRef = F616C3760200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2828002011B4B01EF0ADE = { - fileRef = F616C3770200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2828102011B4B01EF0ADE = { - fileRef = F616C3790200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2828202011B4B01EF0ADE = { - fileRef = F616C37A0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2828302011B4B01EF0ADE = { - fileRef = F616C37B0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2828402011B4B01EF0ADE = { - fileRef = F616C37E0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2828502011B4B01EF0ADE = { - fileRef = F616C3800200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2828602011B4B01EF0ADE = { - fileRef = F616C37F0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2828802011B4B01EF0ADE = { - buildActionMask = 2147483647; - files = ( - F6B2828902011B4B01EF0ADE, - F6B2828A02011B4B01EF0ADE, - F6B2828B02011B4B01EF0ADE, - F6B2828C02011B4B01EF0ADE, - F6211710026B731901A86433, - ); - isa = PBXSourcesBuildPhase; - name = Sources; - }; - F6B2828902011B4B01EF0ADE = { - fileRef = F6B2827802011B4B01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2828A02011B4B01EF0ADE = { - fileRef = F616C3720200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2828B02011B4B01EF0ADE = { - fileRef = F616C3780200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2828C02011B4B01EF0ADE = { - fileRef = F616C37D0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2828E02011B4B01EF0ADE = { - buildActionMask = 2147483647; - files = ( - F6B2829402011BC601EF0ADE, - ); - isa = PBXFrameworksBuildPhase; - name = "Frameworks & Libraries"; - }; - F6B2828F02011B4B01EF0ADE = { - buildActionMask = 2147483647; - files = ( - ); - isa = PBXRezBuildPhase; - name = "ResourceManager Resources"; - }; - F6B2829402011BC601EF0ADE = { - fileRef = F616C3640200B08E01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2829502011C6901EF0ADE = { - buildArgumentsString = "-f Helpers.make gdef_preprocess_$ACTION"; - buildPhases = ( - ); - buildSettings = { - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PRODUCT_NAME = "gpre gdef files"; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; - }; - buildToolPath = /usr/bin/gnumake; - buildWorkingDirectory = ""; - dependencies = ( - F6B2829602011C6901EF0ADE, - F6B2829702011C6901EF0ADE, - ); - isa = PBXLegacyTarget; - name = "gpre gdef files"; - productName = "gpre gdef files"; - settingsToExpand = 6; - settingsToPassInEnvironment = 287; - settingsToPassOnCommandLine = 280; - shouldUseHeadermap = 0; - }; - F6B2829602011C6901EF0ADE = { - isa = PBXTargetDependency; - target = F6B2820C0200D1DC01EF0ADE; - }; - F6B2829702011C6901EF0ADE = { - isa = PBXTargetDependency; - target = F6B2824F0200E55001EF0ADE; - }; - F6B2829802011D1D01EF0ADE = { - isa = PBXFileReference; - path = exe.cpp; - refType = 4; - }; - F6B2829902011D1D01EF0ADE = { - isa = PBXFileReference; - path = extract.cpp; - refType = 4; - }; - F6B2829A02011D1D01EF0ADE = { - isa = PBXExecutableFileReference; - path = gdef; - refType = 3; - }; - F6B2829B02011D1D01EF0ADE = { - buildPhases = ( - F6B2829D02011D1D01EF0ADE, - F6B282AA02011D1D01EF0ADE, - F6B282B502011D1D01EF0ADE, - F6B282B602011D1D01EF0ADE, - ); - buildSettings = { - HEADER_SEARCH_PATHS = ../../../src/include; - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PREBINDING = NO; - PRODUCT_NAME = gdef; - REZ_EXECUTABLE = YES; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; - }; - dependencies = ( - F6B2829C02011D1D01EF0ADE, - ); - isa = PBXToolTarget; - name = gdef; - productInstallPath = /usr/local/bin; - productName = gdef; - productReference = F6B2829A02011D1D01EF0ADE; - shouldUseHeadermap = 0; - }; - F6B2829C02011D1D01EF0ADE = { - isa = PBXTargetDependency; - target = F6B2829502011C6901EF0ADE; - }; - F6B2829D02011D1D01EF0ADE = { - buildActionMask = 2147483647; - files = ( - F6B2829E02011D1D01EF0ADE, - F6B2829F02011D1D01EF0ADE, - F6B282A002011D1D01EF0ADE, - F6B282A102011D1D01EF0ADE, - F6B282A202011D1D01EF0ADE, - F6B282A302011D1D01EF0ADE, - F6B282A402011D1D01EF0ADE, - F6B282A502011D1D01EF0ADE, - F6B282A602011D1D01EF0ADE, - F6B282A702011D1D01EF0ADE, - F6B282A802011D1D01EF0ADE, - F6B282A902011D1D01EF0ADE, - ); - isa = PBXHeadersBuildPhase; - name = Headers; - }; - F6B2829E02011D1D01EF0ADE = { - fileRef = F616C3E80200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2829F02011D1D01EF0ADE = { - fileRef = F616C3E90200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282A002011D1D01EF0ADE = { - fileRef = F616C3EC0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282A102011D1D01EF0ADE = { - fileRef = F616C3ED0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282A202011D1D01EF0ADE = { - fileRef = F616C3F00200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282A302011D1D01EF0ADE = { - fileRef = F616C3F10200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282A402011D1D01EF0ADE = { - fileRef = F616C3F30200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282A502011D1D01EF0ADE = { - fileRef = F616C3F60200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282A602011D1D01EF0ADE = { - fileRef = F616C3F80200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282A702011D1D01EF0ADE = { - fileRef = F616C3FB0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282A802011D1D01EF0ADE = { - fileRef = F616C3FC0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282A902011D1D01EF0ADE = { - fileRef = F616C3FE0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282AA02011D1D01EF0ADE = { - buildActionMask = 2147483647; - files = ( - F6B282AB02011D1D01EF0ADE, - F6B282AC02011D1D01EF0ADE, - F6B282AD02011D1D01EF0ADE, - F6B282AE02011D1D01EF0ADE, - F6B282AF02011D1D01EF0ADE, - F6B282B002011D1D01EF0ADE, - F6B282B102011D1D01EF0ADE, - F6B282B202011D1D01EF0ADE, - F6B282B302011D1D01EF0ADE, - F6B282B402011D1D01EF0ADE, - ); - isa = PBXSourcesBuildPhase; - name = Sources; - }; - F6B282AB02011D1D01EF0ADE = { - fileRef = F6B2829802011D1D01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282AC02011D1D01EF0ADE = { - fileRef = F6B2829902011D1D01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282AD02011D1D01EF0ADE = { - fileRef = F616C3E70200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282AE02011D1D01EF0ADE = { - fileRef = F616C3EE0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282AF02011D1D01EF0ADE = { - fileRef = F616C3EF0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282B002011D1D01EF0ADE = { - fileRef = F616C3F40200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282B102011D1D01EF0ADE = { - fileRef = F616C3F50200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282B202011D1D01EF0ADE = { - fileRef = F616C3F70200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282B302011D1D01EF0ADE = { - fileRef = F616C3FA0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282B402011D1D01EF0ADE = { - fileRef = F616C3FD0200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282B502011D1D01EF0ADE = { - buildActionMask = 2147483647; - files = ( - F6B282BB02011D7201EF0ADE, - ); - isa = PBXFrameworksBuildPhase; - name = "Frameworks & Libraries"; - }; - F6B282B602011D1D01EF0ADE = { - buildActionMask = 2147483647; - files = ( - ); - isa = PBXRezBuildPhase; - name = "ResourceManager Resources"; - }; - F6B282BB02011D7201EF0ADE = { - fileRef = F616C3640200B08E01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282BC02011F8A01EF0ADE = { - buildArgumentsString = "-f Helpers.make msg_preprocess_$ACTION"; - buildPhases = ( - ); - buildSettings = { - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PRODUCT_NAME = "gpre msg files"; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; - }; - buildToolPath = /usr/bin/gnumake; - dependencies = ( - F6B282C60201200901EF0ADE, - F6B282C70201200901EF0ADE, - ); - isa = PBXLegacyTarget; - name = "gpre msg files"; - productName = "gpre msg files"; - settingsToExpand = 6; - settingsToPassInEnvironment = 287; - settingsToPassOnCommandLine = 280; - shouldUseHeadermap = 0; - }; - F6B282BD0201200901EF0ADE = { - isa = PBXFileReference; - path = build_file.cpp; - refType = 4; - }; - F6B282BE0201200901EF0ADE = { - isa = PBXFileReference; - path = change_msgs.cpp; - refType = 4; - }; - F6B282BF0201200901EF0ADE = { - isa = PBXFileReference; - path = check_msgs.cpp; - refType = 4; - }; - F6B282C00201200901EF0ADE = { - isa = PBXFileReference; - path = enter_msgs.cpp; - refType = 4; - }; - F6B282C10201200901EF0ADE = { - isa = PBXFileReference; - path = load.cpp; - refType = 4; - }; - F6B282C20201200901EF0ADE = { - isa = PBXFileReference; - path = modify_msgs.cpp; - refType = 4; - }; - F6B282C30201200901EF0ADE = { - isa = PBXExecutableFileReference; - path = check_msgs; - refType = 3; - }; - F6B282C40201200901EF0ADE = { - buildPhases = ( - F6B282C80201200901EF0ADE, - F6B282C90201200901EF0ADE, - F6B282CB0201200901EF0ADE, - F6B282CD0201200901EF0ADE, - ); - buildSettings = { - HEADER_SEARCH_PATHS = ../../../src/include; - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PREBINDING = NO; - PRODUCT_NAME = check_msgs; - REZ_EXECUTABLE = YES; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; - }; - dependencies = ( - F6B282C50201200901EF0ADE, - ); - isa = PBXToolTarget; - name = check_msgs; - productInstallPath = /usr/local/bin; - productName = check_msgs; - productReference = F6B282C30201200901EF0ADE; - shouldUseHeadermap = 0; - }; - F6B282C50201200901EF0ADE = { - isa = PBXTargetDependency; - target = F6B282BC02011F8A01EF0ADE; - }; - F6B282C60201200901EF0ADE = { - isa = PBXTargetDependency; - target = F6B282730201192101EF0ADE; - }; - F6B282C70201200901EF0ADE = { - isa = PBXTargetDependency; - target = F6B2820C0200D1DC01EF0ADE; - }; - F6B282C80201200901EF0ADE = { - buildActionMask = 2147483647; - files = ( - ); - isa = PBXHeadersBuildPhase; - name = Headers; - }; - F6B282C90201200901EF0ADE = { - buildActionMask = 2147483647; - files = ( - F6B282CA0201200901EF0ADE, - ); - isa = PBXSourcesBuildPhase; - name = Sources; - }; - F6B282CA0201200901EF0ADE = { - fileRef = F6B282BF0201200901EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282CB0201200901EF0ADE = { - buildActionMask = 2147483647; - files = ( - F6B282CC0201200901EF0ADE, - ); - isa = PBXFrameworksBuildPhase; - name = "Frameworks & Libraries"; - }; - F6B282CC0201200901EF0ADE = { - fileRef = F616C3640200B08E01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282CD0201200901EF0ADE = { - buildActionMask = 2147483647; - files = ( - ); - isa = PBXRezBuildPhase; - name = "ResourceManager Resources"; - }; - F6B282D20201209D01EF0ADE = { - isa = PBXExecutableFileReference; - path = build_file; - refType = 3; - }; - F6B282D30201209E01EF0ADE = { - buildPhases = ( - F6B282D70201209E01EF0ADE, - F6B282D80201209E01EF0ADE, - F6B282DA0201209E01EF0ADE, - F6B282DC0201209E01EF0ADE, - ); - buildSettings = { - HEADER_SEARCH_PATHS = ../../../src/include; - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PREBINDING = NO; - PRODUCT_NAME = build_file; - REZ_EXECUTABLE = YES; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; - }; - dependencies = ( - F6B282D40201209E01EF0ADE, - F6B282D50201209E01EF0ADE, - F6B282D60201209E01EF0ADE, - ); - isa = PBXToolTarget; - name = build_file; - productInstallPath = /usr/local/bin; - productName = build_file; - productReference = F6B282D20201209D01EF0ADE; - shouldUseHeadermap = 0; - }; - F6B282D40201209E01EF0ADE = { - isa = PBXTargetDependency; - target = F6B282730201192101EF0ADE; - }; - F6B282D50201209E01EF0ADE = { - isa = PBXTargetDependency; - target = F6B282BC02011F8A01EF0ADE; - }; - F6B282D60201209E01EF0ADE = { - isa = PBXTargetDependency; - target = F616C36A0200B08E01EF0ADE; - }; - F6B282D70201209E01EF0ADE = { - buildActionMask = 2147483647; - files = ( - ); - isa = PBXHeadersBuildPhase; - name = Headers; - }; - F6B282D80201209E01EF0ADE = { - buildActionMask = 2147483647; - files = ( - F6B282D90201209E01EF0ADE, - ); - isa = PBXSourcesBuildPhase; - name = Sources; - }; - F6B282D90201209E01EF0ADE = { - fileRef = F6B282BD0201200901EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282DA0201209E01EF0ADE = { - buildActionMask = 2147483647; - files = ( - F6B282DB0201209E01EF0ADE, - ); - isa = PBXFrameworksBuildPhase; - name = "Frameworks & Libraries"; - }; - F6B282DB0201209E01EF0ADE = { - fileRef = F616C3640200B08E01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282DC0201209E01EF0ADE = { - buildActionMask = 2147483647; - files = ( - ); - isa = PBXRezBuildPhase; - name = "ResourceManager Resources"; - }; - F6B282E10201247D01EF0ADE = { - buildArgumentsString = "-f Helpers.make messages_$ACTION"; - buildPhases = ( - ); - buildSettings = { - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PRODUCT_NAME = "messages file"; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; - }; - buildToolPath = /usr/bin/gnumake; - buildWorkingDirectory = ""; - dependencies = ( - F6B282E2020124AC01EF0ADE, - F6B282E3020124AC01EF0ADE, - ); - isa = PBXLegacyTarget; - name = "messages file"; - productName = "messages file"; - settingsToExpand = 6; - settingsToPassInEnvironment = 287; - settingsToPassOnCommandLine = 280; - shouldUseHeadermap = 0; - }; - F6B282E2020124AC01EF0ADE = { - isa = PBXTargetDependency; - target = F6B282D30201209E01EF0ADE; - }; - F6B282E3020124AC01EF0ADE = { - isa = PBXTargetDependency; - target = F6B282C40201200901EF0ADE; - }; - F6B282E4020125B001EF0ADE = { - isa = PBXFileReference; - path = extract.cpp; - refType = 4; - }; - F6B282E5020125B001EF0ADE = { - isa = PBXFileReference; - path = isql.cpp; - refType = 4; - }; - F6B282E6020125B001EF0ADE = { - isa = PBXFileReference; - path = show.cpp; - refType = 4; - }; - F6B282E7020125B001EF0ADE = { - isa = PBXExecutableFileReference; - path = isql; - refType = 3; - }; - F6B282E8020125B101EF0ADE = { - buildPhases = ( - F6B282EE020125B101EF0ADE, - F6B282EF020125B101EF0ADE, - F6B282F3020125B101EF0ADE, - F6B282F5020125B101EF0ADE, - ); - buildSettings = { - HEADER_SEARCH_PATHS = ../../../src/include; - LIBRARY_SEARCH_PATHS = /usr/lib/gcc/darwin/2.95.2; - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PREBINDING = NO; - PRODUCT_NAME = isql; - REZ_EXECUTABLE = YES; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; - }; - dependencies = ( - F6B282E9020125B101EF0ADE, - F6B282EA020125B101EF0ADE, - ); - isa = PBXToolTarget; - name = isql; - productInstallPath = /usr/local/bin; - productName = isql; - productReference = F6B282E7020125B001EF0ADE; - shouldUseHeadermap = 0; - }; - F6B282E9020125B101EF0ADE = { - isa = PBXTargetDependency; - target = F616C36A0200B08E01EF0ADE; - }; - F6B282EA020125B101EF0ADE = { - isa = PBXTargetDependency; - target = F6B282EB020125B101EF0ADE; - }; - F6B282EB020125B101EF0ADE = { - buildArgumentsString = "-f Helpers.make isql_preprocess_$ACTION"; - buildPhases = ( - ); - buildSettings = { - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PRODUCT_NAME = "gpre isql files"; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; - }; - buildToolPath = /usr/bin/gnumake; - dependencies = ( - F6B282EC020125B101EF0ADE, - F6B282ED020125B101EF0ADE, - ); - isa = PBXLegacyTarget; - name = "gpre isql files"; - productName = "gpre isql files"; - settingsToExpand = 6; - settingsToPassInEnvironment = 287; - settingsToPassOnCommandLine = 280; - shouldUseHeadermap = 0; - }; - F6B282EC020125B101EF0ADE = { - isa = PBXTargetDependency; - target = F6B2820C0200D1DC01EF0ADE; - }; - F6B282ED020125B101EF0ADE = { - isa = PBXTargetDependency; - target = F6B2824F0200E55001EF0ADE; - }; - F6B282EE020125B101EF0ADE = { - buildActionMask = 2147483647; - files = ( - ); - isa = PBXHeadersBuildPhase; - name = Headers; - }; - F6B282EF020125B101EF0ADE = { - buildActionMask = 2147483647; - files = ( - F6B282F0020125B101EF0ADE, - F6B282F1020125B101EF0ADE, - F6B282F2020125B101EF0ADE, - ); - isa = PBXSourcesBuildPhase; - name = Sources; - }; - F6B282F0020125B101EF0ADE = { - fileRef = F6B282E4020125B001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282F1020125B101EF0ADE = { - fileRef = F6B282E5020125B001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282F2020125B101EF0ADE = { - fileRef = F6B282E6020125B001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282F3020125B101EF0ADE = { - buildActionMask = 2147483647; - files = ( - F6B282F4020125B101EF0ADE, - F6DF3E3B02EA965C01A86432, - ); - isa = PBXFrameworksBuildPhase; - name = "Frameworks & Libraries"; - }; - F6B282F4020125B101EF0ADE = { - fileRef = F616C3640200B08E01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B282F5020125B101EF0ADE = { - buildActionMask = 2147483647; - files = ( - ); - isa = PBXRezBuildPhase; - name = "ResourceManager Resources"; - }; - F6B282FA0201261201EF0ADE = { - buildArgumentsString = "-f Helpers.make isc4.gdb_$ACTION"; - buildPhases = ( - ); - buildSettings = { - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PRODUCT_NAME = isc4.gdb; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; - }; - buildToolPath = /usr/bin/gnumake; - dependencies = ( - F6B282FC0201269601EF0ADE, - F6B282FD0201269601EF0ADE, - F6B282FE0201269601EF0ADE, - F6B282FB0201265E01EF0ADE, - ); - isa = PBXLegacyTarget; - name = isc4.gdb; - productName = isc4.gdb; - settingsToExpand = 6; - settingsToPassInEnvironment = 287; - settingsToPassOnCommandLine = 280; - shouldUseHeadermap = 0; - }; - F6B282FB0201265E01EF0ADE = { - isa = PBXTargetDependency; - target = F6B2829B02011D1D01EF0ADE; - }; - F6B282FC0201269601EF0ADE = { - isa = PBXTargetDependency; - target = F6B28259020116EB01EF0ADE; - }; - F6B282FD0201269601EF0ADE = { - isa = PBXTargetDependency; - target = F6B282E10201247D01EF0ADE; - }; - F6B282FE0201269601EF0ADE = { - isa = PBXTargetDependency; - target = F6B282E8020125B101EF0ADE; - }; - F6B282FF02012A6701EF0ADE = { - isa = PBXExecutableFileReference; - path = gsec; - refType = 3; - }; - F6B2830002012A6801EF0ADE = { - buildPhases = ( - F6B2830402012A6801EF0ADE, - F6B2830702012A6801EF0ADE, - F6B2830A02012A6801EF0ADE, - F6B2830B02012A6801EF0ADE, - ); - buildSettings = { - HEADER_SEARCH_PATHS = ../../../src/include; - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PREBINDING = NO; - PRODUCT_NAME = gsec; - REZ_EXECUTABLE = YES; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; - }; - dependencies = ( - F6B2830102012A6801EF0ADE, - ); - isa = PBXToolTarget; - name = gsec; - productInstallPath = /usr/local/bin; - productName = gsec; - productReference = F6B282FF02012A6701EF0ADE; - shouldUseHeadermap = 0; - }; - F6B2830102012A6801EF0ADE = { - isa = PBXTargetDependency; - target = F6B2830202012A6801EF0ADE; - }; - F6B2830202012A6801EF0ADE = { - buildArgumentsString = "-f Helpers.make security_preprocess_$ACTION"; - buildPhases = ( - ); - buildSettings = { - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PRODUCT_NAME = "gpre security files"; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; - }; - buildToolPath = /usr/bin/gnumake; - dependencies = ( - F6B2830302012A6801EF0ADE, - ); - isa = PBXLegacyTarget; - name = "gpre security files"; - productName = "gpre security files"; - settingsToExpand = 6; - settingsToPassInEnvironment = 287; - settingsToPassOnCommandLine = 280; - shouldUseHeadermap = 0; - }; - F6B2830302012A6801EF0ADE = { - isa = PBXTargetDependency; - target = F6B282FA0201261201EF0ADE; - }; - F6B2830402012A6801EF0ADE = { - buildActionMask = 2147483647; - files = ( - F6B2830502012A6801EF0ADE, - F6B2830602012A6801EF0ADE, - ); - isa = PBXHeadersBuildPhase; - name = Headers; - }; - F6B2830502012A6801EF0ADE = { - fileRef = F616C8D60200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2830602012A6801EF0ADE = { - fileRef = F616C8F70200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2830702012A6801EF0ADE = { - buildActionMask = 2147483647; - files = ( - F6B2830802012A6801EF0ADE, - F6B2830902012A6801EF0ADE, - ); - isa = PBXSourcesBuildPhase; - name = Sources; - }; - F6B2830802012A6801EF0ADE = { - fileRef = F6B281650200CC3601EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2830902012A6801EF0ADE = { - fileRef = F616C8D50200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2830A02012A6801EF0ADE = { - buildActionMask = 2147483647; - files = ( - F6B2830D02012ACE01EF0ADE, - ); - isa = PBXFrameworksBuildPhase; - name = "Frameworks & Libraries"; - }; - F6B2830B02012A6801EF0ADE = { - buildActionMask = 2147483647; - files = ( - ); - isa = PBXRezBuildPhase; - name = "ResourceManager Resources"; - }; - F6B2830D02012ACE01EF0ADE = { - fileRef = F616C3640200B08E01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2831102013C4701EF0ADE = { - isa = PBXTargetDependency; - target = F616C36A0200B08E01EF0ADE; - }; - F6B2832702021DAA01EF0ADE = { - isa = PBXTargetDependency; - target = F616CF530200BA9301EF0ADE; - }; - F6B2832802021DCB01EF0ADE = { - isa = PBXExecutableFileReference; - path = qli; - refType = 3; - }; - F6B2832902021DCB01EF0ADE = { - buildPhases = ( - F6B2832A02021DCB01EF0ADE, - F6B2832B02021DCB01EF0ADE, - F6B2832C02021DCB01EF0ADE, - F6B2832D02021DCB01EF0ADE, - ); - buildSettings = { - HEADER_SEARCH_PATHS = ../../../src/include; - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PREBINDING = NO; - PRODUCT_NAME = qli; - REZ_EXECUTABLE = YES; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; - }; - dependencies = ( - F6B283340202209301EF0ADE, - F6B283350202209301EF0ADE, - ); - isa = PBXToolTarget; - name = qli; - productInstallPath = /usr/local/bin; - productName = qli; - productReference = F6B2832802021DCB01EF0ADE; - shouldUseHeadermap = 0; - }; - F6B2832A02021DCB01EF0ADE = { - buildActionMask = 2147483647; - files = ( - F6B2833E020220A601EF0ADE, - F6B283400202210401EF0ADE, - F6B283410202210401EF0ADE, - F6B283420202210401EF0ADE, - F6B283430202210401EF0ADE, - F6B283440202210401EF0ADE, - F6B283450202210401EF0ADE, - F6B283460202210401EF0ADE, - F6B283470202210401EF0ADE, - F6B283480202210401EF0ADE, - F6B283490202210401EF0ADE, - F6B2834A0202210401EF0ADE, - F6B2834B0202210401EF0ADE, - F6B2834C0202210401EF0ADE, - F6B2834D0202210401EF0ADE, - F6B2834E0202210401EF0ADE, - F6B2834F0202210401EF0ADE, - F6B283500202210401EF0ADE, - F6B283510202210401EF0ADE, - F6B283520202210401EF0ADE, - F6B283530202210401EF0ADE, - F6B283540202210401EF0ADE, - F6B283550202210401EF0ADE, - F6B283560202210401EF0ADE, - F6B283570202210401EF0ADE, - F6B283580202210401EF0ADE, - F6B283590202210401EF0ADE, - F6B2835A0202210401EF0ADE, - ); - isa = PBXHeadersBuildPhase; - name = Headers; - }; - F6B2832B02021DCB01EF0ADE = { - buildActionMask = 2147483647; - files = ( - F6B283390202209301EF0ADE, - F6B2833A0202209301EF0ADE, - F6B2833B0202209301EF0ADE, - F6B2833C0202209301EF0ADE, - F6B2833F020220A601EF0ADE, - F6B2835B0202210401EF0ADE, - F6B2835C0202210401EF0ADE, - F6B2835D0202210401EF0ADE, - F6B2835E0202210401EF0ADE, - F6B2835F0202210401EF0ADE, - F6B283600202210401EF0ADE, - F6B283610202210401EF0ADE, - F6B283620202210401EF0ADE, - F6B283630202210401EF0ADE, - F6B283640202210401EF0ADE, - F6B283650202210401EF0ADE, - F6B283660202210401EF0ADE, - F6B283670202210401EF0ADE, - F6B283680202210401EF0ADE, - F6B283690202210401EF0ADE, - F6B2836A0202210401EF0ADE, - ); - isa = PBXSourcesBuildPhase; - name = Sources; - }; - F6B2832C02021DCB01EF0ADE = { - buildActionMask = 2147483647; - files = ( - F6B2833D0202209301EF0ADE, - ); - isa = PBXFrameworksBuildPhase; - name = "Frameworks & Libraries"; - }; - F6B2832D02021DCB01EF0ADE = { - buildActionMask = 2147483647; - files = ( - ); - isa = PBXRezBuildPhase; - name = "ResourceManager Resources"; - }; - F6B2832F02021EE101EF0ADE = { - buildActionMask = 2147483647; - files = ( - ); - generatedFileNames = ( - ); - isa = PBXShellScriptBuildPhase; - name = "Shell Script"; - neededFileNames = ( - ); - shellPath = /bin/sh; - shellScript = "./make_wrapper.sh fb_fw_var"; - }; - F6B283300202209301EF0ADE = { - isa = PBXFileReference; - path = help.cpp; - refType = 4; - }; - F6B283310202209301EF0ADE = { - isa = PBXFileReference; - path = meta.cpp; - refType = 4; - }; - F6B283320202209301EF0ADE = { - isa = PBXFileReference; - path = proc.cpp; - refType = 4; - }; - F6B283330202209301EF0ADE = { - isa = PBXFileReference; - path = show.cpp; - refType = 4; - }; - F6B283340202209301EF0ADE = { - isa = PBXTargetDependency; - target = F616C36A0200B08E01EF0ADE; - }; - F6B283350202209301EF0ADE = { - isa = PBXTargetDependency; - target = F6B283360202209301EF0ADE; - }; - F6B283360202209301EF0ADE = { - buildArgumentsString = "-f Helpers.make qli_preprocess_$ACTION"; - buildPhases = ( - ); - buildSettings = { - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PRODUCT_NAME = "gpre qli files"; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; - }; - buildToolPath = /usr/bin/gnumake; - buildWorkingDirectory = ""; - dependencies = ( - F6B283370202209301EF0ADE, - F6B283380202209301EF0ADE, - ); - isa = PBXLegacyTarget; - name = "gpre qli files"; - productName = "gpre qli files"; - settingsToExpand = 6; - settingsToPassInEnvironment = 287; - settingsToPassOnCommandLine = 280; - shouldUseHeadermap = 0; - }; - F6B283370202209301EF0ADE = { - isa = PBXTargetDependency; - target = F6B282730201192101EF0ADE; - }; - F6B283380202209301EF0ADE = { - isa = PBXTargetDependency; - target = F6B2820C0200D1DC01EF0ADE; - }; - F6B283390202209301EF0ADE = { - fileRef = F6B283300202209301EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2833A0202209301EF0ADE = { - fileRef = F6B283310202209301EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2833B0202209301EF0ADE = { - fileRef = F6B283320202209301EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2833C0202209301EF0ADE = { - fileRef = F6B283330202209301EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2833D0202209301EF0ADE = { - fileRef = F616C3640200B08E01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2833E020220A601EF0ADE = { - fileRef = F616C8290200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2833F020220A601EF0ADE = { - fileRef = F616C8280200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B283400202210401EF0ADE = { - fileRef = F616C82B0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B283410202210401EF0ADE = { - fileRef = F616C82D0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B283420202210401EF0ADE = { - fileRef = F616C82F0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B283430202210401EF0ADE = { - fileRef = F616C8320200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B283440202210401EF0ADE = { - fileRef = F616C8340200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B283450202210401EF0ADE = { - fileRef = F616C8360200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B283460202210401EF0ADE = { - fileRef = F616C8370200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B283470202210401EF0ADE = { - fileRef = F616C8390200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B283480202210401EF0ADE = { - fileRef = F616C83A0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B283490202210401EF0ADE = { - fileRef = F616C83B0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2834A0202210401EF0ADE = { - fileRef = F616C8400200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2834B0202210401EF0ADE = { - fileRef = F616C8420200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2834C0202210401EF0ADE = { - fileRef = F616C8440200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2834D0202210401EF0ADE = { - fileRef = F616C8460200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2834E0202210401EF0ADE = { - fileRef = F616C8480200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2834F0202210401EF0ADE = { - fileRef = F616C84A0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B283500202210401EF0ADE = { - fileRef = F616C84D0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B283510202210401EF0ADE = { - fileRef = F616C84F0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B283520202210401EF0ADE = { - fileRef = F616C8530200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B283530202210401EF0ADE = { - fileRef = F616C8540200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B283540202210401EF0ADE = { - fileRef = F616C8550200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B283550202210401EF0ADE = { - fileRef = F616C8580200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B283560202210401EF0ADE = { - fileRef = F616C8590200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B283570202210401EF0ADE = { - fileRef = F616C85E0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B283580202210401EF0ADE = { - fileRef = F616C8600200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B283590202210401EF0ADE = { - fileRef = F616C8630200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2835A0202210401EF0ADE = { - fileRef = F616C8650200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2835B0202210401EF0ADE = { - fileRef = F616C82E0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2835C0202210401EF0ADE = { - fileRef = F616C82C0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2835D0202210401EF0ADE = { - fileRef = F616C8310200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2835E0202210401EF0ADE = { - fileRef = F616C8330200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2835F0202210401EF0ADE = { - fileRef = F616C8350200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B283600202210401EF0ADE = { - fileRef = F616C8380200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B283610202210401EF0ADE = { - fileRef = F616C83C0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B283620202210401EF0ADE = { - fileRef = F616C8410200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B283630202210401EF0ADE = { - fileRef = F616C8430200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B283640202210401EF0ADE = { - fileRef = F616C8470200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B283650202210401EF0ADE = { - fileRef = F616C8490200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B283660202210401EF0ADE = { - fileRef = F616C84E0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B283670202210401EF0ADE = { - fileRef = F616C8500200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B283680202210401EF0ADE = { - fileRef = F616C8520200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B283690202210401EF0ADE = { - fileRef = F616C8560200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2836A0202210401EF0ADE = { - fileRef = F616C85F0200B0D001EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2836E02022DD201EF0ADE = { - isa = PBXBundleReference; - path = local_user.bundle; - refType = 3; - }; - F6B2837002022DD201EF0ADE = { - buildPhases = ( - F6B2837102022DD201EF0ADE, - F6B2837202022DD201EF0ADE, - F6B2837302022DD201EF0ADE, - F6B2837402022DD201EF0ADE, - F6B2837502022DD201EF0ADE, - ); - buildSettings = { - INSTALL_PATH = ""; - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = "-bundle -flat_namespace -undefined suppress"; - OTHER_REZFLAGS = ""; - PREBINDING = NO; - PRODUCT_NAME = local_user; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; - WRAPPER_EXTENSION = bundle; - }; - dependencies = ( - ); - isa = PBXBundleTarget; - name = "local user authenticator"; - productInstallPath = ""; - productName = "local user authenticator"; - productReference = F6B2836E02022DD201EF0ADE; - productSettingsXML = " - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - local_user - CFBundleGetInfoString - - CFBundleIconFile - - CFBundleIdentifier - - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - - CFBundlePackageType - BNDL - CFBundleShortVersionString - - CFBundleSignature - ???? - CFBundleVersion - 0.0.1d1 - - -"; - shouldUseHeadermap = 0; - }; - F6B2837102022DD201EF0ADE = { - buildActionMask = 2147483647; - files = ( - ); - isa = PBXHeadersBuildPhase; - name = Headers; - }; - F6B2837202022DD201EF0ADE = { - buildActionMask = 2147483647; - files = ( - ); - isa = PBXResourcesBuildPhase; - name = "Bundle Resources"; - }; - F6B2837302022DD201EF0ADE = { - buildActionMask = 2147483647; - files = ( - F6B2837602022E4101EF0ADE, - ); - isa = PBXSourcesBuildPhase; - name = Sources; - }; - F6B2837402022DD201EF0ADE = { - buildActionMask = 2147483647; - files = ( - ); - isa = PBXFrameworksBuildPhase; - name = "Frameworks & Libraries"; - }; - F6B2837502022DD201EF0ADE = { - buildActionMask = 2147483647; - files = ( - ); - isa = PBXRezBuildPhase; - name = "ResourceManager Resources"; - }; - F6B2837602022E4101EF0ADE = { - fileRef = F616C5720200B0CF01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6B2837A020363B701EF0ADE = { - buildArgumentsString = "-f Helpers.make fw_files_$ACTION"; - buildPhases = ( - ); - buildSettings = { - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PRODUCT_NAME = "add framework resources"; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; - }; - buildToolPath = /usr/bin/gnumake; - dependencies = ( - F6B2837B020363B701EF0ADE, - F6B2837C020363B701EF0ADE, - F6B2837D020363B701EF0ADE, - F6B2837E020363B701EF0ADE, - F6B2837F020363B701EF0ADE, - F6B28380020363B701EF0ADE, - F6B28381020363B701EF0ADE, - F6B28382020363B701EF0ADE, - F6B28383020363B701EF0ADE, - F6B28384020363B701EF0ADE, - ); - isa = PBXLegacyTarget; - name = "add framework resources"; - productName = "add framework resources"; - settingsToExpand = 6; - settingsToPassInEnvironment = 287; - settingsToPassOnCommandLine = 280; - shouldUseHeadermap = 0; - }; - F6B2837B020363B701EF0ADE = { - isa = PBXTargetDependency; - target = F616C36A0200B08E01EF0ADE; - }; - F6B2837C020363B701EF0ADE = { - isa = PBXTargetDependency; - target = F6B282E8020125B101EF0ADE; - }; - F6B2837D020363B701EF0ADE = { - isa = PBXTargetDependency; - target = F6B2832902021DCB01EF0ADE; - }; - F6B2837E020363B701EF0ADE = { - isa = PBXTargetDependency; - target = F6B2820C0200D1DC01EF0ADE; - }; - F6B2837F020363B701EF0ADE = { - isa = PBXTargetDependency; - target = F6B2827A02011B4B01EF0ADE; - }; - F6B28380020363B701EF0ADE = { - isa = PBXTargetDependency; - target = F6B28259020116EB01EF0ADE; - }; - F6B28381020363B701EF0ADE = { - isa = PBXTargetDependency; - target = F6B2829B02011D1D01EF0ADE; - }; - F6B28382020363B701EF0ADE = { - isa = PBXTargetDependency; - target = F6B2830002012A6801EF0ADE; - }; - F6B28383020363B701EF0ADE = { - isa = PBXTargetDependency; - target = F6B282E10201247D01EF0ADE; - }; - F6B28384020363B701EF0ADE = { - isa = PBXTargetDependency; - target = F6B282FA0201261201EF0ADE; - }; - F6B283850203716801EF0ADE = { - buildArgumentsString = "-f Helpers.make installer_$ACTION"; - buildPhases = ( - ); - buildSettings = { - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PRODUCT_NAME = "installer package"; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; - }; - buildToolPath = /usr/bin/gnumake; - buildWorkingDirectory = ""; - dependencies = ( - F654BFB20262859901C1F659, - F6B283860203716801EF0ADE, - F66FEC090259586B01EF0AD1, - ); - isa = PBXLegacyTarget; - name = "installer package"; - productName = "installer package"; - settingsToExpand = 6; - settingsToPassInEnvironment = 287; - settingsToPassOnCommandLine = 280; - shouldUseHeadermap = 0; - }; - F6B283860203716801EF0ADE = { - isa = PBXTargetDependency; - target = F6B2837A020363B701EF0ADE; - }; - F6B2838A02047A1D01EF0ADE = { - isa = PBXExecutableFileReference; - path = "tcs tester"; - refType = 3; - }; - F6B2838B02047A1D01EF0ADE = { - buildPhases = ( - F6B2838C02047A1D01EF0ADE, - F6B2838D02047A1D01EF0ADE, - F6B2838E02047A1D01EF0ADE, - F6B2838F02047A1D01EF0ADE, - ); - buildSettings = { - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PRODUCT_NAME = "tcs tester"; - REZ_EXECUTABLE = YES; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; - }; - dependencies = ( - ); - isa = PBXToolTarget; - name = "tcs tester"; - productInstallPath = /usr/local/bin; - productName = "tcs tester"; - productReference = F6B2838A02047A1D01EF0ADE; - shouldUseHeadermap = 0; - }; - F6B2838C02047A1D01EF0ADE = { - buildActionMask = 2147483647; - files = ( - ); - isa = PBXHeadersBuildPhase; - name = Headers; - }; - F6B2838D02047A1D01EF0ADE = { - buildActionMask = 2147483647; - files = ( - ); - isa = PBXSourcesBuildPhase; - name = Sources; - }; - F6B2838E02047A1D01EF0ADE = { - buildActionMask = 2147483647; - files = ( - F6B2839302047A7701EF0ADE, - ); - isa = PBXFrameworksBuildPhase; - name = "Frameworks & Libraries"; - }; - F6B2838F02047A1D01EF0ADE = { - buildActionMask = 2147483647; - files = ( - ); - isa = PBXRezBuildPhase; - name = "ResourceManager Resources"; - }; - F6B2839302047A7701EF0ADE = { - fileRef = F616CF480200B4EE01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6D5B451025C050401EF0AD1 = { - isa = PBXExecutableFileReference; - path = "testing tool"; - refType = 3; - }; - F6D5B453025C050501EF0AD1 = { - buildPhases = ( - F6D5B454025C050501EF0AD1, - F6D5B455025C050501EF0AD1, - F6D5B457025C050501EF0AD1, - F6D5B459025C050501EF0AD1, - ); - buildSettings = { - INSTALL_PATH = ""; - OTHER_CFLAGS = "-fsyntax-only"; - OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PRODUCT_NAME = "testing tool"; - REZ_EXECUTABLE = YES; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas"; - }; - dependencies = ( - ); - isa = PBXToolTarget; - name = "testing tool"; - productInstallPath = ""; - productName = "testing tool"; - productReference = F6D5B451025C050401EF0AD1; - shouldUseHeadermap = 0; - }; - F6D5B454025C050501EF0AD1 = { - buildActionMask = 2147483647; - files = ( - ); - isa = PBXHeadersBuildPhase; - name = Headers; - }; - F6D5B455025C050501EF0AD1 = { - buildActionMask = 2147483647; - files = ( - ); - isa = PBXSourcesBuildPhase; - name = Sources; - }; - F6D5B457025C050501EF0AD1 = { - buildActionMask = 2147483647; - files = ( - F6D5B458025C050501EF0AD1, - ); - isa = PBXFrameworksBuildPhase; - name = "Frameworks & Libraries"; - }; - F6D5B458025C050501EF0AD1 = { - fileRef = F616C3640200B08E01EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - F6D5B459025C050501EF0AD1 = { - buildActionMask = 2147483647; - files = ( - ); - isa = PBXRezBuildPhase; - name = "ResourceManager Resources"; - }; - F6D5B461025D6CDB01EF0AD1 = { - isa = PBXFileReference; - path = intl_builtin.cpp; - refType = 4; - }; - F6D5B462025D6CDC01EF0AD1 = { - fileRef = F6D5B461025D6CDB01EF0AD1; - isa = PBXBuildFile; - settings = { - }; - }; - F6D5B463025D6F2D01EF0AD1 = { - isa = PBXFileReference; - path = intl_classes.h; - refType = 4; - }; - F6D5B464025D6F2D01EF0AD1 = { - fileRef = F6D5B463025D6F2D01EF0AD1; - isa = PBXBuildFile; - settings = { - }; - }; - F6DF3E3B02EA965C01A86432 = { - fileRef = F616CF500200B72801EF0ADE; - isa = PBXBuildFile; - settings = { - }; - }; - }; - rootObject = F616C35D0200AA0401EF0ADE; -} diff --git a/builds/mac_os_x/CS/Helpers.make b/builds/mac_os_x/CS/Helpers.make deleted file mode 100644 index 8a8b13c2387..00000000000 --- a/builds/mac_os_x/CS/Helpers.make +++ /dev/null @@ -1,329 +0,0 @@ -PWD_CURR= $(shell pwd) -PROJ_ROOT:= $(PWD_CURR) -FB2_ROOT= $(PROJ_ROOT)/../../.. -GEN_ROOT= $(FB2_ROOT)/gen -SRC_ROOT= $(FB2_ROOT)/src -FIREBIRD= $(GEN_ROOT)/firebird -BIN_ROOT= $(FIREBIRD)/bin -DB_ROOT= $(GEN_ROOT)/refDatabases -BUILD_DIR= $(PROJ_ROOT)/build -FW= $(BUILD_DIR)/Firebird.framework -VAR= $(FW)/Versions/Current/Resources/English.lproj/var - -DYLD_FRAMEWORK_PATH=$(BUILD_DIR) -export DYLD_FRAMEWORK_PATH - - -GPRE_BOOT= $(BUILD_DIR)/gpre_bootstrap -GPRE= $(BUILD_DIR)/gpre -GBAK= $(BUILD_DIR)/gbak -CREATE_DB= $(BUILD_DIR)/create_db -LOCK_MGR= $(BUILD_DIR)/gds_lock_mgr -GFIX= $(BUILD_DIR)/gfix -ISQL= $(BUILD_DIR)/isql -GSEC= $(BUILD_DIR)/gsec -CHECK_MSGS= $(BUILD_DIR)/check_msgs -BUILD_MSGS= $(BUILD_DIR)/build_file -SEC_AUTH= $(VAR)/auth/security_db.auth -LOCAL_USER_AUTH= $(VAR)/auth/current_euid.auth - -EMPTY_DB= $(DB_ROOT)/empty.gdb -MSG_DB= $(DB_ROOT)/msg.gdb -META_DB= $(DB_ROOT)/metadata.gdb -ISC_DB= $(FIREBIRD)/isc4.gdb -ISC_GBAK= $(FIREBIRD)/isc.gbak -MSG_FILE= $(FIREBIRD)/interbase.msg -MSG_INDICATOR= $(GEN_ROOT)/msgs/indicator.msg - -PS_FW_FLAG= $(GEN_ROOT)/firebird/.pseudo_framework_flag -UPG_FW_FLAG= $(GEN_ROOT)/firebird/.upgrade_framework_flag -FULL_FW_FLAG= $(GEN_ROOT)/firebird/.full_framework_flag - -FB_FW= $(PROJ_ROOT)/build/Firebird.framework - - -JRD_EPP_FILES= blob_filter.cpp dyn.epp dyn_util.epp ini.epp stats.epp \ - dyn_def.epp met.epp dfw.epp dyn_del.epp \ - fun.epp dpm.epp dyn_mod.epp grant.epp scl.epp -JRD_GEN_FILES= $(JRD_EPP_FILES:%.epp=$(GEN_ROOT)/jrd/%.cpp) - -DSQL_EPP_FILES= array.epp blob.epp metd.epp -DSQL_YACC_FILES= parse.y -DSQL_GEN_FILES= $(DSQL_EPP_FILES:%.epp=$(GEN_ROOT)/dsql/%.cpp) \ - $(DSQL_YACC_FILES:%.y=$(GEN_ROOT)/dsql/%.cpp) - -GPRE_EPP_FILES= gpre_meta.epp -GPRE_GEN_FILES= $(GPRE_EPP_FILES:%.epp=$(GEN_ROOT)/gpre/%.cpp) - -GBAK_EPP_FILES= backup.epp restore.epp OdsDetection.epp -GBAK_GEN_FILES= $(GBAK_EPP_FILES:%.epp=$(GEN_ROOT)/burp/%.cpp) - -GFIX_EPP_FILES= alice_meta.epp -GFIX_GEN_FILES= $(GFIX_EPP_FILES:%.epp=$(GEN_ROOT)/alice/%.cpp) - -ISQL_EPP_FILES= extract.epp isql.epp show.epp -ISQL_GEN_FILES= $(ISQL_EPP_FILES:%.epp=$(GEN_ROOT)/isql/%.cpp) - -UTILITIES_EPP_FILES= dba.epp -UTILITIES_GEN_FILES= $(UTILITIES_EPP_FILES:%.epp=$(GEN_ROOT)/utilities/%.cpp) - -SECURITY_EPP_FILES= security.epp -SECURITY_GEN_FILES= $(SECURITY_EPP_FILES:%.epp=$(GEN_ROOT)/utilities/%.cpp) - -MSG_EPP_FILES= change_msgs.epp check_msgs.epp enter_msgs.epp load.epp modify_msgs.epp -MSG_GEN_FILES= $(MSG_EPP_FILES:%.epp=$(GEN_ROOT)/msgs/%.cpp) - -GPRE_FLAGS= -r -m -z -n - -all: - -$(GEN_ROOT)/jrd/dyn_def.cpp : $(SRC_ROOT)/jrd/dyn_def.epp \ - $(SRC_ROOT)/jrd/dyn_def.sed - $(GPRE_BOOT) $(GPRE_FLAGS) $< $(GEN_ROOT)/jrd/dyn_deffoo.cpp - sed -f $(SRC_ROOT)/jrd/dyn_def.sed $(GEN_ROOT)/jrd/dyn_deffoo.cpp > $@ - rm $(GEN_ROOT)/jrd/dyn_deffoo.cpp - -$(GEN_ROOT)/dsql/y.tab.c: $(SRC_ROOT)/dsql/parse.y - $(YACC) -l $(YFLAGS) -o $@ $< -$(GEN_ROOT)/dsql/parse.cpp: $(SRC_ROOT)/dsql/parse.sed \ - $(GEN_ROOT)/dsql/y.tab.c - sed -f $< $(GEN_ROOT)/dsql/y.tab.c > $@ - - -$(GEN_ROOT)/jrd/%.cpp: $(SRC_ROOT)/jrd/%.epp $(GPRE_BOOT) - $(GPRE_BOOT) $(GPRE_FLAGS) $< $@ - -$(GEN_ROOT)/dsql/%.cpp: $(SRC_ROOT)/dsql/%.epp $(GPRE_BOOT) - $(GPRE_BOOT) $(GPRE_FLAGS) $< $@ - -$(GEN_ROOT)/gpre/%.cpp: $(SRC_ROOT)/gpre/%.epp $(GPRE_BOOT) - $(GPRE_BOOT) $(GPRE_FLAGS) $< $@ - -$(GEN_ROOT)/burp/%.cpp: $(SRC_ROOT)/burp/%.epp $(GPRE) - $(GPRE) $(GPRE_FLAGS) $< $@ - -$(GEN_ROOT)/alice/%.cpp: $(SRC_ROOT)/alice/%.epp $(GPRE) - $(GPRE) $(GPRE_FLAGS) $< $@ - -$(GEN_ROOT)/isql/%.cpp: $(SRC_ROOT)/isql/%.epp $(GPRE) - $(GPRE) $(GPRE_FLAGS) $< $@ - -$(GEN_ROOT)/utilities/%.cpp: $(SRC_ROOT)/utilities/%.epp $(GPRE) - $(GPRE) $(GPRE_FLAGS) $< $@ - -$(GEN_ROOT)/msgs/%.cpp: $(SRC_ROOT)/msgs/%.epp $(GPRE) - $(GPRE) $(GPRE_FLAGS) $< $@ - -gds_lock_mgr: $(LOCK_MGR) -$(LOCK_MGR): $(PROJ_ROOT)/build/gds_lock_mgr - cp $< $@ - -intl_lib: $(VAR)/intl/gdsintl -$(VAR)/intl/gdsintl: build/gdsintl - cp $< $@ - chmod a+x $(VAR)/intl/* - -sec_auth: $(SEC_AUTH) -$(SEC_AUTH): $(PROJ_ROOT)/build/security_db.auth.bundle/Contents/MacOS/security_db.auth - mkdir -p $(VAR)/auth - -cp $< $@ - -chmod a+rx $@ - -local_user_auth: $(LOCAL_USER_AUTH) -$(LOCAL_USER_AUTH): $(PROJ_ROOT)/build/current_euid.auth.bundle/Contents/MacOS/current_euid.auth - mkdir -p $(VAR)/auth - -cp $< $@ - -chmod a+rx $@ - -firebird_boot.dylib: ../../gen/firebird/lib/firebird_boot.dylib -../../gen/firebird/lib/firebird_boot.dylib: build/firebird_boot.dylib - rm -f $@ - ln -s ../../../macosx_build/firebird_test/$< $@ - rm -f $(FB_FW)/Versions/Current/Firebird2 - ln -s ../../../lib/firebird_boot.dylib $(FB_FW)/Versions/Current/Firebird2 - -jrd_preprocess_clean: - rm -f $(JRD_GEN_FILES) -jrd_preprocess_: GPRE_FLAGS=-n -z -gds_cxx -raw -ids -jrd_preprocess_: $(JRD_GEN_FILES) -jrd_preprocess_%: - -gpre_preprocess_clean: - rm -f $(GPRE_GEN_FILES) -gpre_preprocess_: GPRE_FLAGS=-lang_internal -r -m -z -n -gpre_preprocess_: $(GPRE_GEN_FILES) -gpre_preprocess_%: - -dsql_preprocess_clean: - rm -f $(DSQL_GEN_FILES) $(GEN_ROOT)/dsql/y.tab.c -dsql_preprocess_: GPRE_FLAGS=-lang_internal -r -m -z -n -dsql_preprocess_: $(DSQL_GEN_FILES) -dsql_preprocess_%: - -burp_preprocess: $(GBAK_GEN_FILES) -burp_preprocess_clean: - rm -f $(GBAK_GEN_FILES) -burp_preprocess_: - ./gpre_wrapper.sh burp_preprocess burp -burp_preprocess_%: - -msg_preprocess: $(MSG_GEN_FILES) -msg_preprocess_clean: - rm -f $(MSG_GEN_FILES) -msg_preprocess_: - ./gpre_wrapper.sh msg_preprocess msgs -msg_preprocess_%: - -messages_clean: - rm -f $(MSG_FILE) $(MSG_INDICATOR) -messages_: - make -f $(PROJ_ROOT)/Helpers.make -C $(FB2_ROOT)/gen/msgs PWD_CURR=$(PWD_CURR) messages -messages: update_msg_indicator msg_file -msg_file: $(MSG_INDICATOR) - $(BUILD_MSGS) -d master_msg_db - cp interbase.msg $(MSG_FILE) -update_msg_indicator: $(MSG_DB) - $(CHECK_MSGS) -d master_msg_db - -alice_preprocess_clean: - rm -f $(ALICE_GEN_FILES) -alice_preprocess_: $(ALICE_GEN_FILES) -alice_preprocess_%: - -gfix_preprocess_clean: - rm -f $(GFIX_GEN_FILES) -gfix_preprocess: $(GFIX_GEN_FILES) -gfix_preprocess_%: -gfix_preprocess_: - ./gpre_wrapper.sh gfix_preprocess alice - -security_preprocess_clean: - rm -f $(SECURITY_GEN_FILES) -security_preprocess: $(SECURITY_GEN_FILES) -security_preprocess_%: -security_preprocess_: - ./gpre_wrapper.sh security_preprocess utilities - -utilities_preprocess_clean: - rm -f $(UTILITIES_GEN_FILES) -utilities_preprocess_: $(UTILITIES_GEN_FILES) -utilities_preprocess_%: - -isql_preprocess_clean: - rm -f $(ISQL_GEN_FILES) -isql_preprocess_: - ./gpre_wrapper.sh isql_preprocess isql -isql_preprocess: $(ISQL_GEN_FILES) -isql_preprocess_%: - -empty_db_clean: - rm -f $(EMPTY_DB) -empty_db_: $(EMPTY_DB) -$(EMPTY_DB): - rm -f $(EMPTY_DB) - $(CREATE_DB) $(EMPTY_DB) -empty_db_%: - -$(FULL_FW_FLAG): - touch $(FULL_FW_FLAG) -$(UPG_FW_FLAG): - touch $(UPG_FW_FLAG) - -#upgrade_fw_: $(UPG_FW_FLAG) -#$(UPG_FW_FLAG): $(PS_FW_FLAG) $(FULL_FW_FLAG) -# rm -f $(FB_FW)/Versions/A/Firebird2 -# ln -s ../../../lib/firebird.dylib $(FB_FW)/Versions/Current/Firebird2 -# touch $(UPG_FW_FLAG) -#upgrade_fw_clean: -#upgrade_fw_install: - -darwin_pseudo_fw_: $(PS_FW_FLAG) -$(PS_FW_FLAG): $(FULL_FW_FLAG) $(UPG_FW_FLAG) - $(MAKE) -C $(SRC_ROOT) darwin_pseudo_fw - touch $(PS_FW_FLAG) -darwin_pseudo_fw_clean: - -$(MSG_DB): $(SRC_ROOT)/msgs/msg.gbak - $(GBAK) -MODE read_only -R $(SRC_ROOT)/msgs/msg.gbak $@ - ln -fs $(MSG_DB) $(GEN_ROOT)/msgs/msg.gdb - ln -fs $(MSG_DB) $(GEN_ROOT)/msgs/master_msg_db - -isc4.gdb_: $(ISC_DB) sysdba_user -$(ISC_DB) : $(SRC_ROOT)/utilities/isc4.sql $(SRC_ROOT)/utilities/isc4.gdl - ( cd $(FIREBIRD); $(ISQL) -z -i $(SRC_ROOT)/utilities/isc4.sql) - -ln -sf $(ISC_DB) $(GEN_ROOT)/utilities/isc4.gdb - -isc4.gdb_clean: - rm -f $(ISC_DB) $(GEN_ROOT)/utilities/isc4.gdb -isc4.gdb_%: - -sysdba_user_: - make -C $(FIREBIRD) -f $(PROJ_ROOT)/Helpers.make PWD_CURR=$(PWD_CURR) sysdba_user -sysdba_user_clean: -sysdba_user: - -$(GSEC) -da $(ISC_DB) -delete SYSDBA - $(GSEC) -da $(ISC_DB) -add SYSDBA -pw masterkey - $(GBAK) -z $(ISC_DB) $(ISC_GBAK) - - -message_file_: - $(MAKE) -C $(FB2_ROOT)/src/msgs GPRE_CURRENT=$(GPRE) msgs -message_file_clean: - rm -f $(FB2_ROOT)/gen/firebird/interbase.msg - -squeky_: -squeky_install: -squeky_clean: - rm -rf $(FIREBIRD)/lib/* $(FIREBIRD)/Firebird2.framework $(FIREBIRD)/.* $GEN_ROOT)/jrd/.* $(GEN_ROOT)/utilities/.* $(FIREBIRD)/bin/* - -autoconf_: $(FB2_ROOT)/config.status -$(FB2_ROOT)/config.status: $(FB2_ROOT)/configure - (cd $(FB2_ROOT); ./configure) -autoconf_clean: - rm -f $(FB2_ROOT)/config.cache $(FB2_ROOT)/config.log $(FB2_ROOT)/config.status $(FB2_ROOT)/src/include/gen/autoconfig.h - -fb_fw_var: $(VAR) -$(VAR): - mkdir -p $(VAR) - mkdir -p $(VAR)/intl - mkdir -p $(VAR)/help - mkdir -p $(VAR)/auth - mkdir -p $(VAR)/UDF - ln -s $(GEN_ROOT)/firebird/interbase.msg $(VAR)/interbase.msg - ln -s ../../../../../.. $(VAR)/bin - ln -s $(GEN_ROOT)/firebird/isc4.gdb $(VAR)/isc4.gdb - -fw_files_clean: -fw_files_: - rm -rf $(VAR) - mkdir -p $(VAR)/UDF - mkdir -p $(VAR)/intl - mkdir -p $(VAR)/help - mkdir -p $(VAR)/auth - mkdir -p $(FB_FW)/Resources/bin - cp $(FIREBIRD)/interbase.msg $(VAR)/interbase.msg - -cp $(GPRE) $(GBAK) $(ISQL) $(GSEC) $(GFIX) $(FB_FW)/Resources/bin - cp $(FIREBIRD)/isc.gbak $(VAR) - cp build/gdsintl $(VAR)/intl - chmod a+x $(VAR)/intl/* - -cp build/local_user.bundle/Contents/MacOS/local_user $(LOCAL_USER_AUTH) - -cp $(SRC_ROOT)/install/arch-specific/darwin/services.isc $(VAR) - ln -s ../../bin $(VAR)/bin - -headers_: - -mkdir -p $(FB_FW)/Versions/A/Headers - echo "#ifndef IBASE_H" > $(FW)/Headers/ibase.h - cat $(SRC_ROOT)/include/fb_types.h $(SRC_ROOT)/jrd/sqlda_pub.h $(SRC_ROOT)/jrd/dsc_pub.h $(SRC_ROOT)/jrd/ibase.h $(SRC_ROOT)/jrd/inf_pub.h $(SRC_ROOT)/include/gen/iberror.h $(SRC_ROOT)/jrd/blr.h | grep -v "#include" >> $(FW)/Headers/ibase.h - echo "#endif /*IBASE_H*/" >> $(FW)/Headers/ibase.h -headers_clean: - -installer_clean: - rm -f build/firebird.tar.gz -installer_: - mkdir -p build/installer_tmp/firebird - rm -f build/firebird.tar.gz - rm -f $(VAR)/isc_init* $(VAR)/isc_lock* $(VAR)/isc_event* $(VAR)/interbase.log - tar -cf build/installer_tmp/firebird/firebird.tar -C build Firebird.framework - -cp $(SRC_ROOT)/install/arch-specific/darwin/install build/installer_tmp/firebird - tar -czf build/firebird.tar.gz -C build/installer_tmp firebird - rm -rf build/installer_tmp diff --git a/builds/mac_os_x/CS/gpre_wrapper.sh b/builds/mac_os_x/CS/gpre_wrapper.sh deleted file mode 100755 index f3a56c8291d..00000000000 --- a/builds/mac_os_x/CS/gpre_wrapper.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh - -make -C ../../../gen/$2 -f `pwd`/Helpers.make PWD_CURR=`pwd` $1 diff --git a/builds/mac_os_x/CS/make_wrapper.sh b/builds/mac_os_x/CS/make_wrapper.sh deleted file mode 100755 index ea6451121a9..00000000000 --- a/builds/mac_os_x/CS/make_wrapper.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh - -make -f Helpers.make $1 diff --git a/builds/mac_os_x/CS/stlport_vars.cpp b/builds/mac_os_x/CS/stlport_vars.cpp deleted file mode 100644 index 022edfbcd6a..00000000000 --- a/builds/mac_os_x/CS/stlport_vars.cpp +++ /dev/null @@ -1,4 +0,0 @@ -#define __PUT_STATIC_DATA_MEMBERS_HERE - -#include -#include \ No newline at end of file diff --git a/builds/mac_os_x/CS/stub.c b/builds/mac_os_x/CS/stub.c deleted file mode 100644 index 1b42892c352..00000000000 --- a/builds/mac_os_x/CS/stub.c +++ /dev/null @@ -1,3 +0,0 @@ -void fb_framework_build_stub() -{ -} diff --git a/builds/posix/Makefile.in b/builds/posix/Makefile.in index 4eeacb0934a..c85c09cffe7 100644 --- a/builds/posix/Makefile.in +++ b/builds/posix/Makefile.in @@ -181,7 +181,10 @@ $(GEN_ROOT)/Make.Version : $(SRC_ROOT)/misc/writeBuildNum.sh # external: +ifeq ($(CLIENT_ONLY_FLG),N) CC="$(CC)" CFLAGS="$(CFLAGS)" AR="$(AR)" $(MAKE) -C $(ROOT)/extern/btyacc +endif + CXX="$(CXX)" CXXFLAGS="$(CXXFLAGS)" $(MAKE) -C $(ROOT)/extern/cloop TARGET=release WITH_FPC=0 BUILD_DIR=$(TMP_ROOT)/cloop OUT_DIR=$(GEN_ROOT)/$(TARGET)/cloop core CC="$(CC)" CFLAGS="$(CFLAGS)" AR="$(AR)" $(MAKE) -C $(ROOT)/extern/decNumber @@ -192,12 +195,14 @@ ifeq ($(ABSEIL_BUILD_FLG),Y) ln -sf $(ROOT)/extern/int128/absl/numeric/libi128.a $(LIB) endif +ifeq ($(CLIENT_ONLY_FLG),N) ifeq ($(RE2_BUILD_FLG),Y) CXX="$(CXX)" CXXFLAGS="$(CXXFLAGS) -O3 -g -fPIC" AR="$(AR)" $(MAKE) -C $(ROOT)/extern/re2 ln -sf $(ROOT)/extern/re2/obj/libre2.a $(LIB) endif $(MAKE) libcds +endif ifeq ($(TOMMATH_BUILD_FLG),Y) CC="$(CC)" CFLAGS="$(CFLAGS)" AR="$(AR)" $(MAKE) -C $(ROOT)/extern/libtommath -f makefile.shared GCC="$(CC)" @@ -223,11 +228,13 @@ else endif endif +ifeq ($(CLIENT_ONLY_FLG),N) ifeq ($(STD_EDITLINE),false) ifeq ($(EDITLINE_FLG),Y) CC="$(CC)" CFLAGS="$(CFLAGS)" AR="$(AR)" $(MAKE) -f $(GEN_ROOT)/Makefile.extern.editline endif endif +endif #___________________________________________________________________________ @@ -317,8 +324,16 @@ master_process: $(MAKE) export_lists $(MAKE) external $(MAKE) updateCloopInterfaces - $(MAKE) boot + $(MAKE) rest $(MAKE) yvalve +ifeq ($(CLIENT_ONLY_FLG),Y) +ifeq ($(WITH_TOMCRYPT),Y) + $(MAKE) chacha +endif + $(MAKE) include_generic +endif +ifeq ($(CLIENT_ONLY_FLG),N) + $(MAKE) boot $(MAKE) engine $(MAKE) fbintl $(MAKE) utilities @@ -331,7 +346,7 @@ master_process: (cd $(BIN); $(LN) $(notdir $(GPRE)) $(notdir $(GPRE_CURRENT))) $(MAKE) plugins $(MAKE) examples - $(MAKE) rest +endif cross_process: @@ -344,6 +359,7 @@ cross1: $(MAKE) export_lists $(MAKE) external $(MAKE) updateCloopInterfaces +ifeq ($(CLIENT_ONLY_FLG),N) $(MAKE) boot $(MAKE) yvalve $(MAKE) engine @@ -358,26 +374,39 @@ cross1: (cd $(BIN); $(LN) $(notdir $(RUN_GPRE)) $(notdir $(GPRE_CURRENT))) $(MAKE) include_generic $(MAKE) -f Makefile.examples -C $(GEN_ROOT)/examples/ +endif cross2: ln -sf $(SRC_ROOT)/include/cross/$(CROSS_CONFIG) $(SRC_ROOT)/include/gen/autoconfig.h $(MAKE) prerequisites $(MAKE) tommath +ifeq ($(WITH_TOMCRYPT),Y) $(MAKE) LTCSOURCE=-DLTC_SOURCE tomcrypt +endif +ifeq ($(CLIENT_ONLY_FLG),N) $(MAKE) re2 + $(MAKE) libcds +endif CC="$(CC)" CFLAGS="$(CFLAGS)" AR="$(AR)" $(MAKE) -C $(ROOT)/extern/decNumber ln -sf $(ROOT)/extern/decNumber/libdecFloat$(CROSS).a $(LIB) CXX="$(CXX)" CXXFLAGS="$(CXXFLAGS)" $(MAKE) -C $(ROOT)/extern/int128/absl/numeric ln -sf $(ROOT)/extern/int128/absl/numeric/libi128$(CROSS).a $(LIB) - $(MAKE) libcds + $(MAKE) cross_rest $(MAKE) yvalve +ifeq ($(CLIENT_ONLY_FLG),Y) +ifeq ($(WITH_TOMCRYPT),Y) + $(MAKE) chacha +endif + $(MAKE) include_generic +endif +ifeq ($(CLIENT_ONLY_FLG),N) $(MAKE) engine $(MAKE) fbintl $(MAKE) utilities $(MAKE) $(GPRE) $(MAKE) plugins $(MAKE) -f Makefile.plugins_examples - $(MAKE) cross_rest +endif #___________________________________________________________________________ @@ -538,7 +567,7 @@ $(FBTRACEMGR): $(FBTRACEMGR_Objects) $(COMMON_LIB) gbak: $(GBAK) $(GBAK): $(GBAK_Objects) $(COMMON_LIB) - $(EXE_LINK) $(EXE_LINK_OPTIONS) $^ -o $@ $(FIREBIRD_LIBRARY_LINK) $(LINK_LIBS) + $(EXE_LINK) $(EXE_LINK_OPTIONS) $^ -o $@ $(FIREBIRD_LIBRARY_LINK) $(LINK_LIBS) $(RE2LIB) gsplit: $(GSPLIT) @@ -606,7 +635,7 @@ $(UDR_PLUGIN): $(UDRENG_Objects) $(COMMON_LIB) legacy_user_management: $(LEGACY_USER_MANAGER) $(LEGACY_USER_MANAGER): $(LEGACY_USERS_MANAGE_Objects) $(COMMON_LIB) - $(LINK_PLUGIN) $(call LIB_LINK_SONAME,$(notdir $@).0) -o $@ $^ $(LINK_PLUG_LIBS) $(FIREBIRD_LIBRARY_LINK)\ + $(LINK_PLUGIN) $(call LIB_LINK_SONAME,$(notdir $@).0) -o $@ $^ $(LINK_PLUG_LIBS) $(RE2LIB) $(FIREBIRD_LIBRARY_LINK)\ $(call LIB_LINK_DARWIN_INSTALL_NAME,plugins/libLegacy_UserManager.$(SHRLIB_EXT)) chacha: $(CHACHA) @@ -630,7 +659,7 @@ $(PROFILER): $(Profiler_Objects) $(COMMON_LIB) trace: $(FBTRACE) $(FBTRACE): $(FBTRACE_UTIL_Objects) $(COMMON_LIB) - $(LINK_TRACE) -o $@ $^ $(FIREBIRD_LIBRARY_LINK) $(LINK_TRACE_LIBS) $(call LIB_LINK_DARWIN_INSTALL_NAME,plugins/libfbtrace.$(SHRLIB_EXT)) + $(LINK_TRACE) -o $@ $^ $(RE2LIB) $(FIREBIRD_LIBRARY_LINK) $(LINK_TRACE_LIBS) $(call LIB_LINK_DARWIN_INSTALL_NAME,plugins/libfbtrace.$(SHRLIB_EXT)) auth_debug: $(AUTH_DEBUGGER) diff --git a/builds/posix/make.android.arm64 b/builds/posix/make.android.arm64 index f64947c531b..dbb05ae0280 100644 --- a/builds/posix/make.android.arm64 +++ b/builds/posix/make.android.arm64 @@ -41,7 +41,7 @@ DEV_FLAGS=$(COMMON_FLAGS) $(WARN_FLAGS) CROSS_CONFIG=android.arm64 LDFLAGS += -static-libstdc++ -DroidLibs := -lm -ldl $(DECLIB) $(RE2LIB) $(I128LIB) $(LIBCDSLIB) +DroidLibs := -lm -ldl $(DECLIB) $(I128LIB) UDR_SUPPORT_LIBS := LINK_LIBS = $(DroidLibs) diff --git a/builds/posix/make.android.arme b/builds/posix/make.android.arme index b4b597d8e3a..033408897e5 100644 --- a/builds/posix/make.android.arme +++ b/builds/posix/make.android.arme @@ -41,7 +41,7 @@ DEV_FLAGS=$(COMMON_FLAGS) $(WARN_FLAGS) CROSS_CONFIG=android.arme LDFLAGS += -static-libstdc++ -DroidLibs := -lm -ldl $(DECLIB) $(RE2LIB) $(I128LIB) $(LIBCDSLIB) +DroidLibs := -lm -ldl $(DECLIB) $(I128LIB) UDR_SUPPORT_LIBS := LINK_LIBS = $(DroidLibs) diff --git a/builds/posix/make.android.x86 b/builds/posix/make.android.x86 index a1dcd583689..8d506e76e30 100644 --- a/builds/posix/make.android.x86 +++ b/builds/posix/make.android.x86 @@ -41,7 +41,7 @@ DEV_FLAGS=$(COMMON_FLAGS) $(WARN_FLAGS) CROSS_CONFIG=android.x86 LDFLAGS += -static-libstdc++ -DroidLibs := -lm -ldl $(DECLIB) $(RE2LIB) $(I128LIB) $(LIBCDSLIB) +DroidLibs := -lm -ldl $(DECLIB) $(I128LIB) UDR_SUPPORT_LIBS := LINK_LIBS = $(DroidLibs) diff --git a/builds/posix/make.android.x86_64 b/builds/posix/make.android.x86_64 index 15df6dac61d..888eedadfb1 100644 --- a/builds/posix/make.android.x86_64 +++ b/builds/posix/make.android.x86_64 @@ -41,7 +41,7 @@ DEV_FLAGS=$(COMMON_FLAGS) $(WARN_FLAGS) CROSS_CONFIG=android.x86_64 LDFLAGS += -static-libstdc++ -DroidLibs := -lm -ldl $(DECLIB) $(RE2LIB) $(I128LIB) $(LIBCDSLIB) +DroidLibs := -lm -ldl $(DECLIB) $(I128LIB) UDR_SUPPORT_LIBS := LINK_LIBS = $(DroidLibs) diff --git a/builds/posix/make.defaults b/builds/posix/make.defaults index fab49ceac95..c60a70e1c22 100755 --- a/builds/posix/make.defaults +++ b/builds/posix/make.defaults @@ -110,6 +110,8 @@ PLUSPLUS_FLAGS:= -fno-rtti -std=c++17 # If this is defined then we use special rules useful for developers only IsDeveloper = @DEVEL_FLG@ +CLIENT_ONLY_FLG=@CLIENT_ONLY_FLG@ +WITH_TOMCRYPT=@WITH_TOMCRYPT@ CpuType=@CPU_TYPE@ PLATFORM=@PLATFORM@ @@ -206,8 +208,8 @@ endif STATICLIB_LINK = $(AR) crus -LINK_LIBS = @LIBS@ $(DECLIB) $(RE2LIB) $(I128LIB) $(LIBCDSLIB) -SO_LINK_LIBS = @LIBS@ $(DECLIB) $(RE2LIB) $(I128LIB) $(LIBCDSLIB) +LINK_LIBS = @LIBS@ $(DECLIB) $(I128LIB) +SO_LINK_LIBS = @LIBS@ $(DECLIB) $(I128LIB) # Default extensions @@ -381,11 +383,11 @@ LINK_TRACE_LIBS = -L$(LIB) $(SO_LINK_LIBS) LINK_FIREBIRD = $(LIB_LINK) $(LINK_FIREBIRD_SYMBOLS) $(LIB_LINK_OPTIONS) $(LIB_FIREBIRD_OPTIONS) $(UNDEF_FLAGS)\ $(call LIB_LINK_SONAME,$(LibrarySoName)) $(call LIB_LINK_RPATH,lib) $(call LINK_DARWIN_RPATH,..) -LINK_FIREBIRD_LIBS = -L$(LIB) $(LIB_GUI) $(SO_LINK_LIBS) $(MATHLIB) $(CRYPTLIB) +LINK_FIREBIRD_LIBS = -L$(LIB) $(LIB_GUI) $(SO_LINK_LIBS) $(MATHLIB) LINK_ENGINE = $(LIB_LINK) $(LINK_PLUGIN_SYMBOLS) $(LIB_LINK_OPTIONS) $(LIB_FIREBIRD_OPTIONS) $(UNDEF_FLAGS)\ $(call LIB_LINK_SONAME,$(EngineSoName)) $(call LIB_LINK_RPATH,lib) $(call LINK_DARWIN_RPATH,..) -LINK_ENGINE_LIBS = $(LINK_FIREBIRD_LIBS) $(FIREBIRD_LIBRARY_LINK) +LINK_ENGINE_LIBS = $(LINK_FIREBIRD_LIBS) $(RE2LIB) $(LIBCDSLIB) $(FIREBIRD_LIBRARY_LINK) LINK_UDRENG = $(LIB_LINK) $(LINK_PLUGIN_SYMBOLS) $(LIB_LINK_OPTIONS) $(call LIB_LINK_RPATH,lib) $(UNDEF_FLAGS)\ $(call LINK_DARWIN_RPATH,..) @@ -401,8 +403,6 @@ COMMON_LIB = $(OBJ)/common.a COMMON_TEST = $(FB_TESTS_DIR)/common_test$(EXEC_EXT) # From utilities -CREATE_DB = $(RBIN)/create_db$(EXEC_EXT) -GDS_DROP = $(BIN)/gds_drop$(EXEC_EXT) FBSVCMGR = $(BIN)/fbsvcmgr$(EXEC_EXT) FBTRACEMGR = $(BIN)/fbtracemgr$(EXEC_EXT) GSTAT = $(BIN)/gstat$(EXEC_EXT) @@ -411,12 +411,7 @@ LOCKPRINT = $(BIN)/fb_lock_print$(EXEC_EXT) GSEC = $(BIN)/gsec$(EXEC_EXT) GFIX = $(BIN)/gfix$(EXEC_EXT) RUN_GFIX = $(RBIN)/gfix$(EXEC_EXT) -GDS_REBUILD = $(BIN)/gds_rebuild$(EXEC_EXT) -GDS_INSTALL = $(BIN)/gds_install$(EXEC_EXT) -GDS_INSTALL = $(BIN)/gds_install_service$(EXEC_EXT) FBGUARD = $(BIN)/fbguard$(EXEC_EXT) -IBGUARD = $(BIN)/ibguard$(EXEC_EXT) -FBMGR_BIN = $(BIN)/fbmgr.bin$(EXEC_EXT) INSTREG = $(BIN)/instreg$(EXEC_EXT) INSTSVC = $(BIN)/instsvc$(EXEC_EXT) diff --git a/builds/win32/make_all.bat b/builds/win32/make_all.bat index 0bb129bf8e3..2c3ebebc7b1 100644 --- a/builds/win32/make_all.bat +++ b/builds/win32/make_all.bat @@ -16,7 +16,11 @@ set ERRLEV=0 @echo Building %FB_OBJ_DIR% -call compile.bat builds\win32\%VS_VER%\Firebird make_all_%FB_TARGET_PLATFORM%.log +@if "%FB_CLIENT_ONLY%"=="" ( + call compile.bat builds\win32\%VS_VER%\Firebird make_all_%FB_TARGET_PLATFORM%.log +) else ( + call compile.bat builds\win32\%VS_VER%\Firebird make_all_%FB_TARGET_PLATFORM%.log DLLs\yvalve DLLs\chacha +) if errorlevel 1 call :ERROR build failed - see make_all_%FB_TARGET_PLATFORM%.log for details @if "%ERRLEV%"=="1" ( @@ -35,52 +39,61 @@ if errorlevel 1 call :ERROR build failed - see make_all_%FB_TARGET_PLATFORM%.log @timeout 1 >nul @mkdir %FB_OUTPUT_DIR% 2>nul -@mkdir %FB_OUTPUT_DIR%\intl 2>nul @mkdir %FB_OUTPUT_DIR%\tzdata 2>nul -@mkdir %FB_OUTPUT_DIR%\doc 2>nul -@mkdir %FB_OUTPUT_DIR%\doc\sql.extensions 2>nul @mkdir %FB_OUTPUT_DIR%\include 2>nul @mkdir %FB_OUTPUT_DIR%\include\firebird 2>nul @mkdir %FB_OUTPUT_DIR%\include\firebird\impl 2>nul @mkdir %FB_OUTPUT_DIR%\lib 2>nul @mkdir %FB_OUTPUT_DIR%\system32 2>nul @mkdir %FB_OUTPUT_DIR%\plugins 2>nul -@mkdir %FB_OUTPUT_DIR%\plugins\udr 2>nul + +@if "%FB_CLIENT_ONLY%"=="" ( + mkdir %FB_OUTPUT_DIR%\intl 2>nul + mkdir %FB_OUTPUT_DIR%\doc 2>nul + mkdir %FB_OUTPUT_DIR%\doc\sql.extensions 2>nul + mkdir %FB_OUTPUT_DIR%\plugins\udr 2>nul +) @copy %FB_ROOT_PATH%\temp\%FB_OBJ_DIR%\firebird\* %FB_OUTPUT_DIR% >nul -@copy %FB_ROOT_PATH%\temp\%FB_OBJ_DIR%\firebird\intl\* %FB_OUTPUT_DIR%\intl >nul @copy %FB_ROOT_PATH%\temp\%FB_OBJ_DIR%\firebird\tzdata\* %FB_OUTPUT_DIR%\tzdata >nul @copy %FB_ROOT_PATH%\temp\%FB_OBJ_DIR%\firebird\system32\* %FB_OUTPUT_DIR%\system32 >nul @copy %FB_ROOT_PATH%\temp\%FB_OBJ_DIR%\firebird\plugins\*.dll %FB_OUTPUT_DIR%\plugins >nul -@copy %FB_ROOT_PATH%\temp\%FB_OBJ_DIR%\firebird\plugins\udr\*.dll %FB_OUTPUT_DIR%\plugins\udr >nul @copy %FB_ROOT_PATH%\temp\%FB_OBJ_DIR%\yvalve\fbclient.lib %FB_OUTPUT_DIR%\lib\fbclient_ms.lib >nul -@copy %FB_ROOT_PATH%\temp\%FB_OBJ_DIR%\ib_util\ib_util.lib %FB_OUTPUT_DIR%\lib\ib_util_ms.lib >nul + +@if "%FB_CLIENT_ONLY%"=="" ( + copy %FB_ROOT_PATH%\temp\%FB_OBJ_DIR%\firebird\intl\* %FB_OUTPUT_DIR%\intl >nul + copy %FB_ROOT_PATH%\temp\%FB_OBJ_DIR%\firebird\plugins\udr\*.dll %FB_OUTPUT_DIR%\plugins\udr >nul + copy %FB_ROOT_PATH%\temp\%FB_OBJ_DIR%\ib_util\ib_util.lib %FB_OUTPUT_DIR%\lib\ib_util_ms.lib >nul +) for %%v in (gpre_boot build_msg common_test engine_test) do ( - @del %FB_OUTPUT_DIR%\%%v.* 2>nul + @del %FB_OUTPUT_DIR%\%%v.* 2>nul ) :: Firebird.conf, etc @copy %FB_GEN_DIR%\firebird.msg %FB_OUTPUT_DIR%\ > nul @copy %FB_ROOT_PATH%\builds\install\misc\firebird.conf %FB_OUTPUT_DIR%\firebird.conf >nul -@copy %FB_ROOT_PATH%\builds\install\misc\databases.conf %FB_OUTPUT_DIR%\databases.conf >nul -@copy %FB_ROOT_PATH%\builds\install\misc\fbintl.conf %FB_OUTPUT_DIR%\intl\ >nul @copy %FB_ROOT_PATH%\builds\install\misc\plugins.conf %FB_OUTPUT_DIR% >nul -@copy %FB_ROOT_PATH%\builds\install\misc\replication.conf %FB_OUTPUT_DIR% >nul -@copy %FB_ROOT_PATH%\src\utilities\ntrace\fbtrace.conf %FB_OUTPUT_DIR% >nul -@copy %FB_ROOT_PATH%\src\plugins\udr_engine\udr_engine.conf %FB_OUTPUT_DIR%\plugins\udr_engine.conf >nul @copy %FB_ROOT_PATH%\builds\install\misc\IPLicense.txt %FB_OUTPUT_DIR% >nul @copy %FB_ROOT_PATH%\builds\install\misc\IDPLicense.txt %FB_OUTPUT_DIR% >nul -:: DATABASES -@copy %FB_GEN_DIR%\dbs\security5.FDB %FB_OUTPUT_DIR%\security5.fdb >nul +@if "%FB_CLIENT_ONLY%"=="" ( + copy %FB_ROOT_PATH%\builds\install\misc\databases.conf %FB_OUTPUT_DIR%\databases.conf >nul + copy %FB_ROOT_PATH%\builds\install\misc\fbintl.conf %FB_OUTPUT_DIR%\intl\ >nul + copy %FB_ROOT_PATH%\builds\install\misc\replication.conf %FB_OUTPUT_DIR% >nul + copy %FB_ROOT_PATH%\src\utilities\ntrace\fbtrace.conf %FB_OUTPUT_DIR% >nul + copy %FB_ROOT_PATH%\src\plugins\udr_engine\udr_engine.conf %FB_OUTPUT_DIR%\plugins\udr_engine.conf >nul + + :: DATABASES + copy %FB_GEN_DIR%\dbs\security5.FDB %FB_OUTPUT_DIR%\security5.fdb >nul -:: DOCS -@copy %FB_ROOT_PATH%\*.md %FB_OUTPUT_DIR%\doc\ >nul + :: DOCS + copy %FB_ROOT_PATH%\*.md %FB_OUTPUT_DIR%\doc\ >nul -:: READMES -@copy %FB_ROOT_PATH%\doc\README.* %FB_OUTPUT_DIR%\doc >nul -@copy %FB_ROOT_PATH%\doc\sql.extensions\README.* %FB_OUTPUT_DIR%\doc\sql.extensions >nul + :: READMES + copy %FB_ROOT_PATH%\doc\README.* %FB_OUTPUT_DIR%\doc >nul + copy %FB_ROOT_PATH%\doc\sql.extensions\README.* %FB_OUTPUT_DIR%\doc\sql.extensions >nul +) :: Headers copy %FB_ROOT_PATH%\src\extlib\ib_util.h %FB_OUTPUT_DIR%\include > nul @@ -92,17 +105,19 @@ copy %FB_GEN_DIR%\iberror_c.h %FB_OUTPUT_DIR%\include\firebird\impl > nul :: New API headers xcopy /y %FB_ROOT_PATH%\src\include\firebird %FB_OUTPUT_DIR%\include\firebird /e > nul -:: UDR -copy %FB_ROOT_PATH%\src\extlib\*.sql %FB_OUTPUT_DIR%\plugins\udr > nul +@if "%FB_CLIENT_ONLY%"=="" ( + :: UDR + copy %FB_ROOT_PATH%\src\extlib\*.sql %FB_OUTPUT_DIR%\plugins\udr > nul -:: Installers -@copy %FB_INSTALL_SCRIPTS%\install_service.bat %FB_OUTPUT_DIR% >nul -@copy %FB_INSTALL_SCRIPTS%\uninstall_service.bat %FB_OUTPUT_DIR% >nul + :: Installers + copy %FB_INSTALL_SCRIPTS%\install_service.bat %FB_OUTPUT_DIR% >nul + copy %FB_INSTALL_SCRIPTS%\uninstall_service.bat %FB_OUTPUT_DIR% >nul +) :: MSVC runtime copy "%VCToolsRedistDir%\%VSCMD_ARG_TGT_ARCH%\Microsoft.VC%MSVC_RUNTIME_LIBRARY_VERSION%.CRT\vcruntime140.dll" %FB_OUTPUT_DIR% > nul if exist "%VCToolsRedistDir%\%VSCMD_ARG_TGT_ARCH%\Microsoft.VC%MSVC_RUNTIME_LIBRARY_VERSION%.CRT\vcruntime140_1.dll" ( - copy "%VCToolsRedistDir%\%VSCMD_ARG_TGT_ARCH%\Microsoft.VC%MSVC_RUNTIME_LIBRARY_VERSION%.CRT\vcruntime140_1.dll" %FB_OUTPUT_DIR% > nul + copy "%VCToolsRedistDir%\%VSCMD_ARG_TGT_ARCH%\Microsoft.VC%MSVC_RUNTIME_LIBRARY_VERSION%.CRT\vcruntime140_1.dll" %FB_OUTPUT_DIR% > nul ) copy "%VCToolsRedistDir%\%VSCMD_ARG_TGT_ARCH%\Microsoft.VC%MSVC_RUNTIME_LIBRARY_VERSION%.CRT\msvcp140.dll" %FB_OUTPUT_DIR% > nul diff --git a/builds/win32/make_boot.bat b/builds/win32/make_boot.bat index 6fae14afe12..39ea4fca279 100644 --- a/builds/win32/make_boot.bat +++ b/builds/win32/make_boot.bat @@ -31,12 +31,6 @@ for %%v in ( alice auth burp dsql gpre isql jrd misc msgs examples yvalve utilit call :interfaces if "%ERRLEV%"=="1" goto :END -call :btyacc -if "%ERRLEV%"=="1" goto :END - -call :libcds -if "%ERRLEV%"=="1" goto :END - call :LibTom if "%ERRLEV%"=="1" goto :END @@ -46,46 +40,63 @@ if "%ERRLEV%"=="1" goto :END if "%FB_TARGET_PLATFORM%"=="x64" call :ttmath if "%ERRLEV%"=="1" goto :END -call :re2 -if "%ERRLEV%"=="1" goto :END - call :zlib if "%ERRLEV%"=="1" goto :END -@echo Generating DSQL parser... -@call parse.bat %* -if "%ERRLEV%"=="1" goto :END +@if "%FB_CLIENT_ONLY%"=="" ( + call :re2 + if "%ERRLEV%"=="1" goto :END -::======= -call :gpre_boot -if "%ERRLEV%"=="1" goto :END + call :btyacc + if "%ERRLEV%"=="1" goto :END -::======= -@echo Preprocessing the source files needed to build gpre and isql... -@call preprocess.bat %FB_CONFIG% BOOT + call :libcds + if "%ERRLEV%"=="1" goto :END -::======= -call :engine -if "%ERRLEV%"=="1" goto :END + echo Generating DSQL parser... + call parse.bat %* + if "%ERRLEV%"=="1" goto :END -call :gpre -if "%ERRLEV%"=="1" goto :END + ::======= + call :gpre_boot + if "%ERRLEV%"=="1" goto :END -call :isql -if "%ERRLEV%"=="1" goto :END + ::======= + echo Preprocessing the source files needed to build gpre and isql... + call preprocess.bat %FB_CONFIG% BOOT + + ::======= + call :engine + if "%ERRLEV%"=="1" goto :END + + call :gpre + if "%ERRLEV%"=="1" goto :END + + call :isql + if "%ERRLEV%"=="1" goto :END +) @mkdir %FB_BIN_DIR% >nul 2>&1 @mkdir %FB_BIN_DIR%\intl\ >nul 2>&1 :: copy conf files only if not exists already -for %%v in (databases firebird plugins replication) do ( - if not exist %FB_BIN_DIR%\%%v.conf ( - @copy %FB_ROOT_PATH%\builds\install\misc\%%v.conf %FB_BIN_DIR% >nul 2>&1 - ) +for %%v in (firebird plugins) do ( + if not exist %FB_BIN_DIR%\%%v.conf ( + @copy %FB_ROOT_PATH%\builds\install\misc\%%v.conf %FB_BIN_DIR% >nul 2>&1 + ) ) -if not exist %FB_BIN_DIR%\intl\fbintl.conf ( - @copy %FB_ROOT_PATH%\builds\install\misc\fbintl.conf %FB_BIN_DIR%\intl\ >nul 2>&1 +@if "%FB_CLIENT_ONLY%"=="" ( + :: copy conf files only if not exists already + for %%v in (databases replication) do ( + if not exist %FB_BIN_DIR%\%%v.conf ( + copy %FB_ROOT_PATH%\builds\install\misc\%%v.conf %FB_BIN_DIR% >nul 2>&1 + ) + ) + + if not exist %FB_BIN_DIR%\intl\fbintl.conf ( + copy %FB_ROOT_PATH%\builds\install\misc\fbintl.conf %FB_BIN_DIR%\intl\ >nul 2>&1 + ) ) :: Copy ICU and zlib to the output directory @@ -94,21 +105,19 @@ if not exist %FB_BIN_DIR%\intl\fbintl.conf ( @copy %FB_ROOT_PATH%\extern\icu\tzdata-extract\* %FB_BIN_DIR%\tzdata >nul 2>&1 @copy %FB_ROOT_PATH%\extern\zlib\%FB_TARGET_PLATFORM%\*.dll %FB_BIN_DIR% >nul 2>&1 -::======= -@call :databases - -:: copy security db if not exists already -if not exist %FB_BIN_DIR%\security5.fdb ( - @copy %FB_GEN_DIR%\dbs\security5.fdb %FB_BIN_DIR% -) +@if "%FB_CLIENT_ONLY%"=="" ( + ::======= + call :databases -::======= -@echo Preprocessing the entire source tree... -@call preprocess.bat %FB_CONFIG% + :: copy security db if not exists already + if not exist %FB_BIN_DIR%\security5.fdb ( + copy %FB_GEN_DIR%\dbs\security5.fdb %FB_BIN_DIR% + ) -::======= -@call :msgs -if "%ERRLEV%"=="1" goto :END + ::======= + echo Preprocessing the entire source tree... + call preprocess.bat %FB_CONFIG% +) ::======= @call create_msgs.bat %FB_CONFIG% @@ -254,21 +263,6 @@ set ERRLEV=1 goto :EOF -::=================== -:: BUILD messages -:msgs -@echo. -@echo Building build_msg (%FB_OBJ_DIR%)... -@call compile.bat builds\win32\%VS_VER%\FirebirdBoot build_msg_%FB_TARGET_PLATFORM%.log build_msg -if errorlevel 1 goto :msgs2 -@goto :EOF -:msgs2 -echo. -echo Error building build_msg, see build_msg_%FB_TARGET_PLATFORM%.log -echo. -set ERRLEV=1 -goto :EOF - ::============== :databases @rmdir /s /q %FB_GEN_DIR%\dbs 2>nul diff --git a/builds/win32/msvc15/FirebirdCommon.props b/builds/win32/msvc15/FirebirdCommon.props index 95af8ce7a8f..56c69ad71ef 100644 --- a/builds/win32/msvc15/FirebirdCommon.props +++ b/builds/win32/msvc15/FirebirdCommon.props @@ -35,6 +35,7 @@ $(IntDir)$(TargetName).pdb $(IntDir)$(TargetName).lib psapi.lib;%(AdditionalDependencies) + ../../../extern/re2/builds/$(PlatformName)/$(Configuration) $(IntDir)$(TargetName).bsc diff --git a/builds/win32/msvc15/common.vcxproj b/builds/win32/msvc15/common.vcxproj index c25761bb4a0..3a0fd8fc2ef 100644 --- a/builds/win32/msvc15/common.vcxproj +++ b/builds/win32/msvc15/common.vcxproj @@ -317,7 +317,7 @@ WIN32;NDEBUG;_LIB;SUPERSERVER;%(PreprocessorDefinitions) - ws2_32.lib;../../../extern/libtommath/lib/$(PlatformName)\$(Configuration)\tommath.lib;../../../extern/libtomcrypt/lib/$(PlatformName)\$(Configuration)\tomcrypt.lib;../../../extern/decNumber/lib/$(PlatformName)\$(Configuration)\decnumber.lib;../../../extern/re2/builds/$(PlatformName)\$(Configuration)\re2.lib;%(AdditionalDependencies) + ws2_32.lib;../../../extern/libtommath/lib/$(PlatformName)\$(Configuration)\tommath.lib;../../../extern/libtomcrypt/lib/$(PlatformName)\$(Configuration)\tomcrypt.lib;../../../extern/decNumber/lib/$(PlatformName)\$(Configuration)\decnumber.lib;%(AdditionalDependencies) @@ -329,7 +329,7 @@ EditAndContinue - ws2_32.lib;../../../extern/libtommath/lib/$(PlatformName)\$(Configuration)\tommath.lib;../../../extern/libtomcrypt/lib/$(PlatformName)\$(Configuration)\tomcrypt.lib;../../../extern/decNumber/lib/$(PlatformName)\$(Configuration)\decnumber.lib;../../../extern/re2/builds/$(PlatformName)\$(Configuration)\re2.lib;%(AdditionalDependencies) + ws2_32.lib;../../../extern/libtommath/lib/$(PlatformName)\$(Configuration)\tommath.lib;../../../extern/libtomcrypt/lib/$(PlatformName)\$(Configuration)\tomcrypt.lib;../../../extern/decNumber/lib/$(PlatformName)\$(Configuration)\decnumber.lib;%(AdditionalDependencies) @@ -344,7 +344,7 @@ WIN32;NDEBUG;_LIB;SUPERSERVER;%(PreprocessorDefinitions) - ws2_32.lib;../../../extern/libtommath/lib/$(PlatformName)\$(Configuration)\tommath.lib;../../../extern/libtomcrypt/lib/$(PlatformName)\$(Configuration)\tomcrypt.lib;../../../extern/decNumber/lib/$(PlatformName)\$(Configuration)\decnumber.lib;../../../extern/ttmath\$(Configuration)\ttmathuint_x86_64_msvc.obj;../../../extern/re2/builds/$(PlatformName)\$(Configuration)\re2.lib;%(AdditionalDependencies) + ws2_32.lib;../../../extern/libtommath/lib/$(PlatformName)\$(Configuration)\tommath.lib;../../../extern/libtomcrypt/lib/$(PlatformName)\$(Configuration)\tomcrypt.lib;../../../extern/decNumber/lib/$(PlatformName)\$(Configuration)\decnumber.lib;../../../extern/ttmath\$(Configuration)\ttmathuint_x86_64_msvc.obj;%(AdditionalDependencies) @@ -358,7 +358,7 @@ - ws2_32.lib;../../../extern/libtommath/lib/$(PlatformName)\$(Configuration)\tommath.lib;../../../extern/libtomcrypt/lib/$(PlatformName)\$(Configuration)\tomcrypt.lib;../../../extern/decNumber/lib/$(PlatformName)\$(Configuration)\decnumber.lib;../../../extern/ttmath\$(Configuration)\ttmathuint_x86_64_msvc.obj;../../../extern/re2/builds/$(PlatformName)\$(Configuration)\re2.lib;%(AdditionalDependencies) + ws2_32.lib;../../../extern/libtommath/lib/$(PlatformName)\$(Configuration)\tommath.lib;../../../extern/libtomcrypt/lib/$(PlatformName)\$(Configuration)\tomcrypt.lib;../../../extern/decNumber/lib/$(PlatformName)\$(Configuration)\decnumber.lib;../../../extern/ttmath\$(Configuration)\ttmathuint_x86_64_msvc.obj;%(AdditionalDependencies) diff --git a/builds/win32/msvc15/engine.vcxproj b/builds/win32/msvc15/engine.vcxproj index 49d3df52cfb..7352cd953ca 100644 --- a/builds/win32/msvc15/engine.vcxproj +++ b/builds/win32/msvc15/engine.vcxproj @@ -168,7 +168,7 @@ EditAndContinue - mpr.lib;%(AdditionalDependencies) + re2.lib;mpr.lib;%(AdditionalDependencies) ../../../extern/icu/$(Platform)/release/lib;%(AdditionalLibraryDirectories) ..\defs\plugin.def Windows @@ -184,7 +184,7 @@ WIN32;_DEBUG;_WINDOWS;_LIB;SUPERSERVER;DEV_BUILD;NAMESPACE=Vulcan;%(PreprocessorDefinitions) - mpr.lib;%(AdditionalDependencies) + re2.lib;mpr.lib;%(AdditionalDependencies) ../../../extern/icu/$(Platform)/release/lib;%(AdditionalLibraryDirectories) ..\defs\plugin.def Windows @@ -201,7 +201,7 @@ - mpr.lib;%(AdditionalDependencies) + re2.lib;mpr.lib;%(AdditionalDependencies) ../../../extern/icu/$(Platform)/$(Configuration)/lib;%(AdditionalLibraryDirectories) ..\defs\plugin.def Windows @@ -222,7 +222,7 @@ - mpr.lib;%(AdditionalDependencies) + re2.lib;mpr.lib;%(AdditionalDependencies) ../../../extern/icu/$(Platform)/$(Configuration)/lib;%(AdditionalLibraryDirectories) ..\defs\plugin.def Windows @@ -231,4 +231,4 @@ - + \ No newline at end of file diff --git a/builds/win32/msvc15/engine_test.vcxproj b/builds/win32/msvc15/engine_test.vcxproj index 3a36737af0e..cce24e20e01 100644 --- a/builds/win32/msvc15/engine_test.vcxproj +++ b/builds/win32/msvc15/engine_test.vcxproj @@ -122,7 +122,7 @@ NDEBUG;_CONSOLE;SUPERCLIENT;WIN32;%(PreprocessorDefinitions) - comctl32.lib;ws2_32.lib;mpr.lib;version.lib;%(AdditionalDependencies) + re2.lib;comctl32.lib;ws2_32.lib;mpr.lib;version.lib;%(AdditionalDependencies) Console false @@ -135,7 +135,7 @@ _DEBUG;_CONSOLE;SUPERCLIENT;WIN32;DEV_BUILD;_WINDOWS;_USRDLL;CLIENT;%(PreprocessorDefinitions) - comctl32.lib;ws2_32.lib;mpr.lib;version.lib;%(AdditionalDependencies) + re2.lib;comctl32.lib;ws2_32.lib;mpr.lib;version.lib;%(AdditionalDependencies) Console false @@ -154,7 +154,7 @@ NDEBUG;_CONSOLE;SUPERCLIENT;WIN32;%(PreprocessorDefinitions) - comctl32.lib;ws2_32.lib;mpr.lib;version.lib;%(AdditionalDependencies) + re2.lib;comctl32.lib;ws2_32.lib;mpr.lib;version.lib;%(AdditionalDependencies) Console false @@ -171,7 +171,7 @@ _DEBUG;_CONSOLE;SUPERCLIENT;WIN32;DEV_BUILD;_WINDOWS;_USRDLL;CLIENT;%(PreprocessorDefinitions) - comctl32.lib;ws2_32.lib;mpr.lib;version.lib;%(AdditionalDependencies) + re2.lib;comctl32.lib;ws2_32.lib;mpr.lib;version.lib;%(AdditionalDependencies) Console false @@ -238,4 +238,4 @@ - + \ No newline at end of file diff --git a/builds/win32/msvc15/fbtrace.vcxproj b/builds/win32/msvc15/fbtrace.vcxproj index b47e95904fe..45cd7b2174c 100644 --- a/builds/win32/msvc15/fbtrace.vcxproj +++ b/builds/win32/msvc15/fbtrace.vcxproj @@ -115,7 +115,7 @@ EditAndContinue - mpr.lib;%(AdditionalDependencies) + re2.lib;mpr.lib;%(AdditionalDependencies) ..\..\..\extern\icu\$(Platform)\release\lib;%(AdditionalLibraryDirectories) false @@ -135,7 +135,7 @@ - mpr.lib;%(AdditionalDependencies) + re2.lib;mpr.lib;%(AdditionalDependencies) ..\..\..\extern\icu\$(Platform)\release\lib;%(AdditionalLibraryDirectories) false @@ -153,7 +153,7 @@ WIN32;_DEBUG;DEV_BUILD;_WINDOWS;_USRDLL;SUPERCLIENT;FBTRACE_EXPORTS;NAMESPACE=Vulcan;%(PreprocessorDefinitions) - mpr.lib;%(AdditionalDependencies) + re2.lib;mpr.lib;%(AdditionalDependencies) ..\..\..\extern\icu\$(Platform)\release\lib;%(AdditionalLibraryDirectories) false @@ -177,7 +177,7 @@ - mpr.lib;%(AdditionalDependencies) + re2.lib;mpr.lib;%(AdditionalDependencies) ..\..\..\extern\icu\$(Platform)\release\lib;%(AdditionalLibraryDirectories) false @@ -219,4 +219,4 @@ - + \ No newline at end of file diff --git a/builds/win32/msvc15/gbak.vcxproj b/builds/win32/msvc15/gbak.vcxproj index 47a7c9b33b0..d4be6343ffa 100644 --- a/builds/win32/msvc15/gbak.vcxproj +++ b/builds/win32/msvc15/gbak.vcxproj @@ -115,7 +115,7 @@ EditAndContinue - comctl32.lib;ws2_32.lib;mpr.lib;version.lib;%(AdditionalDependencies) + re2.lib;comctl32.lib;ws2_32.lib;mpr.lib;version.lib;%(AdditionalDependencies) Console false @@ -131,7 +131,7 @@ NDEBUG;WIN32;_CONSOLE;SUPERCLIENT;%(PreprocessorDefinitions) - comctl32.lib;ws2_32.lib;mpr.lib;version.lib;%(AdditionalDependencies) + re2.lib;comctl32.lib;ws2_32.lib;mpr.lib;version.lib;%(AdditionalDependencies) Console false @@ -147,7 +147,7 @@ _DEBUG;DEV_BUILD;WIN32;_CONSOLE;SUPERCLIENT;%(PreprocessorDefinitions) - comctl32.lib;ws2_32.lib;mpr.lib;version.lib;%(AdditionalDependencies) + re2.lib;comctl32.lib;ws2_32.lib;mpr.lib;version.lib;%(AdditionalDependencies) Console false @@ -167,7 +167,7 @@ NDEBUG;WIN32;_CONSOLE;SUPERCLIENT;%(PreprocessorDefinitions) - comctl32.lib;ws2_32.lib;mpr.lib;version.lib;%(AdditionalDependencies) + re2.lib;comctl32.lib;ws2_32.lib;mpr.lib;version.lib;%(AdditionalDependencies) Console false @@ -217,4 +217,4 @@ - + \ No newline at end of file diff --git a/builds/win32/msvc15/yvalve.vcxproj b/builds/win32/msvc15/yvalve.vcxproj index b73b2889c72..0021cffbde0 100644 --- a/builds/win32/msvc15/yvalve.vcxproj +++ b/builds/win32/msvc15/yvalve.vcxproj @@ -19,8 +19,6 @@ - - @@ -28,6 +26,8 @@ + + @@ -81,8 +81,6 @@ - - diff --git a/builds/win32/msvc15/yvalve.vcxproj.filters b/builds/win32/msvc15/yvalve.vcxproj.filters index 9433c436628..09ca441a434 100644 --- a/builds/win32/msvc15/yvalve.vcxproj.filters +++ b/builds/win32/msvc15/yvalve.vcxproj.filters @@ -30,6 +30,12 @@ source + + source + + + source + source @@ -57,12 +63,6 @@ source - - preprocessed - - - preprocessed - Remote client @@ -145,11 +145,5 @@ - - GPRE files - - - GPRE files - - \ No newline at end of file + diff --git a/builds/win32/preprocess.bat b/builds/win32/preprocess.bat index 5fac9386f72..bbc15d21fa0 100644 --- a/builds/win32/preprocess.bat +++ b/builds/win32/preprocess.bat @@ -63,7 +63,6 @@ goto :EOF @set GPRE=%FB_BIN_DIR%\gpre_boot @for %%i in (alice_meta) do @call :PREPROCESS alice %%i -@for %%i in (array, blob) do @call :PREPROCESS yvalve %%i @for %%i in (metd, DdlNodes, PackageNodes) do @call :PREPROCESS dsql %%i -gds_cxx @for %%i in (gpre_meta) do @call :PREPROCESS gpre/std %%i @for %%i in (dfw, dpm, dyn_util, fun, grant, ini, met, scl, Function) do @call :PREPROCESS jrd %%i -gds_cxx @@ -76,7 +75,6 @@ goto :EOF @for %%i in (alice_meta) do @call :PREPROCESS alice %%i @for %%i in (LegacyManagement) do @call :PREPROCESS auth/SecurityDatabase %%i @for %%i in (backup, restore, OdsDetection) do @call :PREPROCESS burp %%i -ocxx -m -@for %%i in (array, blob) do @call :PREPROCESS yvalve %%i @for %%i in (metd) do @call :PREPROCESS dsql %%i -gds_cxx @for %%i in (DdlNodes, PackageNodes) do @call :PREPROCESS dsql %%i -gds_cxx @for %%i in (gpre_meta) do @call :PREPROCESS gpre/std %%i diff --git a/builds/win32/run_all.bat b/builds/win32/run_all.bat index 5890ee69477..89ea7997413 100644 --- a/builds/win32/run_all.bat +++ b/builds/win32/run_all.bat @@ -49,8 +49,11 @@ call make_boot %FBBUILD_BUILDTYPE% if "%ERRLEV%"=="1" goto :END call make_all %FBBUILD_BUILDTYPE% if "%ERRLEV%"=="1" goto :END -call make_examples %FBBUILD_BUILDTYPE% -if "%ERRLEV%"=="1" goto :END + +@if "%FB_CLIENT_ONLY%"=="" ( + call make_examples %FBBUILD_BUILDTYPE% + if "%ERRLEV%"=="1" goto :END +) if "%FBBUILD_BUILD_ONLY%"=="1" goto :END diff --git a/builds/win32/setenvvar.bat b/builds/win32/setenvvar.bat index 1d71e2bd175..dbc80596c11 100644 --- a/builds/win32/setenvvar.bat +++ b/builds/win32/setenvvar.bat @@ -15,6 +15,8 @@ for %%v in ( %* ) do ( ( if /I "%%v"=="DEBUG" ( (set FB_DBG=TRUE) && (set FB_CONFIG=debug) ) ) ( if /I "%%v"=="CLEAN" (set FB_CLEAN=:rebuild) ) ( if /I "%%v"=="RELEASE" ( (set FB_DBG=) && (set FB_CONFIG=release) ) ) + ( if /I "%%v"=="CLIENT_ONLY" (set FB_CLIENT_ONLY=TRUE) ) + ( if /I "%%v"=="CLIENT_ONLY=FALSE" (set FB_CLIENT_ONLY=) ) ) @if not defined FB_CONFIG ( diff --git a/configure.ac b/configure.ac index 800453d25fa..ec48150b64a 100644 --- a/configure.ac +++ b/configure.ac @@ -565,6 +565,16 @@ AC_ARG_ENABLE(developer, esac]) AC_SUBST(DEVEL_FLG) +CLIENT_ONLY_FLG=N +AC_ARG_ENABLE(client-only, + [ --enable-client-only use client-only mode rules (default=no)], + [case "$enableval" in + yes) CLIENT_ONLY_FLG=Y;; + no) CLIENT_ONLY_FLG=N;; + *) AC_MSG_ERROR(bad value '${enableval}' for --enable-client-only);; + esac]) +AC_SUBST(CLIENT_ONLY_FLG) + CROSS= IS_CROSS=N AC_ARG_WITH(cross-build, @@ -579,9 +589,19 @@ AC_ARG_WITH(builtin-tommath, [TOMMATH_BUILD=Y]) AC_SUBST(TOMMATH_BUILD) +WITH_TOMCRYPT=Y +AC_ARG_WITH(tomcrypt, + [ --without-tomcrypt do not use libtomcrypt (allowed with --enable-client-only)], + [case "$withval" in + yes) WITH_TOMCRYPT=Y;; + no) WITH_TOMCRYPT=N;; + *) AC_MSG_ERROR(bad value '${withval}' for --with-tomcrypt);; + esac]) +AC_SUBST(WITH_TOMCRYPT) + TOMCRYPT_BUILD=N AC_ARG_WITH(builtin-tomcrypt, - [ --with-builtin-tomcrypt build libtomcrypt library from firebird tree], + [ --with-builtin-tomcrypt build libtomcrypt library from firebird tree], [TOMCRYPT_BUILD=Y]) AC_SUBST(TOMCRYPT_BUILD) @@ -592,7 +612,7 @@ AC_ARG_WITH(termlib, RE2_BUILD=Y AC_ARG_WITH(system-re2, - [ --with-system-re2 use system-wide re2 library instead of embedded copy], + [ --with-system-re2 use system-wide re2 library instead of embedded copy], [RE2_BUILD=N]) AC_SUBST(RE2_BUILD) @@ -910,16 +930,18 @@ dnl check for tomcrypt presence if test "$TOMCRYPT_BUILD" = "Y"; then CRYPTLIB=-ltomcrypt else - XE_SAVE_ENV() - CFLAGS="$CFLAGS -DLTC_NO_ASM" - AC_CHECK_HEADER(tomcrypt.h,, - AC_MSG_ERROR(Include file for tomcrypt not found - please install development tomcrypt package or use --with-builtin-tomcrypt)) - XE_RESTORE_ENV() - XE_SAVE_ENV() - LIBS= - AC_CHECK_LIB(tomcrypt, sha1_init, CRYPTLIB=-ltomcrypt, - AC_MSG_ERROR(Library tomcrypt not found - please install development tomcrypt package or use --with-builtin-tomcrypt)) - XE_RESTORE_ENV() + if test "$WITH_TOMCRYPT" = "Y"; then + XE_SAVE_ENV() + CFLAGS="$CFLAGS -DLTC_NO_ASM" + AC_CHECK_HEADER(tomcrypt.h,, + AC_MSG_ERROR(Include file for tomcrypt not found - please install development tomcrypt package or use --with-builtin-tomcrypt)) + XE_RESTORE_ENV() + XE_SAVE_ENV() + LIBS= + AC_CHECK_LIB(tomcrypt, sha1_init, CRYPTLIB=-ltomcrypt, + AC_MSG_ERROR(Library tomcrypt not found - please install development tomcrypt package or use --with-builtin-tomcrypt)) + XE_RESTORE_ENV() + fi fi AC_SUBST(CRYPTLIB) @@ -935,16 +957,18 @@ if test "$EDITLINE_FLG" = "Y"; then AC_SUBST(TERMLIB) fi -dnl check for re2 presence -if test "$RE2_BUILD" != "Y"; then - XE_SAVE_ENV() - AC_LANG_PUSH(C++) - AC_CHECK_HEADER(re2/re2.h, RE2LIB=-lre2, - AC_MSG_ERROR(Include file for re2 not found - please install development re2 package or drop --with-system-re2)) - AC_LANG_POP(C++) - XE_RESTORE_ENV() +if test "$CLIENT_ONLY_FLG" = "N"; then + dnl check for re2 presence + if test "$RE2_BUILD" != "Y"; then + XE_SAVE_ENV() + AC_LANG_PUSH(C++) + AC_CHECK_HEADER(re2/re2.h, RE2LIB=-lre2, + AC_MSG_ERROR(Include file for re2 not found - please install development re2 package or drop --with-system-re2)) + AC_LANG_POP(C++) + XE_RESTORE_ENV() + fi + AC_SUBST(RE2LIB) fi -AC_SUBST(RE2LIB) dnl Check for libraries AC_SEARCH_LIBS(dlopen, dl) @@ -1324,7 +1348,13 @@ for fb_tgt in \$FB_TARGETS; do dnl # output mkdir -p gen/\$fb_tgt/firebird/bin + mkdir -p gen/\$fb_tgt/firebird/include/firebird/impl + mkdir -p gen/\$fb_tgt/firebird/lib + mkdir -p gen/\$fb_tgt/firebird/tests +if test "$CLIENT_ONLY_FLG" = "N" || test "$WITH_TOMCRYPT" = "Y"; then mkdir -p gen/\$fb_tgt/firebird/plugins +fi +if test "$CLIENT_ONLY_FLG" = "N"; then mkdir -p gen/\$fb_tgt/firebird/plugins/udr mkdir -p gen/\$fb_tgt/firebird/examples/api mkdir -p gen/\$fb_tgt/firebird/examples/dbcrypt @@ -1340,10 +1370,8 @@ dnl # output mkdir -p gen/\$fb_tgt/firebird/examples/udr mkdir -p gen/\$fb_tgt/firebird/examples/prebuilt/bin mkdir -p gen/\$fb_tgt/firebird/examples/prebuilt/plugins - mkdir -p gen/\$fb_tgt/firebird/include/firebird/impl - mkdir -p gen/\$fb_tgt/firebird/lib mkdir -p gen/\$fb_tgt/firebird/misc - mkdir -p gen/\$fb_tgt/firebird/tests +fi dnl ### TEMP ### directories for generated .cpp, .o and .d by module name for src_dir in `cd src; ls -R -1 * | grep : | tr -d : | tr "\n" " "; cd ..`; do @@ -1370,12 +1398,16 @@ dnl TODO: fix "arch-specific/linux/" paths for common posix scripts with SVN for fb_tgt in $FB_TARGETS; do AC_CONFIG_FILES([ gen/$fb_tgt/firebird/firebird.conf:builds/install/misc/firebird.conf +gen/$fb_tgt/firebird/plugins.conf:builds/install/misc/plugins.conf +]) +if test "$CLIENT_ONLY_FLG" = "N"; then +AC_CONFIG_FILES([ gen/$fb_tgt/firebird/databases.conf:builds/install/misc/databases.conf gen/$fb_tgt/firebird/fbtrace.conf:src/utilities/ntrace/fbtrace.conf gen/$fb_tgt/firebird/intl/fbintl.conf:builds/install/misc/fbintl.conf -gen/$fb_tgt/firebird/plugins.conf:builds/install/misc/plugins.conf gen/$fb_tgt/firebird/replication.conf:builds/install/misc/replication.conf ]) +fi done if test "x$CROSS" != "x"; then diff --git a/src/common/classes/RefCounted.h b/src/common/classes/RefCounted.h index 18f25efd7d6..1f988f28b43 100644 --- a/src/common/classes/RefCounted.h +++ b/src/common/classes/RefCounted.h @@ -25,6 +25,7 @@ #ifndef COMMON_REF_COUNTED_H #define COMMON_REF_COUNTED_H +#include "fb_exception.h" #include "../common/classes/fb_atomic.h" #include "../common/gdsassert.h" diff --git a/src/include/firebird/Message.h b/src/include/firebird/Message.h index 80b8cdb2563..c616ad8c6b2 100644 --- a/src/include/firebird/Message.h +++ b/src/include/firebird/Message.h @@ -267,8 +267,8 @@ struct FbVarChar { size_t len = strlen(s); assert(len <= N); - length = (ISC_USHORT) len; - memcpy(str, s, (length <= N ? length : N)); + length = (ISC_USHORT) (len <= N ? len : N); + memcpy(str, s, length); } }; diff --git a/src/yvalve/array.epp b/src/yvalve/array.cpp similarity index 77% rename from src/yvalve/array.epp rename to src/yvalve/array.cpp index 449de9806a7..9422c9dd45b 100644 --- a/src/yvalve/array.epp +++ b/src/yvalve/array.cpp @@ -1,6 +1,6 @@ /* * PROGRAM: Interbase layered support library - * MODULE: array.epp + * MODULE: array.cpp * DESCRIPTION: Dynamic array support * * The contents of this file are subject to the Interbase Public @@ -33,19 +33,19 @@ */ #include "firebird.h" +#include "firebird/Message.h" #include #include #include "ibase.h" #include "../yvalve/array_proto.h" #include "../yvalve/gds_proto.h" +#include "../yvalve/YObjects.h" #include "../common/StatusArg.h" #include "../jrd/constants.h" #include "../common/utils_proto.h" using namespace Firebird; -DATABASE DB = STATIC FILENAME "yachts.lnk"; - const int array_desc_column_major = 1; // Set for FORTRAN struct gen_t @@ -62,8 +62,6 @@ static void adjust_length(ISC_ARRAY_DESC*); static void copy_exact_name (const char*, char*, SSHORT); static ISC_STATUS error(ISC_STATUS* status, const Arg::StatusVector& v); static ISC_STATUS gen_sdl(ISC_STATUS*, const ISC_ARRAY_DESC*, SSHORT*, UCHAR**, SSHORT*, bool); -static ISC_STATUS lookup_desc(ISC_STATUS*, FB_API_HANDLE*, FB_API_HANDLE*, const SCHAR*, - const SCHAR*, ISC_ARRAY_DESC*, SCHAR*); static ISC_STATUS stuff_args(gen_t*, SSHORT, ...); static ISC_STATUS stuff_literal(gen_t*, SLONG); static ISC_STATUS stuff_string(gen_t*, UCHAR, const SCHAR*); @@ -144,73 +142,117 @@ ISC_STATUS API_ROUTINE isc_array_get_slice(ISC_STATUS* status, } -ISC_STATUS API_ROUTINE isc_array_lookup_bounds(ISC_STATUS* status, - FB_API_HANDLE* db_handle, - FB_API_HANDLE* trans_handle, - const SCHAR* relation_name, - const SCHAR* field_name, - ISC_ARRAY_DESC* desc) +void iscArrayLookupBoundsImpl(Why::YAttachment* attachment, + Why::YTransaction* transaction, const SCHAR* relationName, const SCHAR* fieldName, ISC_ARRAY_DESC* desc) { -/************************************** - * - * i s c _ a r r a y _ l o o k u p _ b o u n d s - * - ************************************** - * - * Functional description - * - **************************************/ - SCHAR global[MAX_SQL_IDENTIFIER_SIZE]; + LocalStatus status; + CheckStatusWrapper statusWrapper(&status); - if (lookup_desc(status, db_handle, trans_handle, field_name, relation_name, desc, global)) - { - return status[1]; - } - - ISC_STATUS_ARRAY isc_status = {0}; - isc_db_handle DB = *db_handle; - isc_req_handle handle = 0; + iscArrayLookupDescImpl(attachment, transaction, relationName, fieldName, desc); ISC_ARRAY_BOUND* tail = desc->array_desc_bounds; - FOR (REQUEST_HANDLE handle TRANSACTION_HANDLE *trans_handle) - X IN RDB$FIELD_DIMENSIONS - WITH X.RDB$FIELD_NAME EQ global - SORTED BY X.RDB$DIMENSION - tail->array_bound_lower = (SSHORT) X.RDB$LOWER_BOUND; - tail->array_bound_upper = (SSHORT) X.RDB$UPPER_BOUND; - ++tail; - END_FOR - ON_ERROR - ISC_STATUS_ARRAY temp_status; - isc_release_request(temp_status, &handle); - fb_utils::copyStatus(status, ISC_STATUS_LENGTH, isc_status, ISC_STATUS_LENGTH); - return status[1]; - END_ERROR; + constexpr auto sql = R"""( + select fd.rdb$lower_bound, + fd.rdb$upper_bound + from rdb$field_dimensions fd + where fd.rdb$field_name = ? + order by fd.dimension + )"""; + + FB_MESSAGE(InputMessage, CheckStatusWrapper, + (FB_VARCHAR(MAX_SQL_IDENTIFIER_LEN * 4), fieldName) + ) inputMessage(&statusWrapper, MasterInterfacePtr()); + inputMessage.clear(); + + FB_MESSAGE(OutputMessage, CheckStatusWrapper, + (FB_INTEGER, lowerBound) + (FB_INTEGER, upperBound) + ) outputMessage(&statusWrapper, MasterInterfacePtr()); + + inputMessage->fieldNameNull = FB_FALSE; + inputMessage->fieldName.set((const char*) fieldName); + + auto resultSet = makeNoIncRef(attachment->openCursor(&statusWrapper, transaction, 0, sql, + SQL_DIALECT_CURRENT, inputMessage.getMetadata(), inputMessage.getData(), + outputMessage.getMetadata(), nullptr, 0)); + status.check(); + + while (resultSet->fetchNext(&statusWrapper, outputMessage.getData()) == IStatus::RESULT_OK) + { + tail->array_bound_lower = outputMessage->lowerBoundNull ? 0 : outputMessage->lowerBound; + tail->array_bound_upper = outputMessage->upperBoundNull ? 0 : outputMessage->upperBound; + ++tail; + } - isc_release_request(isc_status, &handle); - return status[1]; + status.check(); } -ISC_STATUS API_ROUTINE isc_array_lookup_desc(ISC_STATUS* status, - FB_API_HANDLE* db_handle, - FB_API_HANDLE* trans_handle, - const SCHAR* relation_name, - const SCHAR* field_name, - ISC_ARRAY_DESC* desc) +void iscArrayLookupDescImpl(Why::YAttachment* attachment, + Why::YTransaction* transaction, const SCHAR* relationName, const SCHAR* fieldName, ISC_ARRAY_DESC* desc) { -/************************************** - * - * i s c _ a r r a y _ l o o k u p _ d e s c - * - ************************************** - * - * Functional description - * - **************************************/ + LocalStatus status; + CheckStatusWrapper statusWrapper(&status); + + copy_exact_name(fieldName, desc->array_desc_field_name, sizeof(desc->array_desc_field_name)); + copy_exact_name(relationName, desc->array_desc_relation_name, sizeof(desc->array_desc_relation_name)); + + desc->array_desc_flags = 0; - return lookup_desc(status, db_handle, trans_handle, field_name, relation_name, desc, NULL); + constexpr auto sql = R"""( + select f.rdb$field_type, + f.rdb$field_scale, + f.rdb$field_length, + f.rdb$dimensions + from rdb$relation_fields rf + join rdb$fields f + on f.rdb$field_name = rf.rdb$field_source + where rf.rdb$relation_name = ? and + rf.rdb$field_name = ? + )"""; + + FB_MESSAGE(InputMessage, CheckStatusWrapper, + (FB_VARCHAR(MAX_SQL_IDENTIFIER_LEN * 4), relationName) + (FB_VARCHAR(MAX_SQL_IDENTIFIER_LEN * 4), fieldName) + ) inputMessage(&statusWrapper, MasterInterfacePtr()); + inputMessage.clear(); + + FB_MESSAGE(OutputMessage, CheckStatusWrapper, + (FB_INTEGER, fieldType) + (FB_INTEGER, fieldScale) + (FB_INTEGER, fieldLength) + (FB_INTEGER, dimensions) + ) outputMessage(&statusWrapper, MasterInterfacePtr()); + + inputMessage->relationNameNull = FB_FALSE; + inputMessage->relationName.set((const char*) relationName); + + inputMessage->fieldNameNull = FB_FALSE; + inputMessage->fieldName.set((const char*) fieldName); + + auto resultSet = makeNoIncRef(attachment->openCursor(&statusWrapper, transaction, 0, sql, + SQL_DIALECT_CURRENT, inputMessage.getMetadata(), inputMessage.getData(), + outputMessage.getMetadata(), nullptr, 0)); + status.check(); + + if (resultSet->fetchNext(&statusWrapper, outputMessage.getData()) == IStatus::RESULT_OK) + { + desc->array_desc_dtype = outputMessage->fieldTypeNull ? 0 : outputMessage->fieldType; + desc->array_desc_scale = outputMessage->fieldScaleNull ? 0 : outputMessage->fieldScale; + desc->array_desc_length = outputMessage->fieldLengthNull ? 0 : outputMessage->fieldLength; + + adjust_length(desc); + desc->array_desc_dimensions = outputMessage->dimensionsNull ? 0 : outputMessage->dimensions; + + return; + } + + status.check(); + + (Arg::Gds(isc_fldnotdef) << + Arg::Str(desc->array_desc_field_name) << + Arg::Str(desc->array_desc_relation_name)).raise(); } @@ -517,67 +559,6 @@ static ISC_STATUS gen_sdl(ISC_STATUS* status, -static ISC_STATUS lookup_desc(ISC_STATUS* status, - FB_API_HANDLE* db_handle, - FB_API_HANDLE* trans_handle, - const SCHAR* field_name, - const SCHAR* relation_name, - ISC_ARRAY_DESC* desc, - SCHAR* global) -{ -/************************************** - * - * l o o k u p _ d e s c - * - ************************************** - * - * Functional description - * - **************************************/ - ISC_STATUS_ARRAY isc_status = {0}; - isc_db_handle DB = *db_handle; - isc_req_handle handle = 0; - - copy_exact_name(field_name, desc->array_desc_field_name, sizeof(desc->array_desc_field_name)); - copy_exact_name(relation_name, desc->array_desc_relation_name, sizeof(desc->array_desc_relation_name)); - - desc->array_desc_flags = 0; - - bool flag = false; - - FOR (REQUEST_HANDLE handle TRANSACTION_HANDLE *trans_handle) - X IN RDB$RELATION_FIELDS CROSS Y IN RDB$FIELDS - WITH X.RDB$FIELD_SOURCE EQ Y.RDB$FIELD_NAME AND - X.RDB$RELATION_NAME EQ desc->array_desc_relation_name AND - X.RDB$FIELD_NAME EQ desc->array_desc_field_name - flag = true; - desc->array_desc_dtype = (UCHAR)Y.RDB$FIELD_TYPE; - desc->array_desc_scale = (SCHAR)Y.RDB$FIELD_SCALE; - desc->array_desc_length = Y.RDB$FIELD_LENGTH; - adjust_length(desc); - desc->array_desc_dimensions = Y.RDB$DIMENSIONS; - if (global) { - copy_exact_name (Y.RDB$FIELD_NAME, global, sizeof(Y.RDB$FIELD_NAME)); - } - - END_FOR - ON_ERROR - ISC_STATUS_ARRAY temp_status; - isc_release_request(temp_status, &handle); - fb_utils::copyStatus(status, ISC_STATUS_LENGTH, isc_status, ISC_STATUS_LENGTH); - return status[1]; - END_ERROR; - - isc_release_request(isc_status, &handle); - - if (!flag) - return error(status, Arg::Gds(isc_fldnotdef) << Arg::Str(desc->array_desc_field_name) << - Arg::Str(desc->array_desc_relation_name)); - - return error(status, Arg::Gds(FB_SUCCESS)); -} - - static ISC_STATUS stuff_args(gen_t* gen, SSHORT count, ...) { /************************************** diff --git a/src/yvalve/array_proto.h b/src/yvalve/array_proto.h index 5bcf9f0d00b..ae261222e1c 100644 --- a/src/yvalve/array_proto.h +++ b/src/yvalve/array_proto.h @@ -1,7 +1,7 @@ /* * PROGRAM: Dynamic SQL runtime support * MODULE: array_proto.h - * DESCRIPTION: Prototype Header file for array.epp + * DESCRIPTION: Prototype Header file for array.cpp * * The contents of this file are subject to the Interbase Public * License Version 1.0 (the "License"); you may not use this file @@ -24,6 +24,11 @@ #ifndef DSQL_ARRAY_PROTO_H #define DSQL_ARRAY_PROTO_H +namespace Why { + class YAttachment; + class YTransaction; +} + #ifdef __cplusplus extern "C" { #endif @@ -49,6 +54,10 @@ ISC_STATUS API_ROUTINE isc_array_set_desc(ISC_STATUS*, const SCHAR*, const SCHAR } /* extern "C" */ #endif +void iscArrayLookupBoundsImpl(Why::YAttachment* attachment, Why::YTransaction* transaction, + const SCHAR* relationName, const SCHAR* fieldName, ISC_ARRAY_DESC* desc); -#endif // DSQL_ARRAY_PROTO_H +void iscArrayLookupDescImpl(Why::YAttachment* attachment, Why::YTransaction* transaction, + const SCHAR* relationName, const SCHAR* fieldName, ISC_ARRAY_DESC* desc); +#endif // DSQL_ARRAY_PROTO_H diff --git a/src/yvalve/blob.epp b/src/yvalve/blob.cpp similarity index 57% rename from src/yvalve/blob.epp rename to src/yvalve/blob.cpp index 17d47a67bb7..548e458134a 100644 --- a/src/yvalve/blob.epp +++ b/src/yvalve/blob.cpp @@ -1,6 +1,6 @@ /* * PROGRAM: InterBase layered support library - * MODULE: blob.epp + * MODULE: blob.cpp * DESCRIPTION: Dynamic blob support * * The contents of this file are subject to the Interbase Public @@ -30,16 +30,17 @@ */ #include "firebird.h" +#include "firebird/Message.h" #include "ibase.h" #include "../jrd/intl.h" #include "../yvalve/blob_proto.h" +#include "../yvalve/YObjects.h" #include "../common/StatusArg.h" #include "../common/utils_proto.h" +#include "../jrd/constants.h" using namespace Firebird; -DATABASE DB = STATIC "yachts.lnk"; - static void copy_exact_name (const UCHAR*, UCHAR*, SSHORT); static ISC_STATUS error(ISC_STATUS* status, const Arg::StatusVector& v); @@ -119,96 +120,120 @@ ISC_STATUS API_ROUTINE isc_blob_gen_bpb(ISC_STATUS* status, } -ISC_STATUS API_ROUTINE isc_blob_lookup_desc(ISC_STATUS* status, - FB_API_HANDLE* db_handle, - FB_API_HANDLE* trans_handle, - const UCHAR* relation_name, - const UCHAR* field_name, - ISC_BLOB_DESC* desc, UCHAR* global) +// Lookup the blob subtype, character set and segment size information from the metadata, +// given a relation/procedure name and column/parameter name. +// It will fill in the information in the BLOB_DESC. +void iscBlobLookupDescImpl(Why::YAttachment* attachment, Why::YTransaction* transaction, + const UCHAR* relationName, const UCHAR* fieldName, ISC_BLOB_DESC* desc, UCHAR* global) { -/*********************************************** - * - * i s c _ b l o b _ l o o k u p _ d e s c - * - *********************************************** - * - * Functional description - * - * This routine will lookup the subtype, - * character set and segment size information - * from the metadata, given a relation/procedure name - * and column/parameter name. it will fill in the information - * in the BLOB_DESC. - * - ***********************************************/ - ISC_STATUS_ARRAY isc_status = {0}; - isc_db_handle DB = *db_handle; - isc_req_handle handle = 0; + LocalStatus status; + CheckStatusWrapper statusWrapper(&status); - copy_exact_name(field_name, desc->blob_desc_field_name, sizeof(desc->blob_desc_field_name)); - copy_exact_name(relation_name, desc->blob_desc_relation_name, sizeof(desc->blob_desc_relation_name)); + copy_exact_name(fieldName, desc->blob_desc_field_name, sizeof(desc->blob_desc_field_name)); + copy_exact_name(relationName, desc->blob_desc_relation_name, sizeof(desc->blob_desc_relation_name)); bool flag = false; - FOR (REQUEST_HANDLE handle TRANSACTION_HANDLE *trans_handle) - X IN RDB$RELATION_FIELDS CROSS Y IN RDB$FIELDS - WITH X.RDB$FIELD_SOURCE EQ Y.RDB$FIELD_NAME AND - X.RDB$RELATION_NAME EQ desc->blob_desc_relation_name AND - X.RDB$FIELD_NAME EQ desc->blob_desc_field_name - flag = true; - - desc->blob_desc_subtype = Y.RDB$FIELD_SUB_TYPE; - desc->blob_desc_charset = Y.RDB$CHARACTER_SET_ID; - desc->blob_desc_segment_size = Y.RDB$SEGMENT_LENGTH; - - if (global) { - copy_exact_name((UCHAR*) Y.RDB$FIELD_NAME, global, sizeof(Y.RDB$FIELD_NAME)); - } - END_FOR - ON_ERROR - ISC_STATUS_ARRAY temp_status; - isc_release_request(temp_status, &handle); - fb_utils::copyStatus(status, ISC_STATUS_LENGTH, isc_status, ISC_STATUS_LENGTH); - return status[1]; - END_ERROR; - - isc_release_request(isc_status, &handle); + // Shared by both queries. + FB_MESSAGE(OutputMessage, CheckStatusWrapper, + (FB_INTEGER, fieldSubType) + (FB_INTEGER, segmentLength) + (FB_INTEGER, characterSetId) + ) outputMessage(&statusWrapper, MasterInterfacePtr()); + + { // scope + constexpr auto sql = R"""( + select f.rdb$field_sub_type, + f.rdb$segment_length, + f.rdb$character_set_id + from rdb$relation_fields rf + join rdb$fields f + on f.rdb$field_name = rf.rdb$field_source + where rf.rdb$relation_name = ? and + rf.rdb$field_name = ? + )"""; + + FB_MESSAGE(InputMessage, CheckStatusWrapper, + (FB_VARCHAR(MAX_SQL_IDENTIFIER_LEN * 4), relationName) + (FB_VARCHAR(MAX_SQL_IDENTIFIER_LEN * 4), fieldName) + ) inputMessage(&statusWrapper, MasterInterfacePtr()); + inputMessage.clear(); + + inputMessage->relationNameNull = FB_FALSE; + inputMessage->relationName.set((const char*) relationName); + + inputMessage->fieldNameNull = FB_FALSE; + inputMessage->fieldName.set((const char*) fieldName); + + auto resultSet = makeNoIncRef(attachment->openCursor(&statusWrapper, transaction, 0, sql, + SQL_DIALECT_CURRENT, inputMessage.getMetadata(), inputMessage.getData(), + outputMessage.getMetadata(), nullptr, 0)); + status.check(); + + if (resultSet->fetchNext(&statusWrapper, outputMessage.getData()) == IStatus::RESULT_OK) + { + flag = true; + + desc->blob_desc_subtype = outputMessage->fieldSubTypeNull ? 0 : outputMessage->fieldSubType; + desc->blob_desc_charset = outputMessage->characterSetIdNull ? 0 : outputMessage->characterSetId; + desc->blob_desc_segment_size = outputMessage->segmentLengthNull ? 0 : outputMessage->segmentLength; + } + + status.check(); + } if (!flag) { - handle = 0; - - FOR (REQUEST_HANDLE handle TRANSACTION_HANDLE *trans_handle) - X IN RDB$PROCEDURE_PARAMETERS - CROSS Y IN RDB$FIELDS - WITH X.RDB$FIELD_SOURCE EQ Y.RDB$FIELD_NAME AND - X.RDB$PROCEDURE_NAME EQ desc->blob_desc_relation_name AND - X.RDB$PACKAGE_NAME MISSING AND - X.RDB$PARAMETER_NAME EQ desc->blob_desc_field_name + constexpr auto sql = R"""( + select f.rdb$field_sub_type, + f.rdb$segment_length, + f.rdb$character_set_id + from rdb$procedure_parameters pp + join rdb$fields f + on f.rdb$field_name = pp.rdb$field_source + where pp.rdb$procedure_name = ? and + pp.rdb$parameter_name = ? and + pp.rdb$package_name is null + )"""; + + FB_MESSAGE(InputMessage, CheckStatusWrapper, + (FB_VARCHAR(MAX_SQL_IDENTIFIER_LEN * 4), procedureName) + (FB_VARCHAR(MAX_SQL_IDENTIFIER_LEN * 4), fieldName) + ) inputMessage(&statusWrapper, MasterInterfacePtr()); + inputMessage.clear(); + + inputMessage->procedureNameNull = FB_FALSE; + inputMessage->procedureName.set((const char*) relationName); + + inputMessage->fieldNameNull = FB_FALSE; + inputMessage->fieldName.set((const char*) fieldName); + + auto resultSet = makeNoIncRef(attachment->openCursor(&statusWrapper, transaction, 0, sql, + SQL_DIALECT_CURRENT, inputMessage.getMetadata(), inputMessage.getData(), + outputMessage.getMetadata(), nullptr, 0)); + status.check(); + + if (resultSet->fetchNext(&statusWrapper, outputMessage.getData()) == IStatus::RESULT_OK) + { flag = true; - desc->blob_desc_subtype = Y.RDB$FIELD_SUB_TYPE; - desc->blob_desc_charset = Y.RDB$CHARACTER_SET_ID; - desc->blob_desc_segment_size = Y.RDB$SEGMENT_LENGTH; - - if (global) - copy_exact_name((UCHAR*) Y.RDB$FIELD_NAME, global, sizeof(Y.RDB$FIELD_NAME)); - END_FOR - ON_ERROR - ISC_STATUS_ARRAY temp_status; - isc_release_request(temp_status, &handle); - fb_utils::copyStatus(status, ISC_STATUS_LENGTH, isc_status, ISC_STATUS_LENGTH); - return status[1]; - END_ERROR; - - isc_release_request(isc_status, &handle); + desc->blob_desc_subtype = outputMessage->fieldSubTypeNull ? 0 : outputMessage->fieldSubType; + desc->blob_desc_charset = outputMessage->characterSetIdNull ? 0 : outputMessage->characterSetId; + desc->blob_desc_segment_size = outputMessage->segmentLengthNull ? 0 : outputMessage->segmentLength; + } + + status.check(); } if (!flag) - return error(status, Arg::Gds(isc_fldnotdef) << Arg::Str((const char*)(desc->blob_desc_field_name)) << - Arg::Str((const char*)(desc->blob_desc_relation_name))); + { + (Arg::Gds(isc_fldnotdef) << + Arg::Str((const char*)(desc->blob_desc_field_name)) << + Arg::Str((const char*)(desc->blob_desc_relation_name))).raise(); + } - return error(status, Arg::Gds(FB_SUCCESS)); + if (global) + copy_exact_name(fieldName, global, sizeof(desc->blob_desc_field_name)); } diff --git a/src/yvalve/blob_proto.h b/src/yvalve/blob_proto.h index 3752a4efda9..0a5440ccd29 100644 --- a/src/yvalve/blob_proto.h +++ b/src/yvalve/blob_proto.h @@ -1,7 +1,7 @@ /* * PROGRAM: Dynamic SQL runtime support * MODULE: blob_proto.h - * DESCRIPTION: Prototype Header file for blob.epp + * DESCRIPTION: Prototype Header file for blob.cpp * * The contents of this file are subject to the Interbase Public * License Version 1.0 (the "License"); you may not use this file @@ -24,6 +24,13 @@ #ifndef DSQL_BLOB_PROTO_H #define DSQL_BLOB_PROTO_H +#include "../common/classes/RefCounted.h" + +namespace Why { + class YAttachment; + class YTransaction; +} + ISC_STATUS API_ROUTINE isc_blob_gen_bpb(ISC_STATUS*, const ISC_BLOB_DESC*, const ISC_BLOB_DESC*, USHORT, UCHAR*, USHORT*); ISC_STATUS API_ROUTINE isc_blob_lookup_desc(ISC_STATUS*, void**, void**, @@ -31,6 +38,9 @@ ISC_STATUS API_ROUTINE isc_blob_lookup_desc(ISC_STATUS*, void**, void**, ISC_STATUS API_ROUTINE isc_blob_set_desc(ISC_STATUS*, const UCHAR*, const UCHAR*, SSHORT, SSHORT, SSHORT, ISC_BLOB_DESC*); +void iscBlobLookupDescImpl(Why::YAttachment* attachment, Why::YTransaction* transaction, + const UCHAR* relationName, const UCHAR* fieldName, ISC_BLOB_DESC* desc, UCHAR* global); + // Only declared in ibase.h: //void API_ROUTINE isc_blob_default_desc(ISC_BLOB_DESC* desc, // const UCHAR*, const UCHAR*); diff --git a/src/yvalve/why.cpp b/src/yvalve/why.cpp index c6ab39bac21..70b4beae6ad 100644 --- a/src/yvalve/why.cpp +++ b/src/yvalve/why.cpp @@ -62,6 +62,8 @@ #include "../common/classes/fb_tls.h" #include "../common/status.h" #include "../common/classes/InternalMessageBuffer.h" +#include "../yvalve/array_proto.h" +#include "../yvalve/blob_proto.h" #include "../yvalve/utl_proto.h" #include "../yvalve/why_proto.h" #include "../yvalve/MasterImplementation.h" @@ -1584,6 +1586,50 @@ Firebird::ITransaction* handleToITransaction(CheckStatusWrapper* status, isc_tr_ //------------------------------------- +ISC_STATUS API_ROUTINE isc_array_lookup_bounds(ISC_STATUS* userStatus, FB_API_HANDLE* dbHandle, FB_API_HANDLE* traHandle, + const SCHAR* relationName, const SCHAR* fieldName, ISC_ARRAY_DESC* desc) +{ + StatusVector status(userStatus); + CheckStatusWrapper statusWrapper(&status); + + try + { + RefPtr attachment(translateHandle(attachments, dbHandle)); + RefPtr transaction(translateHandle(transactions, traHandle)); + + iscArrayLookupBoundsImpl(attachment, transaction, relationName, fieldName, desc); + } + catch (const Exception& e) + { + e.stuffException(&statusWrapper); + } + + return status[1]; +} + + +ISC_STATUS API_ROUTINE isc_array_lookup_desc(ISC_STATUS* userStatus, FB_API_HANDLE* dbHandle, FB_API_HANDLE* traHandle, + const SCHAR* relationName, const SCHAR* fieldName, ISC_ARRAY_DESC* desc) +{ + StatusVector status(userStatus); + CheckStatusWrapper statusWrapper(&status); + + try + { + RefPtr attachment(translateHandle(attachments, dbHandle)); + RefPtr transaction(translateHandle(transactions, traHandle)); + + iscArrayLookupDescImpl(attachment, transaction, relationName, fieldName, desc); + } + catch (const Exception& e) + { + e.stuffException(&statusWrapper); + } + + return status[1]; +} + + // Attach a database through the first subsystem that recognizes it. ISC_STATUS API_ROUTINE isc_attach_database(ISC_STATUS* userStatus, SSHORT fileLength, const TEXT* filename, isc_db_handle* publicHandle, SSHORT dpbLength, const SCHAR* dpb) @@ -1645,6 +1691,31 @@ ISC_STATUS API_ROUTINE isc_blob_info(ISC_STATUS* userStatus, isc_blob_handle* bl } +// Lookup the blob subtype, character set and segment size information from the metadata, +// given a relation/procedure name and column/parameter name. +// It will fill in the information in the BLOB_DESC. +ISC_STATUS API_ROUTINE isc_blob_lookup_desc(ISC_STATUS* userStatus, isc_db_handle* dbHandle, isc_tr_handle* traHandle, + const UCHAR* relationName, const UCHAR* fieldName, ISC_BLOB_DESC* desc, UCHAR* global) +{ + StatusVector status(userStatus); + CheckStatusWrapper statusWrapper(&status); + + try + { + RefPtr attachment(translateHandle(attachments, dbHandle)); + RefPtr transaction(translateHandle(transactions, traHandle)); + + iscBlobLookupDescImpl(attachment, transaction, relationName, fieldName, desc, global); + } + catch (const Exception& e) + { + e.stuffException(&statusWrapper); + } + + return status[1]; +} + + // Abort a partially completed blob. ISC_STATUS API_ROUTINE isc_cancel_blob(ISC_STATUS* userStatus, isc_blob_handle* blobHandle) {