[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[sc-dev] SF.net SVN: supercollider:[9627] trunk



Revision: 9627
          http://supercollider.svn.sourceforge.net/supercollider/?rev=9627&view=rev
Author:   axelballey
Date:     2009-12-22 18:08:34 +0000 (Tue, 22 Dec 2009)

Log Message:
-----------
iPhone port : removed unneeded files from xcode projects, fixed compilation : slot pointer size set to 4 when __arm__ is defined
added Cydia target in iPhone_language project with script to build SuperCollider.deb package

Modified Paths:
--------------
    trunk/Headers/lang/PyrSlot.h
    trunk/Source/app/iPhone/iPhoneSCView.mm
    trunk/Source/app/iPhone/iSCLangController.mm
    trunk/iPhone_Language.xcodeproj/project.pbxproj
    trunk/iPhone_Synth.xcodeproj/project.pbxproj

Added Paths:
-----------
    trunk/iPhone Resources/SuperCollider_Cydia.plist

Modified: trunk/Headers/lang/PyrSlot.h
===================================================================
--- trunk/Headers/lang/PyrSlot.h	2009-12-22 10:28:22 UTC (rev 9626)
+++ trunk/Headers/lang/PyrSlot.h	2009-12-22 18:08:34 UTC (rev 9627)
@@ -28,7 +28,7 @@
 #ifndef _PYRSLOT_H_
 #define _PYRSLOT_H_
 
-#if ( __SIZEOF_POINTER__ == 4 ) || defined(__i386__) || defined(__ppc__)
+#if ( __SIZEOF_POINTER__ == 4 ) || defined(__i386__) || defined(__ppc__) || defined(__arm__)
 #include "PyrSlot32.h"
 #elif ( __SIZEOF_POINTER__ == 8 ) || defined(__x86_64__)
 #include "PyrSlot64.h"

Modified: trunk/Source/app/iPhone/iPhoneSCView.mm
===================================================================
--- trunk/Source/app/iPhone/iPhoneSCView.mm	2009-12-22 10:28:22 UTC (rev 9626)
+++ trunk/Source/app/iPhone/iPhoneSCView.mm	2009-12-22 18:08:34 UTC (rev 9627)
@@ -951,8 +951,8 @@
 	if (mObj) {
 		VMGlobals *g = gMainVMGlobals;
 		int classVarIndex = slotRawInt(&getsym("SCView")->u.classobj->classVarIndex);
-		slotCopy(slot, &g->classvars->slots[classVarIndex]);
-		slotCopy(stringSlot, &g->classvars->slots[classVarIndex+1]);
+		slotCopy(&slot, &g->classvars->slots[classVarIndex]);
+		slotCopy(&stringSlot, &g->classvars->slots[classVarIndex+1]);
 		if (isKindOfSlot(&stringSlot, class_string)) {
 			string = [NSString stringWithCString: slotRawString(&stringSlot)->s length: slotRawString(&stringSlot)->size];
 		}

Modified: trunk/Source/app/iPhone/iSCLangController.mm
===================================================================
--- trunk/Source/app/iPhone/iSCLangController.mm	2009-12-22 10:28:22 UTC (rev 9626)
+++ trunk/Source/app/iPhone/iSCLangController.mm	2009-12-22 18:08:34 UTC (rev 9627)
@@ -233,7 +233,7 @@
 			PyrString* strobj = newPyrStringN(g->gc, size, 0, true);
 			memcpy(strobj->s, buf, size);
 
-			SetObject(slotRawInterpreter(&g->process->interpreter)->cmdLine, strobj);
+			SetObject(&slotRawInterpreter(&g->process->interpreter)->cmdLine, strobj);
 			g->gc->GCWrite(slotRawObject(&g->process->interpreter), strobj);
 		}
 		pthread_mutex_unlock(&gLangMutex);

Added: trunk/iPhone Resources/SuperCollider_Cydia.plist
===================================================================
--- trunk/iPhone Resources/SuperCollider_Cydia.plist	                        (rev 0)
+++ trunk/iPhone Resources/SuperCollider_Cydia.plist	2009-12-22 18:08:34 UTC (rev 9627)
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd";>
+<plist version="1.0">
+<dict>
+	<key>CFBundleDevelopmentRegion</key>
+	<string>en</string>
+	<key>CFBundleDisplayName</key>
+	<string>${PRODUCT_NAME}</string>
+	<key>CFBundleExecutable</key>
+	<string>${EXECUTABLE_NAME}</string>
+	<key>CFBundleIconFile</key>
+	<string>icon.png</string>
+	<key>CFBundleIdentifier</key>
+	<string>net.sourceforge.${PRODUCT_NAME:identifier}</string>
+	<key>CFBundleInfoDictionaryVersion</key>
+	<string>6.0</string>
+	<key>CFBundleName</key>
+	<string>${PRODUCT_NAME}</string>
+	<key>CFBundlePackageType</key>
+	<string>APPL</string>
+	<key>CFBundleSignature</key>
+	<string>????</string>
+	<key>CFBundleVersion</key>
+	<string>1.0</string>
+	<key>LSRequiresIPhoneOS</key>
+	<true/>
+	<key>NSMainNibFile</key>
+	<string>SuperCollider_MainWindow</string>
+</dict>
+</plist>

Modified: trunk/iPhone_Language.xcodeproj/project.pbxproj
===================================================================
--- trunk/iPhone_Language.xcodeproj/project.pbxproj	2009-12-22 10:28:22 UTC (rev 9626)
+++ trunk/iPhone_Language.xcodeproj/project.pbxproj	2009-12-22 18:08:34 UTC (rev 9627)
@@ -6,6 +6,21 @@
 	objectVersion = 45;
 	objects = {
 
+/* Begin PBXAggregateTarget section */
+		77C6D7D210D6D58800D8E4E9 /* Package */ = {
+			isa = PBXAggregateTarget;
+			buildConfigurationList = 77C6D7DC10D6D59300D8E4E9 /* Build configuration list for PBXAggregateTarget "Package" */;
+			buildPhases = (
+				77C6D7D110D6D58800D8E4E9 /* ShellScript */,
+			);
+			dependencies = (
+				77C6D7D710D6D58E00D8E4E9 /* PBXTargetDependency */,
+			);
+			name = Package;
+			productName = Package;
+		};
+/* End PBXAggregateTarget section */
+
 /* Begin PBXBuildFile section */
 		7708A0AD0FBF9B7A00A151DD /* SuperCollider_Browser.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7708A0AC0FBF9B7A00A151DD /* SuperCollider_Browser.xib */; };
 		7709038C0F509FAA005C05DC /* iPhoneGUIPrimitives.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7709037E0F509FAA005C05DC /* iPhoneGUIPrimitives.mm */; };
