From 9f9487f21dbfacd88ab82e9944697780723adc05 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Sun, 28 Feb 2016 00:34:35 +0000 Subject: [PATCH] Use "mcs" instead of "gmcs" for the compiler check for mono > 2.10 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index fe7b089..d1fdac9 100644 --- a/configure.ac +++ b/configure.ac @@ -39,7 +39,7 @@ PKG_CHECK_MODULES(MONO_DEPENDENCY, mono >= 1.0, has_mono=true, has_mono=false) if test "x$has_mono" = "xtrue"; then 1 AC_PATH_PROG(RUNTIME, mono, no) - AC_PATH_PROG(CSC, gmcs, no) + AC_PATH_PROG(CSC, mcs, no) LIB_PREFIX=.so LIB_SUFFIX= else