mono c# compiler detection

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@4503 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2003-03-10 19:52:18 +00:00
commit 2e32117f77

View file

@ -1141,13 +1141,13 @@ AC_ARG_WITH(cil-interpreter, [ --with-cil-interpreter=path Set location
AC_ARG_WITH(csharp-compiler, [ --with-csharp-compiler=path Set location of CSharp compiler],[CSHARPCOMPILERBIN="$withval"], [CSHARPCOMPILERBIN=])
if test -z "$CSHARPBIN" ; then
AC_CHECK_PROGS(CSHARPCILINTERPRETER, ilrun)
AC_CHECK_PROGS(CSHARPCILINTERPRETER, ilrun mono)
else
CSHARPCILINTERPRETER="$CSHARPBIN"
fi
if test -z "$CSHARPCOMPILERBIN" ; then
AC_CHECK_PROGS(CSHARPCOMPILER, cscc msc csc)
AC_CHECK_PROGS(CSHARPCOMPILER, cscc mcs csc)
else
CSHARPCOMPILER="$CSHARPCOMPILERBIN"
fi