@@ -70,8 +85,6 @@
 		7713C69D0F422BE400B0055E /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7751ABDE0EB373490051CF38 /* AudioToolbox.framework */; };
 		7713C69E0F422BE400B0055E /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 778214610EBCABF200A8A56F /* QuartzCore.framework */; };
 		7713C69F0F422BE400B0055E /* MediaPlayer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 771DA70F0EC262390024AB95 /* MediaPlayer.framework */; };
-		7713C6CF0F422F7E00B0055E /* dtoa.c in Sources */ = {isa = PBXBuildFile; fileRef = 7751A9590EB36D500051CF38 /* dtoa.c */; };
-		7713C6D00F422F7E00B0055E /* g_fmt.c in Sources */ = {isa = PBXBuildFile; fileRef = 7751A95B0EB36D500051CF38 /* g_fmt.c */; };
 		7713C6D10F422F7E00B0055E /* SC_AllocPool.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7751A95C0EB36D500051CF38 /* SC_AllocPool.cpp */; };
 		7713C6D20F422F7F00B0055E /* SC_DirUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7751A95D0EB36D500051CF38 /* SC_DirUtils.cpp */; };
 		7713C6D40F422F8000B0055E /* SC_StandAloneInfo_Darwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7751A9600EB36D500051CF38 /* SC_StandAloneInfo_Darwin.cpp */; };
@@ -93,8 +106,8 @@
 		778F18490F50B1D000CB6629 /* Common in CopyFiles */ = {isa = PBXBuildFile; fileRef = 778F18450F50B1D000CB6629 /* Common */; };
 		778F184A0F50B1D000CB6629 /* DefaultLibrary in CopyFiles */ = {isa = PBXBuildFile; fileRef = 778F18460F50B1D000CB6629 /* DefaultLibrary */; };
 		778F184B0F50B1D000CB6629 /* Platform in CopyFiles */ = {isa = PBXBuildFile; fileRef = 778F18470F50B1D000CB6629 /* Platform */; };
