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.
This commit is contained in:
parent
08f4ae2eb4
commit
3680a39323
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue