forked from Lainports/freebsd-ports
can be controlled with external devices like joysticks, web-cams, or midi-devices. New effects can be designed in a GUI (Graphical User Interface) by composing basic effects into more complex ones. WWW: http://www.gephex.org/ PR: ports/7359 Submitted by: Igor Pokrovsky <ip (at) doom.homeunix.org>
11 lines
387 B
C++
11 lines
387 B
C++
--- base/src/utils/sharedlibrary.cpp.orig
|
|
+++ base/src/utils/sharedlibrary.cpp
|
|
@@ -73,7 +73,7 @@
|
|
#elif defined(OS_LINUX)
|
|
m_impl->handle = dlopen(path.c_str(), RTLD_NOW);
|
|
#elif defined(OS_BSD)
|
|
- m_impl->handle = dlopen(path.c_str(), DL_LAZY);
|
|
+ m_impl->handle = dlopen(path.c_str(), RTLD_LAZY);
|
|
#elif defined(OS_POSIX)
|
|
m_impl->handle = dlopen(path.c_str(), 0);
|
|
#endif
|