+		7795B81F10D6C0920053700A /* libsndfile_iphone.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 778F15180F50AB6B00CB6629 /* libsndfile_iphone.a */; };
 		77CF86040FC2212100C81F75 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 77CF86030FC2212100C81F75 /* CFNetwork.framework */; };
-		77CF86270FC2226100C81F75 /* libsndfile_iphone.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 778F15180F50AB6B00CB6629 /* libsndfile_iphone.a */; };
 /* End PBXBuildFile section */
 
 /* Begin PBXContainerItemProxy section */
@@ -119,6 +132,13 @@
 			remoteGlobalIDString = 77AA93910EB3685300DC0BCB;
 			remoteInfo = libscsynth;
 		};
+		77C6D7D610D6D58E00D8E4E9 /* PBXContainerItemProxy */ = {
+			isa = PBXContainerItemProxy;
+			containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */;
+			proxyType = 1;
+			remoteGlobalIDString = 7713C5EB0F422BE400B0055E;
+			remoteInfo = SuperCollider;
+		};
 /* End PBXContainerItemProxy section */
 
 /* Begin PBXCopyFilesBuildPhase section */
@@ -212,9 +232,7 @@
 		7751A9550EB36D500051CF38 /* TabletEvents.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TabletEvents.m; sourceTree = "<group>"; };
 		7751A9560EB36D500051CF38 /* TextFinder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TextFinder.m; sourceTree = "<group>"; };
 		7751A9570EB36D500051CF38 /* UserPanel.M */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = UserPanel.M; sourceTree = "<group>"; };
-		7751A9590EB36D500051CF38 /* dtoa.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dtoa.c; sourceTree = "<group>"; };
 		7751A95A0EB36D500051CF38 /* fftlib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = fftlib.c; sourceTree = "<group>"; };
-		7751A95B0EB36D500051CF38 /* g_fmt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = g_fmt.c; sourceTree = "<group>"; };
 		7751A95C0EB36D500051CF38 /* SC_AllocPool.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SC_AllocPool.cpp; sourceTree = "<group>"; };
 		7751A95D0EB36D500051CF38 /* SC_DirUtils.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SC_DirUtils.cpp; sourceTree = "<group>"; };
 		7751A95E0EB36D500051CF38 /* sc_popen.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sc_popen.cpp; sourceTree = "<group>"; };
@@ -450,7 +468,7 @@
 				7713C69E0F422BE400B0055E /* QuartzCore.framework in Frameworks */,
 				7713C69F0F422BE400B0055E /* MediaPlayer.framework in Frameworks */,
 				77CF86040FC2212100C81F75 /* CFNetwork.framework in Frameworks */,
-				77CF86270FC2226100C81F75 /* libsndfile_iphone.a in Frameworks */,
+				7795B81F10D6C0920053700A /* libsndfile_iphone.a in Frameworks */,
 			);
 			runOnlyForDeploymentPostprocessing = 0;
 		};
@@ -655,9 +673,7 @@
 			isa = PBXGroup;
 			children = (
 				770903A80F50A015005C05DC /* iPhone */,
-				7751A9590EB36D500051CF38 /* dtoa.c */,
 				7751A95A0EB36D500051CF38 /* fftlib.c */,
-				7751A95B0EB36D500051CF38 /* g_fmt.c */,
 				7751A95C0EB36D500051CF38 /* SC_AllocPool.cpp */,
 				7751A95D0EB36D500051CF38 /* SC_DirUtils.cpp */,
 				7751A95E0EB36D500051CF38 /* sc_popen.cpp */,
@@ -1014,6 +1030,7 @@
 			projectRoot = "";
 			targets = (
 				7713C5EB0F422BE400B0055E /* SuperCollider */,
+				77C6D7D210D6D58800D8E4E9 /* Package */,
 			);
 		};
 /* End PBXProject section */
@@ -1049,6 +1066,22 @@
 		};
 /* End PBXResourcesBuildPhase section */
 
