From 1fd58836203a37eea81a31ae2d5c4cf64161db88 Mon Sep 17 00:00:00 2001 From: Nick Bolton Date: Tue, 19 May 2015 14:47:16 +0100 Subject: [PATCH] Stopped Unix plugin loader from throwing #4661 Tested on Mac OS X only --- plugin-unix.diff | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 plugin-unix.diff diff --git a/plugin-unix.diff b/plugin-unix.diff new file mode 100644 index 00000000..e6e39633 --- /dev/null +++ b/plugin-unix.diff @@ -0,0 +1,15 @@ +diff --git a/src/lib/arch/unix/ArchPluginUnix.cpp b/src/lib/arch/unix/ArchPluginUnix.cpp +index 997c274..3e390f0 100644 +--- a/src/lib/arch/unix/ArchPluginUnix.cpp ++++ b/src/lib/arch/unix/ArchPluginUnix.cpp +@@ -76,8 +76,8 @@ ArchPluginUnix::load() + void* library = dlopen(path.c_str(), RTLD_LAZY); + + if (library == NULL) { +- LOG((CLOG_ERR "failed to load plugin: %s", (*it).c_str())); +- throw XArch(dlerror()); ++ LOG((CLOG_ERR "failed to load plugin '%s', error: %s", (*it).c_str(), dlerror())); ++ continue; + } + + String filename = synergy::string::removeFileExt(*it);