|
|
@@ -41,6 +41,10 @@ extern "C" { |
|
|
|
#include "water/files/File.h" |
|
|
|
#include "water/misc/Time.h" |
|
|
|
|
|
|
|
#ifdef CARLA_OS_MAC |
|
|
|
# include "CarlaMacUtils.hpp" |
|
|
|
#endif |
|
|
|
|
|
|
|
#include <string> |
|
|
|
#include <vector> |
|
|
|
|
|
|
@@ -6296,6 +6300,11 @@ public: |
|
|
|
// --------------------------------------------------------------- |
|
|
|
// open DLL |
|
|
|
|
|
|
|
#ifdef CARLA_OS_MAC |
|
|
|
// Binary might be in quarentine due to Apple stupid notarization rules, let's remove that if possible |
|
|
|
removeFileFromQuarantine(fRdfDescriptor->Binary); |
|
|
|
#endif |
|
|
|
|
|
|
|
if (! pData->libOpen(fRdfDescriptor->Binary)) |
|
|
|
{ |
|
|
|
pData->engine->setLastError(pData->libError(fRdfDescriptor->Binary)); |
|
|
@@ -6961,6 +6970,11 @@ public: |
|
|
|
// --------------------------------------------------------------- |
|
|
|
// open UI DLL |
|
|
|
|
|
|
|
#ifdef CARLA_OS_MAC |
|
|
|
// Binary might be in quarentine due to Apple stupid notarization rules, let's remove that if possible |
|
|
|
removeFileFromQuarantine(fUI.rdfDescriptor->Binary); |
|
|
|
#endif |
|
|
|
|
|
|
|
if (! pData->uiLibOpen(fUI.rdfDescriptor->Binary, canDelete)) |
|
|
|
{ |
|
|
|
carla_stderr2("Could not load UI library, error was:\n%s", pData->libError(fUI.rdfDescriptor->Binary)); |
|
|
|