+/* Begin PBXShellScriptBuildPhase section */
+		77C6D7D110D6D58800D8E4E9 /* ShellScript */ = {
+			isa = PBXShellScriptBuildPhase;
+			buildActionMask = 2147483647;
+			files = (
+			);
+			inputPaths = (
+			);
+			outputPaths = (
+			);
+			runOnlyForDeploymentPostprocessing = 0;
+			shellPath = /bin/sh;
+			shellScript = "# shell script goes here\nexport CODESIGN_ALLOCATE=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/codesign_allocate\nexport COPYFILE_DISABLE\nexport COPY_EXTENDED_ATTRIBUTES_DISABLE\n\n/usr/local/bin/ldid -S $SYMROOT/Cydia-iphoneos/SuperCollider.app/SuperCollider\nmkdir -p $SYMROOT/Cydia/SuperCollider/Applications\nmkdir -p $SYMROOT/Cydia/SuperCollider/DEBIAN\ncp iPhone\\ Resources/control $SYMROOT/Cydia/SuperCollider/DEBIAN/\ncp -R $SYMROOT/Cydia-iphoneos/SuperCollider.app $SYMROOT/Cydia/SuperCollider/Applications/\n\ncd $SYMROOT/Cydia\nrm -f SuperCollider.deb\n/sw/bin/dpkg-deb -b SuperCollider\nrm -Rf SuperCollider\n";
+		};
+/* End PBXShellScriptBuildPhase section */
+
 /* Begin PBXSourcesBuildPhase section */
 		7713C5EF0F422BE400B0055E /* Sources */ = {
 			isa = PBXSourcesBuildPhase;
@@ -1101,8 +1134,6 @@
 				7713C67F0F422BE400B0055E /* PyrArchiver.cpp in Sources */,
 				7713C6800F422BE400B0055E /* SC_ComPort.cpp in Sources */,
 				7713C6970F422BE400B0055E /* DrawBackground.M in Sources */,
-				7713C6CF0F422F7E00B0055E /* dtoa.c in Sources */,
-				7713C6D00F422F7E00B0055E /* g_fmt.c in Sources */,
 				7713C6D10F422F7E00B0055E /* SC_AllocPool.cpp in Sources */,
 				7713C6D20F422F7F00B0055E /* SC_DirUtils.cpp in Sources */,
 				7713C6D40F422F8000B0055E /* SC_StandAloneInfo_Darwin.cpp in Sources */,
@@ -1131,6 +1162,11 @@
 			name = libscsynth;
 			targetProxy = 7751B8260F435F9C0044CAC0 /* PBXContainerItemProxy */;
 		};
+		77C6D7D710D6D58E00D8E4E9 /* PBXTargetDependency */ = {
+			isa = PBXTargetDependency;
+			target = 7713C5EB0F422BE400B0055E /* SuperCollider */;
+			targetProxy = 77C6D7D610D6D58E00D8E4E9 /* PBXContainerItemProxy */;
+		};
 /* End PBXTargetDependency section */
 
 /* Begin XCBuildConfiguration section */
@@ -1138,6 +1174,7 @@
 			isa = XCBuildConfiguration;
 			buildSettings = {
 				ALWAYS_SEARCH_USER_PATHS = NO;
+				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer: Axel STANTUM (Q7D76E7W4F)";
 				COPY_PHASE_STRIP = YES;
 				GCC_DYNAMIC_NO_PIC = NO;
 				GCC_OPTIMIZATION_LEVEL = 0;
@@ -1153,6 +1190,7 @@
 					"\"$(SYSTEM_APPS_DIR)/SC3/source/libsndfile\"",
 				);
 				PRODUCT_NAME = SuperCollider;
+				SDKROOT = iphoneos2.2.1;
 				SKIP_INSTALL = NO;
 				SYMROOT = build_iphone;
 			};
@@ -1181,13 +1219,85 @@
 					"\"$(SYSTEM_APPS_DIR)/SC3/source/libsndfile\"",
 				);
 				PRODUCT_NAME = SuperCollider;
-				SDKROOT = iphoneos2.2;
+				SDKROOT = iphoneos2.2.1;
 				SEPARATE_STRIP = NO;
 				SKIP_INSTALL = NO;
 				SYMROOT = build_iphone;
 			};
 			name = Release;
 		};
