[Monodevelop-patches-list] r1546 - in trunk/MonoDevelop/src/AddIns: BackendBindings/CSharpBinding DebuggerAddIn

commit-watcher at mono-cvs.ximian.com commit-watcher at mono-cvs.ximian.com
Thu Apr 29 05:12:23 EDT 2004


Author: tberman
Date: 2004-04-29 05:12:23 -0400 (Thu, 29 Apr 2004)
New Revision: 1546

Modified:
   trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/CSharpBindingCompilerManager.cs
   trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/ChangeLog
   trunk/MonoDevelop/src/AddIns/DebuggerAddIn/ChangeLog
   trunk/MonoDevelop/src/AddIns/DebuggerAddIn/DebuggingService.cs
   trunk/MonoDevelop/src/AddIns/DebuggerAddIn/Makefile.am
Log:
disabling debugger, adding a clean target for gen'd makefiles.


Modified: trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/CSharpBindingCompilerManager.cs
===================================================================
--- trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/CSharpBindingCompilerManager.cs	2004-04-29 03:21:49 UTC (rev 1545)
+++ trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/CSharpBindingCompilerManager.cs	2004-04-29 09:12:23 UTC (rev 1546)
@@ -359,6 +359,7 @@
 				else
 					stream.WriteLine ();
 			}
+			stream.WriteLine ();
 
 			stream.WriteLine ("RESOURCES = \\");
 			for (int i = 0; i < resources.Count; i++) {
@@ -416,6 +417,10 @@
 			
 			stream.WriteLine (outputName + ": $(SOURCES) $(RESOURCES)");
 			stream.WriteLine ("\tmcs /target:{0} /out:{1} $(RESOURCES_BUILD) $(GAC_REFERENCES_BUILD) $(ASSEMBLY_REFERENCES_BUILD) $(PROJECT_REFERENCES_BUILD) $(SOURCES)", target, outputName);
+
+			stream.WriteLine ();
+			stream.WriteLine ("clean:");
+			stream.WriteLine ("\trm -f {0}", outputName);
 			
 			stream.Flush ();
 			stream.Close ();

Modified: trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/ChangeLog
===================================================================
--- trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/ChangeLog	2004-04-29 03:21:49 UTC (rev 1545)
+++ trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/ChangeLog	2004-04-29 09:12:23 UTC (rev 1546)
@@ -1,3 +1,7 @@
+2004-04-29  Todd Berman  <tberman at sevenl.net>
+
+	* CSharpBindingCompilerManager.cs: add a clean target
+
 2004-04-28  Todd Berman  <tberman at sevenl.net>
 
 	* CSharpBindingExecutionManager.cs: People running apps from the IDE

Modified: trunk/MonoDevelop/src/AddIns/DebuggerAddIn/ChangeLog
===================================================================
--- trunk/MonoDevelop/src/AddIns/DebuggerAddIn/ChangeLog	2004-04-29 03:21:49 UTC (rev 1545)
+++ trunk/MonoDevelop/src/AddIns/DebuggerAddIn/ChangeLog	2004-04-29 09:12:23 UTC (rev 1546)
@@ -1,3 +1,9 @@
+2004-04-29  Todd Berman  <tberman at sevenl.net>
+
+	* Makefile.am: dont build debugger for now. will add info in configure
+	soon
+	* DebuggingService.cs: bring up to speed with debugger from cvs.
+
 2004-04-04  Todd Berman  <tberman at sevenl.net>
 
 	* Makefile.am: change to .addin.xml for i18n
@@ -4,7 +10,6 @@
 	* MonoDevelopDebugger.addin.xml: mv
 	* MonoDevelopDebugger.addin: rm
 
-
 2004-03-29  Todd Berman  <tberman at sevenl.net>
 
 	* Gui/DebuggerVariablePad.cs: use AmbienceService to convert from

Modified: trunk/MonoDevelop/src/AddIns/DebuggerAddIn/DebuggingService.cs
===================================================================
--- trunk/MonoDevelop/src/AddIns/DebuggerAddIn/DebuggingService.cs	2004-04-29 03:21:49 UTC (rev 1545)
+++ trunk/MonoDevelop/src/AddIns/DebuggerAddIn/DebuggingService.cs	2004-04-29 09:12:23 UTC (rev 1546)
@@ -219,7 +219,7 @@
 
 			backend = new DebuggerBackend ();
 			backend.ThreadManager.InitializedEvent += new ThreadEventHandler (initialized_event);
-			backend.Run (ProcessStart.Create (null, argv));
+			backend.Run (new ProcessStart (null, argv));
 		}
 
 		public void Stop ()

Modified: trunk/MonoDevelop/src/AddIns/DebuggerAddIn/Makefile.am
===================================================================
--- trunk/MonoDevelop/src/AddIns/DebuggerAddIn/Makefile.am	2004-04-29 03:21:49 UTC (rev 1545)
+++ trunk/MonoDevelop/src/AddIns/DebuggerAddIn/Makefile.am	2004-04-29 09:12:23 UTC (rev 1546)
@@ -18,8 +18,10 @@
 
 if ENABLE_DEBUGGER
 
-all: $(ASSEMBLY)
+#all: $(ASSEMBLY)
+all:
 
+
 build_sources = $(addprefix $(srcdir)/, $(FILES))
 
 ../../../build/AddIns/$(ADDIN):




More information about the Monodevelop-patches-list mailing list