Configure: Use mcs instead of gmcs

On some machines gmcs links to mscorlib 2.0 but that's too old, so we use the recommended mcs compiler.
This commit is contained in:
Stephan Sundermann 2014-09-18 16:03:53 +02:00
parent 1ac3cd8193
commit 2be4dbaeff

View file

@ -40,7 +40,7 @@ PKG_CHECK_MODULES(MONO_DEPENDENCY, mono >= 1.0, has_mono=true, has_mono=false)
if test "x$has_mono" = "xtrue"; then
AC_PATH_PROG(RUNTIME, mono, no)
AC_PATH_PROG(CSC, gmcs, no)
AC_PATH_PROG(CSC, mcs, no)
LIB_PREFIX=.so
LIB_SUFFIX=
else