+		7795B82310D6D01E0053700A /* Cydia */ = {
+			isa = XCBuildConfiguration;
+			buildSettings = {
+				ARCHS = "$(ARCHS_STANDARD_32_BIT)";
+				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "Don't Code Sign";
+				GCC_C_LANGUAGE_STANDARD = c99;
+				GCC_WARN_ABOUT_RETURN_TYPE = YES;
+				GCC_WARN_UNUSED_VARIABLE = YES;
+				PREBINDING = NO;
+				SDKROOT = iphoneos2.2;
+				SYMROOT = build_iphone;
+			};
+			name = Cydia;
+		};
+		7795B82410D6D01E0053700A /* Cydia */ = {
+			isa = XCBuildConfiguration;
+			buildSettings = {
+				ALWAYS_SEARCH_USER_PATHS = NO;
+				COPY_PHASE_STRIP = YES;
+				DEAD_CODE_STRIPPING = NO;
+				GCC_AUTO_VECTORIZATION = NO;
+				GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
+				GCC_OPTIMIZATION_LEVEL = 3;
+				GCC_PRECOMPILE_PREFIX_HEADER = NO;
+				GCC_PREFIX_HEADER = "";
+				GCC_PREPROCESSOR_DEFINITIONS = SC_IPHONE;
+				GCC_SYMBOLS_PRIVATE_EXTERN = YES;
+				GCC_THUMB_SUPPORT = NO;
+				GCC_UNROLL_LOOPS = YES;
+				GENERATE_MASTER_OBJECT_FILE = NO;
+				HEADER_SEARCH_PATHS = libsndfile;
+				INFOPLIST_FILE = "iPhone Resources/SuperCollider_Cydia.plist";
+				LIBRARY_SEARCH_PATHS = (
+					libsndfile,
+					"\"$(SYSTEM_APPS_DIR)/SC3/source/libsndfile\"",
+				);
+				PRODUCT_NAME = SuperCollider;
+				SDKROOT = iphoneos2.2.1;
+				SEPARATE_STRIP = NO;
+				SKIP_INSTALL = YES;
+				SYMROOT = build_iphone;
+			};
+			name = Cydia;
+		};
+		77C6D7D310D6D58800D8E4E9 /* Debug */ = {
+			isa = XCBuildConfiguration;
+			buildSettings = {
+				COPY_PHASE_STRIP = NO;
+				GCC_DYNAMIC_NO_PIC = NO;
+				GCC_OPTIMIZATION_LEVEL = 0;
+				PRODUCT_NAME = Package;
+			};
+			name = Debug;
+		};
+		77C6D7D410D6D58800D8E4E9 /* Release */ = {
+			isa = XCBuildConfiguration;
+			buildSettings = {
+				COPY_PHASE_STRIP = YES;
+				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
+				GCC_ENABLE_FIX_AND_CONTINUE = NO;
+				PRODUCT_NAME = Package;
+				ZERO_LINK = NO;
+			};
+			name = Release;
+		};
+		77C6D7D510D6D58800D8E4E9 /* Cydia */ = {
+			isa = XCBuildConfiguration;
+			buildSettings = {
+				PRODUCT_NAME = Package;
+			};
+			name = Cydia;
+		};
 		C01FCF4F08A954540054247B /* Debug */ = {
 			isa = XCBuildConfiguration;
 			buildSettings = {
@@ -1225,15 +1335,27 @@
 			buildConfigurations = (
 				7713C6A70F422BE400B0055E /* Debug */,
 				7713C6A80F422BE400B0055E /* Release */,
+				7795B82410D6D01E0053700A /* Cydia */,
 			);
 			defaultConfigurationIsVisible = 0;
 			defaultConfigurationName = Release;
 		};
+		77C6D7DC10D6D59300D8E4E9 /* Build configuration list for PBXAggregateTarget "Package" */ = {
+			isa = XCConfigurationList;
+			buildConfigurations = (
+				77C6D7D310D6D58800D8E4E9 /* Debug */,
+				77C6D7D410D6D58800D8E4E9 /* Release */,
+				77C6D7D510D6D58800D8E4E9 /* Cydia */,
+			);
+			defaultConfigurationIsVisible = 0;
+			defaultConfigurationName = Release;
+		};
 		C01FCF4E08A954540054247B /* Build configuration list for PBXProject "iPhone_Language" */ = {
 			isa = XCConfigurationList;
 			buildConfigurations = (
 				C01FCF4F08A954540054247B /* Debug */,
 				C01FCF5008A954540054247B /* Release */,
+				7795B82310D6D01E0053700A /* Cydia */,
 			);
 			defaultConfigurationIsVisible = 0;
 			defaultConfigurationName = Release;

Modified: trunk/iPhone_Synth.xcodeproj/project.pbxproj
===================================================================
--- trunk/iPhone_Synth.xcodeproj/project.pbxproj	2009-12-22 10:28:22 UTC (rev 9626)
+++ trunk/iPhone_Synth.xcodeproj/project.pbxproj	2009-12-22 18:08:34 UTC (rev 9627)
@@ -13,6 +13,7 @@
 		770903C60F50A468005C05DC /* iscsynthAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 770903C20F50A468005C05DC /* iscsynthAppDelegate.m */; };
 		770903C70F50A468005C05DC /* iSCSynthController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 770903C40F50A468005C05DC /* iSCSynthController.mm */; };
 		770903C80F50A468005C05DC /* iscsynthmain.m in Sources */ = {isa = PBXBuildFile; fileRef = 770903C50F50A468005C05DC /* iscsynthmain.m */; };
