Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] Missing dependency in cdt.core

This patch fixes plugin.xml to add the missing dependency on 
org.eclipse.team.core (it defines extensions to 
org.eclipse.team.core.fileTypes and org.eclipse.team.core.ignore).

-Keith


Index: .classpath
===================================================================
RCS file: /home/tools/org.eclipse.cdt.core/.classpath,v
retrieving revision 1.11
diff -u -r1.11 .classpath
--- .classpath	8 Sep 2003 19:17:53 -0000	1.11
+++ .classpath	12 Sep 2003 15:40:08 -0000
@@ -14,6 +14,7 @@
     <classpathentry kind="src" path="/org.eclipse.search"/>
     <classpathentry kind="src" path="/org.eclipse.compare"/>
     <classpathentry kind="src" path="/org.eclipse.debug.core"/>
+    <classpathentry kind="src" path="/org.eclipse.team.core"/>
     <classpathentry kind="src" path="/org.eclipse.core.boot"/>
     <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
     <classpathentry kind="output" path="bin"/>
Index: .project
===================================================================
RCS file: /home/tools/org.eclipse.cdt.core/.project,v
retrieving revision 1.4
diff -u -r1.4 .project
--- .project	17 Sep 2002 18:53:40 -0000	1.4
+++ .project	12 Sep 2003 15:40:08 -0000
@@ -10,6 +10,7 @@
 		<project>org.eclipse.core.runtime</project>
 		<project>org.eclipse.debug.core</project>
 		<project>org.eclipse.search</project>
+		<project>org.eclipse.team.core</project>
 	</projects>
 	<buildSpec>
 		<buildCommand>
Index: ChangeLog
===================================================================
RCS file: /home/tools/org.eclipse.cdt.core/ChangeLog,v
retrieving revision 1.145
diff -u -r1.145 ChangeLog
--- ChangeLog	11 Sep 2003 14:46:14 -0000	1.145
+++ ChangeLog	12 Sep 2003 15:40:09 -0000
@@ -1,3 +1,10 @@
+2003-09-12 Keith Campbell
+    Added missing dependency on org.eclipse.team.core (this plugin defines extensions
+    to org.eclipse.team.core.fileTypes and org.eclipse.team.core.ignore).
+    * .classpath
+    * .project
+    * plugin.xml
+
 2003-09-10 Sean Evoy
 	Work completed to resolve [Bug 41412] "Restore Default in Managed Build project's 
 	settings Not Working". The configuration now has a reset method that removes 
Index: plugin.xml
===================================================================
RCS file: /home/tools/org.eclipse.cdt.core/plugin.xml,v
retrieving revision 1.28
diff -u -r1.28 plugin.xml
--- plugin.xml	1 Sep 2003 21:49:15 -0000	1.28
+++ plugin.xml	12 Sep 2003 15:40:09 -0000
@@ -18,6 +18,7 @@
       <import plugin="org.eclipse.search"/>
       <import plugin="org.eclipse.compare"/>
       <import plugin="org.eclipse.debug.core"/>
+      <import plugin="org.eclipse.team.core"/>
    </requires>
 
 

Back to the top