summaryrefslogtreecommitdiff
path: root/java/eclipse-cdt/files
diff options
context:
space:
mode:
Diffstat (limited to 'java/eclipse-cdt/files')
-rw-r--r--java/eclipse-cdt/files/patch-cdt-feature.xml42
-rw-r--r--java/eclipse-cdt/files/patch-cdt.core-Makefile24
-rw-r--r--java/eclipse-cdt/files/patch-cdt.core-fragment.xml13
-rw-r--r--java/eclipse-cdt/files/patch-cdt.core-openpty.c19
-rw-r--r--java/eclipse-cdt/files/patch-cdt.source-feature.xml9
-rw-r--r--java/eclipse-cdt/files/patch-managedbuilder.gnu-plugin.properties13
-rw-r--r--java/eclipse-cdt/files/patch-managedbuilder.gnu-plugin.xml110
-rw-r--r--java/eclipse-cdt/files/patch-plugin.properties10
8 files changed, 0 insertions, 240 deletions
diff --git a/java/eclipse-cdt/files/patch-cdt-feature.xml b/java/eclipse-cdt/files/patch-cdt-feature.xml
deleted file mode 100644
index 64e92e9439ce..000000000000
--- a/java/eclipse-cdt/files/patch-cdt-feature.xml
+++ /dev/null
@@ -1,42 +0,0 @@
---- eclipse/features/org.eclipse.cdt_3.1.2.200702150621/feature.xml.orig Wed Sep 27 10:15:13 2006
-+++ eclipse/features/org.eclipse.cdt_3.1.2.200702150621/feature.xml Mon Nov 6 13:18:34 2006
-@@ -121,6 +121,14 @@
- fragment="true"/>
-
- <plugin
-+ id="org.eclipse.cdt.core.freebsd"
-+ os="freebsd"
-+ download-size="0"
-+ install-size="0"
-+ version="3.1.2"
-+ fragment="true"/>
-+
-+ <plugin
- id="org.eclipse.cdt.core.qnx"
- os="qnx"
- download-size="0"
-@@ -210,6 +218,24 @@
- <plugin
- id="org.eclipse.cdt.core.linux.x86"
- os="linux"
-+ arch="x86"
-+ download-size="0"
-+ install-size="0"
-+ version="3.1.2"
-+ fragment="true"/>
-+
-+ <plugin
-+ id="org.eclipse.cdt.core.freebsd.amd64"
-+ os="freebsd"
-+ arch="amd64"
-+ download-size="0"
-+ install-size="0"
-+ version="3.1.2"
-+ fragment="true"/>
-+
-+ <plugin
-+ id="org.eclipse.cdt.core.freebsd.x86"
-+ os="freebsd"
- arch="x86"
- download-size="0"
- install-size="0"
diff --git a/java/eclipse-cdt/files/patch-cdt.core-Makefile b/java/eclipse-cdt/files/patch-cdt.core-Makefile
deleted file mode 100644
index 9c7ec1f8f064..000000000000
--- a/java/eclipse-cdt/files/patch-cdt.core-Makefile
+++ /dev/null
@@ -1,24 +0,0 @@
---- eclipse/plugins/org.eclipse.cdt.source.freebsd.gtk.x86_3.1.2.200702150621/src/org.eclipse.cdt.core.freebsd_3.1.2.200702150621/library/Makefile.orig Tue Mar 28 22:42:53 2006
-+++ eclipse/plugins/org.eclipse.cdt.source.freebsd.gtk.x86_3.1.2.200702150621/src/org.eclipse.cdt.core.freebsd_3.1.2.200702150621/library/Makefile Tue Mar 28 22:51:40 2006
-@@ -5,17 +5,17 @@
- endif
-
- # Defaults which can be overridden.
--OS = linux
--ARCH = x86
-+#OS = linux
-+#ARCH = x86
-
- JDK_INCLUDES= $(JAVA_HOME)/include
--JDK_OS_INCLUDES= $(JAVA_HOME)/include/$(OS)
-+JDK_OS_INCLUDES= $(JAVA_HOME)/include/$(ECLIPSE_OS)
-
- CC=gcc
- CPPFLAGS = -I. -I$(JDK_INCLUDES) -I$(JDK_OS_INCLUDES)
- CFLAGS +=-fpic -D_REENTRANT -D_GNU_SOURCE
-
--INSTALL_DIR = ../../org.eclipse.cdt.core.linux.$(ARCH)/os/$(OS)/$(ARCH)
-+INSTALL_DIR = ../../../../org.eclipse.cdt.core.freebsd.$(ECLIPSE_ARCH)_${PORTVERSION_TS}/os/$(ECLIPSE_OS)/$(ECLIPSE_ARCH)
-
- LIB_NAME_SPAWNER = libspawner.so
- LIB_NAME_FULL_SPAWNER = $(INSTALL_DIR)/libspawner.so
diff --git a/java/eclipse-cdt/files/patch-cdt.core-fragment.xml b/java/eclipse-cdt/files/patch-cdt.core-fragment.xml
deleted file mode 100644
index 65344cc0293f..000000000000
--- a/java/eclipse-cdt/files/patch-cdt.core-fragment.xml
+++ /dev/null
@@ -1,13 +0,0 @@
---- eclipse/plugins/org.eclipse.cdt.core.freebsd_3.1.2.200702150621/fragment.xml.orig Mon Nov 6 13:53:49 2006
-+++ eclipse/plugins/org.eclipse.cdt.core.freebsd_3.1.2.200702150621/fragment.xml Mon Nov 6 13:54:04 2006
-@@ -5,8 +5,8 @@
- <extension
- point="org.eclipse.cdt.core.ProcessList">
- <processList
-- platform="linux"
-- class="org.eclipse.cdt.internal.core.linux.ProcessList">
-+ platform="freebsd"
-+ class="org.eclipse.cdt.internal.core.freebsd.ProcessList">
- </processList>
- </extension>
- </fragment>
diff --git a/java/eclipse-cdt/files/patch-cdt.core-openpty.c b/java/eclipse-cdt/files/patch-cdt.core-openpty.c
deleted file mode 100644
index 993bd355dc78..000000000000
--- a/java/eclipse-cdt/files/patch-cdt.core-openpty.c
+++ /dev/null
@@ -1,19 +0,0 @@
---- eclipse/plugins/org.eclipse.cdt.source.freebsd.gtk.x86_3.1.2.200702150621/src/org.eclipse.cdt.core.freebsd_3.1.2.200702150621/library/openpty.c.orig Thu Mar 30 19:18:06 2006
-+++ eclipse/plugins/org.eclipse.cdt.source.freebsd.gtk.x86_3.1.2.200702150621/src/org.eclipse.cdt.core.freebsd_3.1.2.200702150621/library/openpty.c Thu Mar 30 19:18:47 2006
-@@ -20,7 +20,6 @@
- #include <grp.h>
-
- #include <stdlib.h>
--#include <stropts.h>
-
- /**
- * This is taken from R. W. Stevens book.
-@@ -84,7 +83,7 @@
- char *ptr;
-
- strcpy(pts_name, "/dev/ptmx");
-- fdm = getpt();
-+ fdm = posix_openpt(O_RDWR);
- if (fdm < 0)
- return -1;
- if (grantpt(fdm) < 0) { /* grant access to slave */
diff --git a/java/eclipse-cdt/files/patch-cdt.source-feature.xml b/java/eclipse-cdt/files/patch-cdt.source-feature.xml
deleted file mode 100644
index 3d9050cfd1ca..000000000000
--- a/java/eclipse-cdt/files/patch-cdt.source-feature.xml
+++ /dev/null
@@ -1,9 +0,0 @@
---- eclipse/features/org.eclipse.cdt.source_3.1.2.200702150621/feature.xml.orig Thu Mar 30 19:51:01 2006
-+++ eclipse/features/org.eclipse.cdt.source_3.1.2.200702150621/feature.xml Thu Mar 30 19:52:13 2006
-@@ -22,4 +22,6 @@
- <plugin ws="win32" os="win32" fragment="true" arch="x86" download-size="0" install-size="0" id="org.eclipse.cdt.source.win32.win32.x86" version="3.1.2"/>
- <plugin ws="motif" os="solaris" fragment="true" arch="sparc" download-size="0" install-size="0" id="org.eclipse.cdt.source.solaris.motif.sparc" version="3.1.2"/>
- <plugin ws="gtk" os="linux" fragment="true" arch="x86_64" download-size="0" install-size="0" id="org.eclipse.cdt.source.linux.gtk.x86_64" version="3.1.2"/>
-+ <plugin ws="gtk" os="freebsd" fragment="true" arch="x86" download-size="0" install-size="0" id="org.eclipse.cdt.source.freebsd.gtk.x86" version="3.1.2"/>
-+ <plugin ws="gtk" os="freebsd" fragment="true" arch="amd64" download-size="0" install-size="0" id="org.eclipse.cdt.source.freebsd.gtk.amd64" version="3.1.2"/>
- </feature>
diff --git a/java/eclipse-cdt/files/patch-managedbuilder.gnu-plugin.properties b/java/eclipse-cdt/files/patch-managedbuilder.gnu-plugin.properties
deleted file mode 100644
index ae19941cad81..000000000000
--- a/java/eclipse-cdt/files/patch-managedbuilder.gnu-plugin.properties
+++ /dev/null
@@ -1,13 +0,0 @@
---- eclipse/plugins/org.eclipse.cdt.managedbuilder.gnu.ui_3.1.2.200702150621/plugin.properties.orig Mon Nov 6 14:44:11 2006
-+++ eclipse/plugins/org.eclipse.cdt.managedbuilder.gnu.ui_3.1.2.200702150621/plugin.properties Mon Nov 6 14:45:02 2006
-@@ -27,6 +27,10 @@
- TargetName.solaris.exe=Executable (Gnu on Solaris)
- TargetName.solaris.so=Shared Library (Gnu on Solaris)
- TargetName.solaris.lib=Static Library (Gnu on Solaris)
-+TargetName.freebsd=FreeBSD
-+TargetName.freebsd.exe=FreeBSD Executable
-+TargetName.freebsd.so=FreeBSD Shared Library
-+TargetName.freebsd.lib=FreeBSD Static Library
-
- # No longer needed post-2.0
- TargetName.cygw=Cygwin
diff --git a/java/eclipse-cdt/files/patch-managedbuilder.gnu-plugin.xml b/java/eclipse-cdt/files/patch-managedbuilder.gnu-plugin.xml
deleted file mode 100644
index 915c1f71e11c..000000000000
--- a/java/eclipse-cdt/files/patch-managedbuilder.gnu-plugin.xml
+++ /dev/null
@@ -1,110 +0,0 @@
---- eclipse/plugins/org.eclipse.cdt.managedbuilder.gnu.ui_3.1.2.200702150621/plugin.xml~ Mon Nov 6 14:38:36 2006
-+++ eclipse/plugins/org.eclipse.cdt.managedbuilder.gnu.ui_3.1.2.200702150621/plugin.xml Mon Nov 6 14:42:23 2006
-@@ -1317,7 +1317,7 @@
- errorParsers="org.eclipse.cdt.core.MakeErrorParser;org.eclipse.cdt.core.GCCErrorParser;org.eclipse.cdt.core.GLDErrorParser;org.eclipse.cdt.core.GASErrorParser">
- <toolChain
- archList="all"
-- osList="linux,hpux,aix,qnx"
-+ osList="linux,hpux,aix,qnx,freebsd"
- name="%ToolChainName.Dbg"
- targetTool="cdt.managedbuild.tool.gnu.c.linker.exe.debug;cdt.managedbuild.tool.gnu.cpp.linker.exe.debug"
- scannerConfigDiscoveryProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfile"
-@@ -1326,7 +1326,7 @@
- id="cdt.managedbuild.target.gnu.platform.exe.debug"
- name="%PlatformName.Dbg"
- binaryParser="org.eclipse.cdt.core.ELF"
-- osList="linux,hpux,aix,qnx"
-+ osList="linux,hpux,aix,qnx,freebsd"
- archList="all">
- </targetPlatform>
- <builder
-@@ -1386,7 +1386,7 @@
- errorParsers="org.eclipse.cdt.core.MakeErrorParser;org.eclipse.cdt.core.GCCErrorParser;org.eclipse.cdt.core.GLDErrorParser;org.eclipse.cdt.core.GASErrorParser">
- <toolChain
- archList="all"
-- osList="linux,hpux,aix,qnx"
-+ osList="linux,hpux,aix,qnx,freebsd"
- name="%ToolChainName.Rel"
- targetTool="cdt.managedbuild.tool.gnu.c.linker.exe.release;cdt.managedbuild.tool.gnu.cpp.linker.exe.release"
- scannerConfigDiscoveryProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfile"
-@@ -1395,7 +1395,7 @@
- id="cdt.managedbuild.target.gnu.platform.exe.release"
- name="%PlatformName.Rel"
- binaryParser="org.eclipse.cdt.core.ELF"
-- osList="linux,hpux,aix,qnx"
-+ osList="linux,hpux,aix,qnx,freebsd"
- archList="all">
- </targetPlatform>
- <builder
-@@ -1463,7 +1463,7 @@
- id="cdt.managedbuild.config.gnu.so.debug">
- <toolChain
- archList="all"
-- osList="linux,hpux,aix,qnx"
-+ osList="linux,hpux,aix,qnx,freebsd"
- name="%ToolChainName.Dbg"
- targetTool="cdt.managedbuild.tool.gnu.c.linker.so.debug;cdt.managedbuild.tool.gnu.cpp.linker.so.debug"
- scannerConfigDiscoveryProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfile"
-@@ -1472,7 +1472,7 @@
- id="cdt.managedbuild.target.gnu.platform.so.debug"
- name="%PlatformName.Dbg"
- binaryParser="org.eclipse.cdt.core.ELF"
-- osList="linux,hpux,aix,qnx"
-+ osList="linux,hpux,aix,qnx,freebsd"
- archList="all">
- </targetPlatform>
- <builder
-@@ -1557,7 +1557,7 @@
- id="cdt.managedbuild.config.gnu.so.release">
- <toolChain
- archList="all"
-- osList="linux,hpux,aix,qnx"
-+ osList="linux,hpux,aix,qnx,freebsd"
- name="%ToolChainName.Rel"
- targetTool="cdt.managedbuild.tool.gnu.c.linker.so.release;cdt.managedbuild.tool.gnu.cpp.linker.so.release"
- scannerConfigDiscoveryProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfile"
-@@ -1566,7 +1566,7 @@
- id="cdt.managedbuild.target.gnu.platform.so.release"
- name="%PlatformName.Rel"
- binaryParser="org.eclipse.cdt.core.ELF"
-- osList="linux,hpux,aix,qnx"
-+ osList="linux,hpux,aix,qnx,freebsd"
- archList="all">
- </targetPlatform>
- <builder
-@@ -1658,7 +1658,7 @@
- id="cdt.managedbuild.config.gnu.lib.debug">
- <toolChain
- archList="all"
-- osList="linux,hpux,aix,qnx"
-+ osList="linux,hpux,aix,qnx,freebsd"
- name="%ToolChainName.Dbg"
- targetTool="cdt.managedbuild.tool.gnu.archiver.lib.debug"
- scannerConfigDiscoveryProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfile"
-@@ -1667,7 +1667,7 @@
- id="cdt.managedbuild.target.gnu.platform.lib.debug"
- name="%PlatformName.Dbg"
- binaryParser="org.eclipse.cdt.core.ELF"
-- osList="linux,hpux,aix,qnx"
-+ osList="linux,hpux,aix,qnx,freebsd"
- archList="all">
- </targetPlatform>
- <builder
-@@ -1724,7 +1724,7 @@
- id="cdt.managedbuild.config.gnu.lib.release">
- <toolChain
- archList="all"
-- osList="linux,hpux,aix,qnx"
-+ osList="linux,hpux,aix,qnx,freebsd"
- name="%ToolChainName.Rel"
- targetTool="cdt.managedbuild.tool.gnu.archiver.lib.release"
- scannerConfigDiscoveryProfileId="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfile"
-@@ -1733,7 +1733,7 @@
- id="cdt.managedbuild.target.gnu.platform.lib.release"
- name="%PlatformName.Rel"
- binaryParser="org.eclipse.cdt.core.ELF"
-- osList="linux,hpux,aix,qnx"
-+ osList="linux,hpux,aix,qnx,freebsd"
- archList="all">
- </targetPlatform>
- <builder
diff --git a/java/eclipse-cdt/files/patch-plugin.properties b/java/eclipse-cdt/files/patch-plugin.properties
deleted file mode 100644
index 922fdde43205..000000000000
--- a/java/eclipse-cdt/files/patch-plugin.properties
+++ /dev/null
@@ -1,10 +0,0 @@
---- eclipse/plugins/org.eclipse.cdt.core_3.1.2.200702150621/plugin.properties.orig Thu Mar 30 20:15:52 2006
-+++ eclipse/plugins/org.eclipse.cdt.core_3.1.2.200702150621/plugin.properties Thu Mar 30 20:16:31 2006
-@@ -56,6 +56,7 @@
- fragmentName.solaris = C/C++ Development Tools Core for Solaris
- fragmentName.win32 = C/C++ Development Tools Core for Windows
- fragmentName.macosx = C/C++ Development Tools Core for MacOS X
-+fragmentName.freebsd = C/C++ Development Tools Core for FreeBSD
-
- CodeFormatter.name=C/C++ Code Formatter
- CodeFormatter.name=C/C++ Code Formatters