[Mono-dev] Compiling monodoc from source

2007-02-19 Thread John Anderson

I'm trying to compile monodoc from source and i'm getting this error:


[EMAIL PROTECTED]:~/code/oss/mono/monodoc$ ./autogen.sh --prefix=/usr/local/
/usr/share/aclocal/oaf.m4:4: warning: underquoted definition of AM_PATH_OAF
 run info '(automake)Extending aclocal'
 or see http://sources.redhat.com/automake/automake.html#Extending-aclocal
/usr/share/aclocal/libglade.m4:7: warning: underquoted definition of
AM_PATH_LIBGLADE
/usr/share/aclocal/libart.m4:11: warning: underquoted definition of
AM_PATH_LIBART
/usr/share/aclocal/glib.m4:8: warning: underquoted definition of
AM_PATH_GLIB
/usr/share/aclocal/gconf-1.m4:4: warning: underquoted definition of
AM_PATH_GCONF
/usr/share/aclocal/gconf-1.m4:71: warning: underquoted definition of
AM_GCONF_SOURCE
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... yes
checking for a BSD-compatible install... /usr/bin/install -c
checking for gacutil... /usr/local/bin/gacutil
checking for mono... /usr/local/bin/mono
checking for mcs... /usr/local/bin/mcs
checking for ../mcs... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating engine/Makefile
config.status: creating class/Makefile
config.status: creating extras/Makefile
config.status: creating tools/Makefile
config.status: creating man/Makefile
config.status: creating monodoc.pc
config.status: creating monodoc
config.status: creating engine/AssemblyInfo.cs
config.status: creating scripts/Makefile
config.status: creating scripts/mod
config.status: creating scripts/monodocer
config.status: creating scripts/monodocs2slashdoc
config.status: creating scripts/monodocs2html
config.status: creating scripts/mdassembler
config.status: creating scripts/mdnormalizer
config.status: creating scripts/mdvalidater
config.status: creating scripts/mdcs2ecma
[EMAIL PROTECTED]:~/code/oss/mono/monodoc$ make
Making all in engine
make[1]: Entering directory `/home/sontek/code/oss/mono/monodoc/engine'
/usr/local/bin/mcs /debug /nowarn:169,164,162,168,219
-out:monodoc.dll-target:library /resource:./mono-
ecma.xsl,mono-ecma.xsl
/resource:./ecmaspec-html.xsl,ecmaspec-html.xsl/resource:./ecmaspec-
html-css.xsl,ecmaspec-html-css.xsl
/resource:./base.css,base.css/resource:./ecmaspec.css,
ecmaspec.css /resource:./mono-ecma-css.xsl,mono-ecma-css.xsl/resource:./mono-
ecma.css,mono-ecma.css /resource:./home.html,home.html ./colorizer.cs ./man-
provider.cs ./monohb-provider.cs ./xhtml-provider.cs ./ecma-provider.cs./simple-
provider.cs ./html-helper.cs ./provider.cs ./index.cs
./error-provider.cs./ecmaspec-
provider.cs ./editing.cs ./settings.cs ./commentservice.cs
./XmlNodeWriter.cs ./SearchableIndex.cs ./SearchableDocument.cs
./wiki2ecma.cs ./ecma2wiki.cs AssemblyInfo.cs@lucene_sources -r:
ICSharpCode.SharpZipLib.dll -r:System.Web -r:System.Web.Services -r:
Commons.Xml.Relaxng /codepage:utf8
./ecmaspec-provider.cs(157,25): warning CS0618:
`System.Xml.Xsl.XslTransform.Load(System.Xml.XmlReader)' is obsolete: `You
should pass evidence.'
./ecmaspec-provider.cs(164,17): warning CS0618:
`System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.IXPathNavigable,
System.Xml.Xsl.XsltArgumentList, System.IO.TextWriter)' is obsolete: `You
should pass XmlResolver to Transform() method'
Compilation succeeded - 2 warning(s)
/usr/local/bin/mcs -debug /out:assembler.exe ./assembler.cs  -r:
ICSharpCode.SharpZipLib.dll -r:./monodoc.dll
/usr/local/bin/mcs ./mod.cs -r:./monodoc.dll -out:mod.exe
if sed 's,@''monodoc_refdir@,/usr/local//lib/monodoc,'
./monodoc.dll.config.in > monodoc.dll.configt; then mv monodoc.dll.configt
monodoc.dll.config; else rm -f monodoc.dll.configt ; exit 1; fi
make[1]: Leaving directory `/home/sontek/code/oss/mono/monodoc/engine'
Making all in class
make[1]: Entering directory `/home/sontek/code/oss/mono/monodoc/class'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/sontek/code/oss/mono/monodoc/class'
Making all in extras
make[1]: Entering directory `/home/sontek/code/oss/mono/monodoc/extras'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/sontek/code/oss/mono/monodoc/extras'
Making all in tools
make[1]: Entering directory `/home/sontek/code/oss/mono/monodoc/tools'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/sontek/code/oss/mono/monodoc/tools'
Making all in scripts
make[1]: Entering directory `/home/sontek/code/oss/mono/monodoc/scripts'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/sontek/code/oss/mono/monodoc/scripts'
Making all in man
make[1]: Entering directory `/home/sontek/code/oss/mono/monodoc/man'
make[1]: Nothing to be done for `all

Re: [Mono-dev] Compiling monodoc

2006-03-09 Thread Joshua Tauberer
Paul F. Johnson wrote:
> Just building monodoc and it's reporting that the type or namespace
> "Cecil" does not exist in the workspace "mono" - is this me or a problem
> in svn?

A problem in SVN... sorry

-- 
- Joshua Tauberer

http://taubz.for.net

"Unfortunately, we're having this discussion. It's too bad,
because guess who listens to the discussion: the enemy."
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


[Mono-dev] Compiling monodoc

2006-03-09 Thread Paul F. Johnson
Hi,

Just building monodoc and it's reporting that the type or namespace
"Cecil" does not exist in the workspace "mono" - is this me or a problem
in svn?

TTFN

Paul
-- 
"Logic, my dear Zoe, is merely the ability to be wrong with authority" -
Dr Who

___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list