+		7714609B1054654500476976 /* libsndfile_iphone.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 778F126B0F50A87300CB6629 /* libsndfile_iphone.a */; };
 		7742A4B60FEA960D00AE1A03 /* GendynUGens.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7751B8470F43603A0044CAC0 /* GendynUGens.cpp */; };
 		7742A4CE0FEA972500AE1A03 /* GendynUGens.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7751B8470F43603A0044CAC0 /* GendynUGens.cpp */; };
 		7751B8680F4363C40044CAC0 /* BinaryOpUGens.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7751B8390F43603A0044CAC0 /* BinaryOpUGens.cpp */; };
@@ -35,8 +36,6 @@
 		7751B8910F4368AE0044CAC0 /* TriggerUGens.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7751B8640F43603A0044CAC0 /* TriggerUGens.cpp */; };
 		7751B8920F4368B00044CAC0 /* UnaryOpUGens.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7751B8650F43603A0044CAC0 /* UnaryOpUGens.cpp */; };
 		775384800FBDE6EA00DADEB2 /* iPhoneUGens.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7751B84A0F43603A0044CAC0 /* iPhoneUGens.mm */; };
-		775D93D80F509D2F00112D87 /* dtoa.c in Sources */ = {isa = PBXBuildFile; fileRef = 7772497E0EABE96E00732A1C /* dtoa.c */; };
-		775D93D90F509D2F00112D87 /* g_fmt.c in Sources */ = {isa = PBXBuildFile; fileRef = 777249800EABE96E00732A1C /* g_fmt.c */; };
 		775D93DA0F509D2F00112D87 /* SC_AllocPool.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 777249810EABE96E00732A1C /* SC_AllocPool.cpp */; };
 		775D93DB0F509D2F00112D87 /* SC_DirUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 777249820EABE96E00732A1C /* SC_DirUtils.cpp */; };
 		775D93DC0F509D2F00112D87 /* SC_Sem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 777249840EABE96E00732A1C /* SC_Sem.cpp */; };
@@ -93,11 +92,8 @@
 		778F12530F50A72900CB6629 /* synthdefs in CopyFiles */ = {isa = PBXBuildFile; fileRef = 778F12510F50A72900CB6629 /* synthdefs */; };
 		77A489380FBFA8DA00E909E1 /* SuperCollider_Browser.xib in Resources */ = {isa = PBXBuildFile; fileRef = 77A489360FBFA8DA00E909E1 /* SuperCollider_Browser.xib */; };
 		77A489390FBFA8DA00E909E1 /* SuperCollider_FileTransfer.xib in Resources */ = {isa = PBXBuildFile; fileRef = 77A489370FBFA8DA00E909E1 /* SuperCollider_FileTransfer.xib */; };
-		77A489470FBFA95800E909E1 /* libsndfile.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 77A489460FBFA95800E909E1 /* libsndfile.a */; };
 		77A489510FBFA99700E909E1 /* DirBrowserView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 77A489500FBFA99700E909E1 /* DirBrowserView.mm */; };
 		77A4896A0FBFAA1000E909E1 /* iscsynth_MainWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = 778F12450F50A70400CB6629 /* iscsynth_MainWindow.xib */; };
