[Mono-list] Monodoc Build Problems

Hector E. Gomez Morales hgomez_36@flashmail.com
19 Mar 2003 19:59:18 -0600


--=-y2irzwyqiYASjQihtQvc
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable

When trying to rebuild monodoc with mono and mcs form CVS the build
fails:
mcs /debug /out:browser.exe browser.cs ecma-provider.cs html-helper.cs
provider.cs  /resource:browser.glade /resource:mono-ecma.xsl
-r:gtk-sharp.dll -r:glade-sharp.dll -r:glib-sharp.dll -r:ziplib.dll
=EF=BB=BFbrowser.cs(39) error CS0246: Could not find attribute 'GladeWidget=
'
(are you missing a using directive or an assembly reference ?)
browser.cs(42) error CS0246: Could not find attribute 'GladeWidget' (are
you missing a using directive or an assembly reference ?)
browser.cs(45) error CS0246: Could not find attribute 'GladeWidget' (are
you missing a using directive or an assembly reference ?)
Compilation failed: 3 error(s), 0 warnings
make: *** [browser.exe] Error 1

I checked and find that GladeWidget was changed to Glade.Widget and make
the modifications and the build is successful Diff is attached



--=-y2irzwyqiYASjQihtQvc
Content-Disposition: attachment; filename=browser.diff
Content-Transfer-Encoding: quoted-printable
Content-Type: text/x-patch; name=browser.diff; charset=UTF-8

Index: browser.cs
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /cvs/public/monodoc/browser/browser.cs,v
retrieving revision 1.13
diff -u -r1.13 browser.cs
--- browser.cs	5 Mar 2003 07:13:17 -0000	1.13
+++ browser.cs	20 Mar 2003 02:00:53 -0000
@@ -36,13 +36,13 @@
 		Application.Run ();
 	}
 =09
-	[GladeWidget]
+	[Glade.Widget]
 	TreeView reference_tree;
=20
-	[GladeWidget]
+	[Glade.Widget]
 	Box help_container;
=20
-	[GladeWidget]
+	[Glade.Widget]
 	ScrolledWindow html_container;
=20
 	HTML html;

--=-y2irzwyqiYASjQihtQvc--