macOS fix T67686 , use absolute path to load 3Dconnexion framework

This commit is contained in:
Arto Kitula 2019-09-12 22:46:49 +03:00
parent 6472662d66
commit 85a6c07670
Notes: blender-bot 2023-02-14 08:42:53 +01:00
Referenced by issue #67686, NDOF mouse not working in code signed macOS builds
1 changed files with 1 additions and 1 deletions

View File

@ -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);