[MonoDevelop] Build break in latest monodevelop from git

mlintner mlintner at flash.net
Thu Aug 1 19:04:18 UTC 2013


The following fixes the build break I submitted. So the latest mono develop
will build in an older monodevelop.


CustomTreeModel.cs
		
		#region TreeModelImplementor implementation

		void HandleNodesReordered (object sender, TreeNodeOrderEventArgs e)
		{
			Gtk.TreeIter it = IterFromNode (e.Node);
line 88:			adapter.EmitRowsReordered (GetPath (it), it);//,
e.ChildrenOrder);
		}

CustomListModel.cs

		void HandleRowsReordered (object sender, ListRowOrderEventArgs e)
		{
			var p = new Gtk.TreePath (new int[] { e.Row });
			var it = IterFromNode (e.Row);
line 66:			adapter.EmitRowsReordered (p, it); //, e.ChildrenOrder);
			parent.QueueResize ();
		}


Now on the command line I have a new issue: Apparently some namespaces are
missing? these breaks have been in the build for awhile. It is a problem in
some of the later tars on the monodevelop site of the 3.x variety and all
the 4.x. People must not build monodevelop much.

make[3]: Entering directory `/usr/src/monodevelop/extras/JavaBinding'
make[3]: Leaving directory `/usr/src/monodevelop/extras/JavaBinding'
PKG_CONFIG_PATH=../../local-config:$PKG_CONFIG_PATH dmcs -noconfig
-codepage:utf8 -warn:4 -optimize- -debug -define:DEBUG
-out:build/JavaBinding.dll -target:library './AssemblyInfo.cs'
'./gtk-gui/generated.cs'
'./gtk-gui/JavaBinding.CodeGenerationPanelWidget.cs'
'./gtk-gui/JavaBinding.GlobalOptionsPanelWidget.cs'
'./Gui/GlobalOptionsPanel.cs' './Gui/ProjectConfigurationPropertyPanel.cs'
'./IKVMCompilerManager.cs' './JavaCompiler.cs' './JavaLanguageBinding.cs'
'./Project/JavaCompilerParameters.cs'  '-resource:./gtk-gui/gui.stetic'
'-resource:./icons/Java.FileIcon' '-resource:./icons/java-16.png'
'-resource:./icons/java-22.png' '-resource:./icons/java-icon-32.png'
'-resource:./JavaBinding.addin.xml' '-resource:./md1format.xml'
'-resource:./templates/EmptyJavaFile.xft.xml'
'-resource:./templates/EmptyJavaProject.xpt.xml'
'-resource:./templates/IkvmConsoleApplicationProject.xpt.xml'
'-resource:./templates/IkvmGladeApplicationProject.xpt.xml'
'-resource:./templates/IkvmGnomeApplicationProject.xpt.xml'
'-resource:./templates/IkvmGtkApplicationProject.xpt.xml'
'-resource:./templates/IkvmLibraryProject.xpt.xml'
'-resource:./templates/JavaApplet.xft.xml'
'-resource:./templates/JavaApplication.xft.xml'
'-resource:./templates/JavaApplicationProject.xpt.xml'
'-resource:./templates/JavaConsoleApplicationProject.xpt.xml'
'-resource:./templates/JavaDialog.xft.xml'
'-resource:./templates/JavaFrame.xft.xml'
'-resource:./templates/JavaOKDialog.xft.xml'
'-resource:./templates/JavaPanel.xft.xml'    -r:Mono.Posix  
-pkg:glade-sharp-2.0   -pkg:gtk-sharp-2.0   -pkg:mono-addins  
-pkg:monodevelop    -r:System    -r:System.Drawing    -r:System.Xml  
./JavaLanguageBinding.cs(31,28): error CS0234: The type or namespace name
`Dom' does not exist in the namespace `MonoDevelop.Projects'. Are you
missing an assembly reference?
./JavaLanguageBinding.cs(32,28): error CS0234: The type or namespace name
`Dom' does not exist in the namespace `MonoDevelop.Projects'. Are you
missing an assembly reference?
./JavaLanguageBinding.cs(34,28): error CS0234: The type or namespace name
`CodeGeneration' does not exist in the namespace `MonoDevelop.Projects'. Are
you missing an assembly reference?
./JavaLanguageBinding.cs(109,10): error CS0246: The type or namespace name
`IParser' could not be found. Are you missing an assembly reference?
./JavaLanguageBinding.cs(113,10): error CS0246: The type or namespace name
`IRefactorer' could not be found. Are you missing an assembly reference?
Compilation failed: 5 error(s), 0 warnings




--
View this message in context: http://mono.1490590.n4.nabble.com/Build-break-in-latest-monodevelop-from-git-tp4660347p4660365.html
Sent from the Mono - MonoDevelop IDE mailing list archive at Nabble.com.


More information about the Monodevelop-list mailing list