Ben Konrath 48553a3
Index: src/org/eclipse/core/runtime/Platform.java
Ben Konrath 48553a3
===================================================================
Ben Konrath 48553a3
RCS file: /cvsroot/eclipse/org.eclipse.core.runtime/src/org/eclipse/core/runtime/Platform.java,v
Ben Konrath 48553a3
retrieving revision 1.106
Ben Konrath 48553a3
diff -u -r1.106 Platform.java
Ben Konrath 48553a3
--- plugins/org.eclipse.core.runtime/src/org/eclipse/core/runtime/Platform.java	13 Apr 2006 00:42:47 -0000	1.106
Ben Konrath 48553a3
+++ plugins/org.eclipse.core.runtime/src/org/eclipse/core/runtime/Platform.java	31 Jan 2007 21:33:51 -0000
Ben Konrath 48553a3
@@ -339,6 +339,11 @@
Ben Konrath 48553a3
 	 * @since 3.1
Ben Konrath 48553a3
 	 */
Ben Konrath 48553a3
 	public static final String ARCH_IA64_32 = "ia64_32";//$NON-NLS-1$
Ben Konrath 48553a3
+	
Ben Konrath 48553a3
+	public static final String ARCH_PPC64 = "ppc64";//$NON-NLS-1$
Ben Konrath 48553a3
+	public static final String ARCH_SPARC64 = "sparc64";//$NON-NLS-1$
Ben Konrath 48553a3
+	public static final String ARCH_S390 = "s390";//$NON-NLS-1$
Ben Konrath 48553a3
+	public static final String ARCH_S390X = "s390x";//$NON-NLS-1$
Ben Konrath 48553a3
 
