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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArto Kitula <arto.kitula@gmail.com>2019-09-12 22:46:49 +0300
committerArto Kitula <arto.kitula@gmail.com>2019-09-12 22:46:49 +0300
commit85a6c07670fbbe279c567844b99a7a6bd6de07db (patch)
tree740dbfa5e8f4a743966edc23bae90a5200fe424a
parent6472662d6661a447be37588ade2d12e3eea97e79 (diff)
macOS fix T67686 , use absolute path to load 3Dconnexion framework
-rw-r--r--intern/ghost/intern/GHOST_NDOFManagerCocoa.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/ghost/intern/GHOST_NDOFManagerCocoa.mm b/intern/ghost/intern/GHOST_NDOFManagerCocoa.mm
index 4d07a399002..0fc6af64bac 100644
--- a/intern/ghost/intern/GHOST_NDOFManagerCocoa.mm
+++ b/intern/ghost/intern/GHOST_NDOFManagerCocoa.mm
@@ -121,7 +121,7 @@ static bool load_driver_functions()
return true;
}
- module = dlopen("3DconnexionClient.framework/3DconnexionClient", RTLD_LAZY | RTLD_LOCAL);
+ module = dlopen("/Library/Framework/3DconnexionClient.framework/3DconnexionClient", RTLD_LAZY | RTLD_LOCAL);
if (module) {
LOAD_FUNC(SetConnexionHandlers);