From 3680a39323f443354caff845733b70d0b4149b43 Mon Sep 17 00:00:00 2001 From: Bertrand Lorentz Date: Sun, 10 May 2015 17:16:00 +0200 Subject: [PATCH] build: Bump mono dependency to 3.2.8 Mono 3.2.8 was released way back in February 2014, and is now available in most current distros. With mono, we now only use the "mcs" unified compiler. This also allows us to build on systems where the compatibility script "gmcs" is not available. --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 301db4c8c..4a407a2f1 100644 --- a/configure.ac +++ b/configure.ac @@ -104,7 +104,7 @@ AC_CHECK_SIZEOF(off_t) OFF_T_FLAGS="-define:OFF_T_$ac_cv_sizeof_off_t" AC_SUBST(OFF_T_FLAGS) -MONO_REQUIRED_VERSION=2.8 +MONO_REQUIRED_VERSION=3.2.8 PKG_CHECK_MODULES(MONO_DEPENDENCY, mono >= $MONO_REQUIRED_VERSION, has_mono=true, has_mono=false) AC_PATH_PROG(GACUTIL, gacutil, no) @@ -133,7 +133,7 @@ if test "x$RUNTIME" != "no" ; then RUNTIME="mono$RUNTIME_DEBUG_FLAGS" fi -AC_PATH_PROG(CSC, gmcs, no) +AC_PATH_PROG(CSC, mcs, no) if test `uname -s` = "Darwin"; then LIB_PREFIX= LIB_SUFFIX=.dylib