Ben Konrath 48553a3
 	/**
Ben Konrath 48553a3
 	 * Constant string (value "win32") indicating the platform is running on a
Ben Konrath 48553a3
Index: src/org/eclipse/core/internal/runtime/InternalPlatform.java
Ben Konrath 48553a3
===================================================================
Ben Konrath 48553a3
RCS file: /cvsroot/eclipse/org.eclipse.core.runtime/src/org/eclipse/core/internal/runtime/InternalPlatform.java,v
Ben Konrath 48553a3
retrieving revision 1.253
Ben Konrath 48553a3
diff -u -r1.253 InternalPlatform.java
Ben Konrath 48553a3
--- plugins/org.eclipse.core.runtime/src/org/eclipse/core/internal/runtime/InternalPlatform.java	21 Apr 2006 20:49:57 -0000	1.253
Ben Konrath 48553a3
+++ plugins/org.eclipse.core.runtime/src/org/eclipse/core/internal/runtime/InternalPlatform.java	31 Jan 2007 21:33:50 -0000
Ben Konrath 48553a3
@@ -52,6 +52,10 @@
Ben Konrath 48553a3
 			Platform.ARCH_X86, //
Ben Konrath 48553a3
 			Platform.ARCH_AMD64, // 
Ben Konrath 48553a3
 			Platform.ARCH_IA64, //
Ben Konrath 48553a3
+			Platform.ARCH_PPC64, //
Ben Konrath 48553a3
+			Platform.ARCH_SPARC64, //
Ben Konrath 48553a3
+			Platform.ARCH_S390, //
Ben Konrath 48553a3
+			Platform.ARCH_S390X, //
Ben Konrath 48553a3
 			Platform.ARCH_IA64_32};
Ben Konrath 48553a3
 	private static final String BOOT = "-boot"; //$NON-NLS-1$
Ben Konrath 48553a3
 	private static final String CLASSLOADER_PROPERTIES = "-classloaderProperties"; //$NON-NLS-1$	
Ben Konrath 48553a3
Index: eclipseAdaptor/src/org/eclipse/core/runtime/internal/adaptor/PluginConverterImpl.java
Ben Konrath 48553a3
===================================================================
Ben Konrath 48553a3
RCS file: /cvsroot/eclipse/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/core/runtime/internal/adaptor/PluginConverterImpl.java,v
Ben Konrath 48553a3
retrieving revision 1.13
Ben Konrath 48553a3
diff -u -r1.13 PluginConverterImpl.java
Ben Konrath 48553a3
--- plugins/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/core/runtime/internal/adaptor/PluginConverterImpl.java	13 Apr 2006 16:10:27 -0000	1.13
Ben Konrath 48553a3
+++ plugins/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/core/runtime/internal/adaptor/PluginConverterImpl.java	31 Jan 2007 21:33:52 -0000
Ben Konrath 48553a3
@@ -64,7 +64,7 @@
Ben Konrath 48553a3
 	private static final String MANIFEST_VERSION = "Manifest-Version"; //$NON-NLS-1$
Ben Konrath 48553a3
 	private static final String PLUGIN_PROPERTIES_FILENAME = "plugin"; //$NON-NLS-1$
Ben Konrath 48553a3
 	private static PluginConverterImpl instance;
Ben Konrath 48553a3
-	private static final String[] ARCH_LIST = {org.eclipse.osgi.service.environment.Constants.ARCH_PA_RISC, org.eclipse.osgi.service.environment.Constants.ARCH_PPC, org.eclipse.osgi.service.environment.Constants.ARCH_SPARC, org.eclipse.osgi.service.environment.Constants.ARCH_X86, org.eclipse.osgi.service.environment.Constants.ARCH_AMD64, org.eclipse.osgi.service.environment.Constants.ARCH_IA64};
Ben Konrath 48553a3
+	private static final String[] ARCH_LIST = {org.eclipse.osgi.service.environment.Constants.ARCH_PA_RISC, org.eclipse.osgi.service.environment.Constants.ARCH_PPC, org.eclipse.osgi.service.environment.Constants.ARCH_SPARC, org.eclipse.osgi.service.environment.Constants.ARCH_X86, org.eclipse.osgi.service.environment.Constants.ARCH_AMD64, org.eclipse.osgi.service.environment.Constants.ARCH_IA64, org.eclipse.osgi.service.environment.Constants.ARCH_PPC64, org.eclipse.osgi.service.environment.Constants.ARCH_SPARC64, org.eclipse.osgi.service.environment.Constants.ARCH_S390, org.eclipse.osgi.service.environment.Constants.ARCH_S390X};
Ben Konrath 48553a3
 	static public final String FRAGMENT_MANIFEST = "fragment.xml"; //$NON-NLS-1$
Ben Konrath 48553a3
 	static public final String GENERATED_FROM = "Generated-from"; //$NON-NLS-1$
Ben Konrath 48553a3
 	static public final String MANIFEST_TYPE_ATTRIBUTE = "type"; //$NON-NLS-1$
Ben Konrath 48553a3
Index: eclipseAdaptor/src/org/eclipse/osgi/service/environment/Constants.java
Ben Konrath 48553a3
===================================================================
Ben Konrath 48553a3
RCS file: /cvsroot/eclipse/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/osgi/service/environment/Constants.java,v
Ben Konrath 48553a3
retrieving revision 1.9
Ben Konrath 48553a3
diff -u -r1.9 Constants.java
Ben Konrath 48553a3
--- plugins/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/osgi/service/environment/Constants.java	13 Jun 2005 17:14:22 -0000	1.9
Ben Konrath 48553a3
+++ plugins/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/osgi/service/environment/Constants.java	31 Jan 2007 21:33:52 -0000
Ben Konrath 48553a3
@@ -119,6 +119,11 @@
Ben Konrath 48553a3
 	 */
Ben Konrath 48553a3
 	public static final String ARCH_IA64_32 = "ia64_32";//$NON-NLS-1$
Ben Konrath 48553a3
 
