Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 293185 | Differences between
and this patch

Collapse All | Expand All

(-)fragments/org.eclipse.core.filesystem.aix.ppc64/.project (+22 lines)
Added Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
2
<projectDescription>
3
	<name>org.eclipse.core.filesystem.aix.ppc64</name>
4
	<comment></comment>
5
	<projects>
6
	</projects>
7
	<buildSpec>
8
		<buildCommand>
9
			<name>org.eclipse.pde.ManifestBuilder</name>
10
			<arguments>
11
			</arguments>
12
		</buildCommand>
13
		<buildCommand>
14
			<name>org.eclipse.pde.SchemaBuilder</name>
15
			<arguments>
16
			</arguments>
17
		</buildCommand>
18
	</buildSpec>
19
	<natures>
20
		<nature>org.eclipse.pde.PluginNature</nature>
21
	</natures>
22
</projectDescription>
(-)fragments/org.eclipse.core.filesystem.aix.ppc64/BUILD_INFO.txt (+10 lines)
Added Link Here
1
Native Build Info:
2
------------------
3
4
platform:         PPC64
5
built by:         pawel.pogorzelski@pl.ibm.com
6
build date:       04-Nov-2009
7
OS Name:          AIX
8
OS Version:       5.3.9.0
9
Compiler version: xlC_r version 10.1.0.0
10
Java version:     IBM J9 VM build 2.3, J2RE 1.5.0 IBM J9 2.3 AIX ppc64-64
(-)fragments/org.eclipse.core.filesystem.aix.ppc64/META-INF/MANIFEST.MF (+9 lines)
Added Link Here
1
Manifest-Version: 1.0
2
Bundle-ManifestVersion: 2
3
Bundle-Name: %fragmentName
4
Bundle-SymbolicName: org.eclipse.core.filesystem.aix.ppc64;singleton:=true
5
Bundle-Version: 1.0.0.qualifier
6
Bundle-Vendor: %providerName
7
Fragment-Host: org.eclipse.core.filesystem;bundle-version="[1.1.0,2.0.0)"
8
Bundle-Localization: fragment
9
Eclipse-PlatformFilter: (& (osgi.os=aix) (osgi.arch=ppc64))
(-)fragments/org.eclipse.core.filesystem.aix.ppc64/about.html (+28 lines)
Added Link Here
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
<html xmlns="http://www.w3.org/1999/xhtml">
4
<head>
5
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
6
<title>About</title>
7
</head>
8
<body lang="EN-US">
9
<h2>About This Content</h2>
10
 
11
<p>June 2, 2006</p>	
12
<h3>License</h3>
13
14
<p>The Eclipse Foundation makes available all content in this plug-in (&quot;Content&quot;).  Unless otherwise 
15
indicated below, the Content is provided to you under the terms and conditions of the
16
Eclipse Public License Version 1.0 (&quot;EPL&quot;).  A copy of the EPL is available 
17
at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
18
For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
19
20
<p>If you did not receive this Content directly from the Eclipse Foundation, the Content is 
21
being redistributed by another party (&quot;Redistributor&quot;) and different terms and conditions may
22
apply to your use of any object code in the Content.  Check the Redistributor's license that was 
23
provided with the Content.  If no such license exists, contact the Redistributor.  Unless otherwise
24
indicated below, the terms and conditions of the EPL still apply to any source code in the Content
25
and such source code may be obtained at <a href="http://www.eclipse.org">http://www.eclipse.org</a>.</p>
26
27
</body>
28
</html>
(-)fragments/org.eclipse.core.filesystem.aix.ppc64/build.properties (+16 lines)
Added Link Here
1
###############################################################################
2
# Copyright (c) 2009 IBM Corporation and others.
3
# All rights reserved. This program and the accompanying materials
4
# are made available under the terms of the Eclipse Public License v1.0
5
# which accompanies this distribution, and is available at
6
# http://www.eclipse.org/legal/epl-v10.html
7
#
8
# Contributors:
9
#     IBM Corporation - initial API and implementation
10
###############################################################################
11
bin.includes = META-INF/,\
12
               about.html,\
13
               os/,\
14
               fragment.properties
15
src.includes = about.html
16
generateSourceBundle=false
(-)fragments/org.eclipse.core.filesystem.aix.ppc64/fragment.properties (+12 lines)
Added Link Here
1
###############################################################################
2
# Copyright (c) 2009 IBM Corporation and others.
3
# All rights reserved. This program and the accompanying materials
4
# are made available under the terms of the Eclipse Public License v1.0
5
# which accompanies this distribution, and is available at
6
# http://www.eclipse.org/legal/epl-v10.html
7
#
8
# Contributors:
9
#     IBM Corporation - initial API and implementation
10
###############################################################################
11
fragmentName = Core File System for AIX PPC 64 bit
12
providerName = Eclipse.org
(-)natives/unix/aix/Makefile (-2 / +2 lines)
Lines 15-22 Link Here
15
OS_TYPE=aix
15
OS_TYPE=aix
16
CC=xlC_r
16
CC=xlC_r
17
LD=ld
17
LD=ld
18
CFLAGS=-O -s -q32 -qwarn64
18
CFLAGS=-O -s -q64 -qwarn64
19
LDFLAGS=-b32 -G -s -bnoentry -bexpall -lc
19
LDFLAGS=-b64 -G -s -bnoentry -bexpall -lc
20
JAVA_HOME=
20
JAVA_HOME=
21
JDK_INCLUDE=-I${JAVA_HOME}/include -I${JAVA_HOME}/include/${OS_TYPE}
21
JDK_INCLUDE=-I${JAVA_HOME}/include -I${JAVA_HOME}/include/${OS_TYPE}
22
COMMON_INCLUDE=-Iinclude
22
COMMON_INCLUDE=-Iinclude

Return to bug 293185