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:
authorMichael Hutchinson <mhutchinson@novell.com>2010-09-14 04:35:14 +0400
committerMichael Hutchinson <mhutchinson@novell.com>2010-09-14 04:35:14 +0400
commit554a97bb8bd33058e2bcb66b54d4a5937ec4163f (patch)
treefa723f1c8c962ea624f5c7fa7755a775a7e76bf0 /main/build
parentfd1d6fdf2fc7e7b364a1acb5fccf7ad9c98e1c2b (diff)
[Core] Enable SHM, MD needs it and it's off by default w/Mono 2.8
Fixes not being able to communicate with MD's remote processes.
Diffstat (limited to 'main/build')
-rwxr-xr-xmain/build/MacOSX/mdtool3
-rwxr-xr-xmain/build/MacOSX/monodevelop3
2 files changed, 6 insertions, 0 deletions
diff --git a/main/build/MacOSX/mdtool b/main/build/MacOSX/mdtool
index 4dc8b1428e..95df69f995 100755
--- a/main/build/MacOSX/mdtool
+++ b/main/build/MacOSX/mdtool
@@ -9,6 +9,9 @@ export DYLD_FALLBACK_LIBRARY_PATH=$MONO_FRAMEWORK_PATH/lib:/lib:/usr/lib
#we need lots of file handles
ulimit -n 1024
+# MD uses SHM to communicate with the remoted builder processes
+export MONO_ENABLE_SHM=1
+
#prevent Macports from messing up mono and pkg-config
export PATH="$MONO_FRAMEWORK_PATH/bin:$PATH"
diff --git a/main/build/MacOSX/monodevelop b/main/build/MacOSX/monodevelop
index 0973391493..7debef3300 100755
--- a/main/build/MacOSX/monodevelop
+++ b/main/build/MacOSX/monodevelop
@@ -9,6 +9,9 @@ export DYLD_FALLBACK_LIBRARY_PATH=$MONO_FRAMEWORK_PATH/lib:/lib:/usr/lib
#we need lots of file handles
ulimit -n 1024
+# MD uses SHM to communicate with the remoted builder processes
+export MONO_ENABLE_SHM=1
+
#prevent Macports from messing up mono and pkg-config
export PATH="$MONO_FRAMEWORK_PATH/bin:$PATH"