-		77AA93A10EB368B700DC0BCB /* dtoa.c in Sources */ = {isa = PBXBuildFile; fileRef = 7772497E0EABE96E00732A1C /* dtoa.c */; };
-		77AA93A30EB368B700DC0BCB /* g_fmt.c in Sources */ = {isa = PBXBuildFile; fileRef = 777249800EABE96E00732A1C /* g_fmt.c */; };
 		77AA93A40EB368B700DC0BCB /* SC_AllocPool.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 777249810EABE96E00732A1C /* SC_AllocPool.cpp */; };
 		77AA93A50EB368B700DC0BCB /* SC_DirUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 777249820EABE96E00732A1C /* SC_DirUtils.cpp */; };
 		77AA93A70EB368B700DC0BCB /* SC_Sem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 777249840EABE96E00732A1C /* SC_Sem.cpp */; };
@@ -259,9 +255,7 @@
 		7751B8650F43603A0044CAC0 /* UnaryOpUGens.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnaryOpUGens.cpp; sourceTree = "<group>"; };
 		7751B8660F43603A0044CAC0 /* UnpackFFTUGens.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnpackFFTUGens.cpp; sourceTree = "<group>"; };
 		775D94270F509DBE00112D87 /* sndfile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sndfile.h; path = libsndfile/sndfile.h; sourceTree = SOURCE_ROOT; };
-		7772497E0EABE96E00732A1C /* dtoa.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dtoa.c; sourceTree = "<group>"; };
 		7772497F0EABE96E00732A1C /* fftlib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = fftlib.c; sourceTree = "<group>"; };
-		777249800EABE96E00732A1C /* g_fmt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = g_fmt.c; sourceTree = "<group>"; };
 		777249810EABE96E00732A1C /* SC_AllocPool.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SC_AllocPool.cpp; sourceTree = "<group>"; };
 		777249820EABE96E00732A1C /* SC_DirUtils.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SC_DirUtils.cpp; sourceTree = "<group>"; };
 		777249830EABE96E00732A1C /* sc_popen.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sc_popen.cpp; sourceTree = "<group>"; };
@@ -429,7 +423,7 @@
 				288765FD0DF74451002DB57D /* CoreGraphics.framework in Frameworks */,
 				77724C6B0EABF92400732A1C /* AudioToolbox.framework in Frameworks */,
 				77724C6D0EABF92400732A1C /* CoreAudio.framework in Frameworks */,
-				77A489470FBFA95800E909E1 /* libsndfile.a in Frameworks */,
+				7714609B1054654500476976 /* libsndfile_iphone.a in Frameworks */,
 			);
 			runOnlyForDeploymentPostprocessing = 0;
 		};
@@ -635,9 +629,7 @@
 			isa = PBXGroup;
 			children = (
 				778F12660F50A85200CB6629 /* iPhone */,
-				7772497E0EABE96E00732A1C /* dtoa.c */,
 				7772497F0EABE96E00732A1C /* fftlib.c */,
-				777249800EABE96E00732A1C /* g_fmt.c */,
 				777249810EABE96E00732A1C /* SC_AllocPool.cpp */,
 				777249820EABE96E00732A1C /* SC_DirUtils.cpp */,
 				777249830EABE96E00732A1C /* sc_popen.cpp */,
@@ -958,8 +950,6 @@
 			isa = PBXSourcesBuildPhase;
 			buildActionMask = 2147483647;
 			files = (
-				775D93D80F509D2F00112D87 /* dtoa.c in Sources */,
-				775D93D90F509D2F00112D87 /* g_fmt.c in Sources */,
 				775D93DA0F509D2F00112D87 /* SC_AllocPool.cpp in Sources */,
 				775D93DB0F509D2F00112D87 /* SC_DirUtils.cpp in Sources */,
 				775D93DC0F509D2F00112D87 /* SC_Sem.cpp in Sources */,
@@ -1023,8 +1013,6 @@
 			isa = PBXSourcesBuildPhase;
 			buildActionMask = 2147483647;
 			files = (
-				77AA93A10EB368B700DC0BCB /* dtoa.c in Sources */,
-				77AA93A30EB368B700DC0BCB /* g_fmt.c in Sources */,
 				77AA93A40EB368B700DC0BCB /* SC_AllocPool.cpp in Sources */,
 				77AA93A50EB368B700DC0BCB /* SC_DirUtils.cpp in Sources */,
 				77AA93A70EB368B700DC0BCB /* SC_Sem.cpp in Sources */,


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.

_______________________________________________
sc-dev mailing list

info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
archive: https://listarc.bham.ac.uk/marchives/sc-dev/
search: https://listarc.bham.ac.uk/lists/sc-dev/search/