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
path: root/main
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:48:20 +0300
commit30a606e5b053549979a722e6bf05ce10c2c729bb (patch)
tree43e5c988316ecb2e9cab202a08185f5086bde687 /main
parent7b46789798d4b720db6c28ee6b6a0f40aa11aa50 (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')
-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;