<span class="gmail_quote"></span>In similar spirit to the DotGnu patch, one for Mono.<br><br>Estimated hours taken: 0.2<br>Branches: main<br><br>aclocal.m4:<br>       Add some preliminary support for using the il grade with Mono.
<br><br>Index: aclocal.m4<br>===================================================================<br>RCS file: /home/mercury1/repository/mercury/aclocal.m4,v<br>retrieving revision 1.25<br>diff -u -r1.25 aclocal.m4<br>--- 
aclocal.m4    1 Feb 2006 12:10:16 -0000    1.25<br>+++ aclocal.m4    11 Feb 2006 02:26:02 -0000<br>@@ -228,7 +228,9 @@<br> <br> # Check for the C# (C sharp) compiler.<br> # cscc is the DotGNU C# compiler.<br>-AC_PATH_PROGS(MS_CSC, csc cscc)
<br>+# mcs is the Mono C# compiler.<br>+# XXX Which should we prefer: Mono or DotGnu?<br>+AC_PATH_PROGS(MS_CSC, csc cscc mcs)<br> MS_CSC=`basename "$MS_CSC"`<br> <br> # We default to the Beta 2 version of the library
<br>@@ -273,6 +275,7 @@<br> <br> # Check for the assembly linker.<br> # ilalink is the DotGNU assembly linker.<br>+# Mono does not appear to have one.<br> AC_PATH_PROGS(MS_AL, al ilalink)<br> MS_AL=`basename "$MS_AL"`
<br><br>Jon<br>