Ben Konrath 48553a3
+	public static final String ARCH_PPC64 = "ppc64";//$NON-NLS-1$
Ben Konrath 48553a3
+	public static final String ARCH_SPARC64 = "sparc64";//$NON-NLS-1$
Ben Konrath 48553a3
+	public static final String ARCH_S390 = "s390";//$NON-NLS-1$
Ben Konrath 48553a3
+	public static final String ARCH_S390X = "s390x";//$NON-NLS-1$
Ben Konrath 48553a3
+	
Ben Konrath 48553a3
 	/**
Ben Konrath 48553a3
 	 * Constant string (value "win32") indicating the platform is running on a
Ben Konrath 48553a3
 	 * machine using the Windows windowing system.
Ben Konrath 48553a3
Index: feature.xml
Ben Konrath 48553a3
===================================================================
Ben Konrath 48553a3
RCS file: /cvsroot/eclipse/org.eclipse.sdk-feature/features/org.eclipse.rcp/feature.xml,v
Ben Konrath 48553a3
retrieving revision 1.40.2.1
Ben Konrath 48553a3
diff -u -r1.40.2.1 feature.xml
Ben Konrath 48553a3
--- features/org.eclipse.rcp/feature.xml 1 Aug 2006 17:29:33 -0000 1.40.2.1
Ben Konrath 48553a3
+++ features/org.eclipse.rcp/feature.xml 6 Feb 2007 23:44:22 -0000
Ben Konrath 1298ce4
@@ -308,5 +308,38 @@
Ben Konrath 48553a3
          install-size="0"
Ben Konrath 48553a3
          version="0.0.0"
Ben Konrath 48553a3
          unpack="false"/>
Ben Konrath 48553a3
+    
Ben Konrath 48553a3
+   
Ben Konrath 48553a3
+         id="org.eclipse.swt.gtk.linux.ppc64"
Ben Konrath 48553a3
+         os="linux"
Ben Konrath 48553a3
+         ws="gtk"
Ben Konrath 48553a3
+         arch="ppc64"
Ben Konrath 48553a3
+         download-size="0"
Ben Konrath 48553a3
+         install-size="0"
Ben Konrath 48553a3
+         version="0.0.0"
Ben Konrath 48553a3
+         fragment="true"
Ben Konrath 48553a3
+         unpack="false"/>
Ben Konrath 48553a3
+
Ben Konrath 48553a3
+   
Ben Konrath 48553a3
+         id="org.eclipse.swt.gtk.linux.sparc"
Ben Konrath 48553a3
+         os="linux"
Ben Konrath 48553a3
+         ws="gtk"
Ben Konrath 48553a3
+         arch="sparc"
Ben Konrath 48553a3
+         download-size="0"
Ben Konrath 48553a3
+         install-size="0"
Ben Konrath 48553a3
+         version="0.0.0"
Ben Konrath 48553a3
+         fragment="true"
Ben Konrath 48553a3
+         unpack="false"/>
Ben Konrath 48553a3
+
Ben Konrath 48553a3
+   
Ben Konrath 48553a3
+         id="org.eclipse.swt.gtk.linux.sparc64"
Ben Konrath 48553a3
+         os="linux"
Ben Konrath 48553a3
+         ws="gtk"
Ben Konrath 48553a3
+         arch="sparc64"
Ben Konrath 48553a3
+         download-size="0"
Ben Konrath 48553a3
+         install-size="0"
Ben Konrath 48553a3
+         version="0.0.0"
Ben Konrath 48553a3
+         fragment="true"
Ben Konrath 48553a3
+         unpack="false"/>
Ben Konrath 48553a3
 
Ben Konrath 48553a3
 </feature>
Ben Konrath 48553a3
diff -ru features/org.eclipse.platform.source/feature.xml features/org.eclipse.platform.source/feature.xml
Ben Konrath 48553a3
--- features/org.eclipse.platform.source/feature.xml	2007-02-06 19:04:05.000000000 -0500
Ben Konrath 48553a3
+++ features/org.eclipse.platform.source/feature.xml	2007-02-06 19:07:26.000000000 -0500
Ben Konrath 1298ce4
@@ -42,4 +42,6 @@
Ben Konrath 1298ce4
 	<plugin ws="motif"  os="solaris" fragment="true" arch="sparc" download-size="0" install-size="0" id="org.eclipse.platform.source.solaris.motif.sparc" version="3.3.0.v20070608-_19UEkLF-XsdF9jJrkPi"/>
Ben Konrath 1298ce4
 	<plugin ws="gtk"  os="linux" fragment="true" arch="s390" download-size="0" install-size="0" id="org.eclipse.platform.source.linux.gtk.s390" version="3.3.0.v20070608-_19UEkLF-XsdF9jJrkPi"/>
Ben Konrath 1298ce4
 	<plugin ws="motif"  os="linux" fragment="true" arch="x86" download-size="0" install-size="0" id="org.eclipse.platform.source.linux.motif.x86" version="3.3.0.v20070608-_19UEkLF-XsdF9jJrkPi"/>
Ben Konrath 1298ce4
+	<plugin ws="gtk"  os="linux" fragment="true" arch="sparc" download-size="0" install-size="0" id="org.eclipse.platform.source.linux.gtk.sparc" version="3.3.0.v20070608-_19UEkLF-XsdF9jJrkPi"/>
Ben Konrath 1298ce4
+	<plugin ws="gtk"  os="linux" fragment="true" arch="sparc64" download-size="0" install-size="0" id="org.eclipse.platform.source.linux.gtk.sparc64" version="3.3.0.v20070608-_19UEkLF-XsdF9jJrkPi"/>
Ben Konrath 48553a3
 </feature>
Ben Konrath 48553a3
diff -ru features/org.eclipse.rcp.source/feature.xml features/org.eclipse.rcp.source/feature.xml
Ben Konrath 48553a3
--- features/org.eclipse.rcp.source/feature.xml	2007-02-06 19:04:06.000000000 -0500
Ben Konrath 48553a3
+++ features/org.eclipse.rcp.source/feature.xml	2007-02-06 19:09:11.000000000 -0500
Ben Konrath 1298ce4
@@ -30,4 +30,7 @@
Ben Konrath 1298ce4
 	<plugin ws="motif"  os="solaris" fragment="true" arch="sparc" download-size="0" install-size="0" id="org.eclipse.rcp.source.solaris.motif.sparc" version="3.3.0.v20070607-8y8eE8NEbsN3X5PjTaJy8DEsjhiu"/>
Ben Konrath 1298ce4
 	<plugin ws="gtk"  os="linux" fragment="true" arch="s390" download-size="0" install-size="0" id="org.eclipse.rcp.source.linux.gtk.s390" version="3.3.0.v20070607-8y8eE8NEbsN3X5PjTaJy8DEsjhiu"/>
Ben Konrath 1298ce4
 	<plugin ws="motif"  os="linux" fragment="true" arch="x86" download-size="0" install-size="0" id="org.eclipse.rcp.source.linux.motif.x86" version="3.3.0.v20070607-8y8eE8NEbsN3X5PjTaJy8DEsjhiu"/>
Ben Konrath 48553a3
+	<plugin ws="gtk"  os="linux" fragment="true" arch="ppc64" download-size="0" install-size="0" id="org.eclipse.rcp.source.linux.gtk.ppc64" version="3.2.2.r322_v20070104-iwP0VLKnfFC923K"/>
Ben Konrath 48553a3
+	<plugin ws="gtk"  os="linux" fragment="true" arch="sparc" download-size="0" install-size="0" id="org.eclipse.rcp.source.linux.gtk.sparc" version="3.2.2.r322_v20070104-iwP0VLKnfFC923K"/>
Ben Konrath 48553a3
+	<plugin ws="gtk"  os="linux" fragment="true" arch="sparc64" download-size="0" install-size="0" id="org.eclipse.rcp.source.linux.gtk.sparc64" version="3.2.2.r322_v20070104-iwP0VLKnfFC923K"/>
Ben Konrath 48553a3
 </feature>