Please do not reply to this email- if you want to comment on the bug, go to the URL shown below and enter your comments there.
Changed by [EMAIL PROTECTED] http://bugzilla.ximian.com/show_bug.cgi?id=79938 --- shadow/79938 2006-11-14 22:00:56.000000000 -0500 +++ shadow/79938.tmp.21554 2006-11-14 22:00:56.000000000 -0500 @@ -0,0 +1,55 @@ +Bug#: 79938 +Product: Mono: Doctools +Version: unspecified +OS: +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Major +Component: Core +AssignedTo: [EMAIL PROTECTED] +ReportedBy: [EMAIL PROTECTED] +QAContact: [EMAIL PROTECTED] +TargetMilestone: --- +URL: +Cc: +Summary: configure.in specifies mcs [patch] + +Description of Problem: + +Just pulled a fresh copy of monodoc from svn, and got compilation error +after trying the .autogen.sh --prefix=/usr/local then running make. There +was mcs compile error indicating assignment was required. Looked at code +and the line (1177 in monodocer.cs) was using generics - which needs gmcs. + +Modified configure.in to specify gmcs rather than mcs, re-ran configure, +and everything compiled and seems to work normally. + + +here is the diff: + + [EMAIL PROTECTED] ~/mono/monodoc $ svn diff configure.in +Index: configure.in +=================================================================== +--- configure.in (revision 67881) ++++ configure.in (working copy) +@@ -12,10 +12,10 @@ + + AC_PATH_PROG(GACUTIL, gacutil, no) + AC_PATH_PROG(RUNTIME, mono, no) +-AC_PATH_PROG(CSC, mcs, no) ++AC_PATH_PROG(CSC, gmcs, no) + + # Check for mcs repo +-AC_CHECK_FILE(../mcs, build_cserrors=yes, build_cserrors=no) ++AC_CHECK_FILE(../gmcs, build_cserrors=yes, build_cserrors=no) + if test "x$build_cserrors" = "xno" ; then + # If building from a source dist, check to see if cs-errors were included + AC_CHECK_FILE(class/cs-errors.zip, build_cserrors=yes, +build_cserrors=no) + + +Hope that helps, +Mike _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
