Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan McGovern <alan@xamarin.com>2015-11-23 18:46:10 +0300
committerAlan McGovern <alan@xamarin.com>2015-11-23 18:47:26 +0300
commitbd9c60de8d3e20a96a61ae927c931cc6bc911892 (patch)
tree89806487001e9ecbb60d55f7dca5802060305af2 /main/build
parent4d6a58b4a533a32e32513affd5444715da4e55ac (diff)
[build] We require mono 4.2+ now
This is to prevent people using older versions of mono which have known crashers when combined with XS 5.10+. The main known offender is this: https://github.com/xamarin/bockbuild/blob/xamarin/packages/patches/pango-coretext-fix-yosemite-crasher.patch
Diffstat (limited to 'main/build')
-rw-r--r--main/build/MacOSX/monostub.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/build/MacOSX/monostub.m b/main/build/MacOSX/monostub.m
index 0cc32bc1c0..4f26c16b14 100644
--- a/main/build/MacOSX/monostub.m
+++ b/main/build/MacOSX/monostub.m
@@ -191,7 +191,7 @@ int main (int argc, char **argv)
NSString *appDir = [[NSBundle mainBundle] bundlePath];
// can be overridden with plist string MonoMinVersion
- NSString *req_mono_version = @"3.10";
+ NSString *req_mono_version = @"4.2";
// can be overridden with either plist bool MonoUseSGen or MONODEVELOP_USE_SGEN env
bool use_sgen = YES;