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:
authorJeffrey Stedfast <jeff@xamarin.com>2014-10-02 20:19:42 +0400
committerJeffrey Stedfast <jeff@xamarin.com>2014-10-02 20:19:42 +0400
commit1db132e1b75f6b0108db513789de8126fc3c1cc2 (patch)
treeadde52ab9fab198bdc14ef20f59e95c43a1e7021 /main/build
parentfd35c3abfa75e8c9370e2453f15234391a0134de (diff)
[MacOSX] Added /usr/local/lib to DL_FALLBACK_LIBRARY_PATH
This is a partial fix for Apple shipping 64-bit libsvn_client libraries.
Diffstat (limited to 'main/build')
-rw-r--r--main/build/MacOSX/monostub.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/build/MacOSX/monostub.m b/main/build/MacOSX/monostub.m
index 8a912a806d..b7a2b7e6fb 100644
--- a/main/build/MacOSX/monostub.m
+++ b/main/build/MacOSX/monostub.m
@@ -269,8 +269,8 @@ update_environment (const char *resourcesDir, const char *app)
char *variable;
char buf[32];
- /* CommandLineTools are needed for OSX 10.9+ */
- push_env ("DYLD_FALLBACK_LIBRARY_PATH", "/Library/Frameworks/Mono.framework/Versions/Current/lib:/lib:/usr/lib:/Library/Developer/CommandLineTools/usr/lib");
+ /* CommandLineTools are needed for OSX 10.9+ */
+ push_env ("DYLD_FALLBACK_LIBRARY_PATH", "/Library/Frameworks/Mono.framework/Versions/Current/lib:/lib:/usr/lib:/Library/Developer/CommandLineTools/usr/lib:/usr/local/lib");
/* Mono "External" directory */
push_env ("PKG_CONFIG_PATH", "/Library/Frameworks/Mono.framework/External/pkgconfig");