13
0

fix libjack names

This commit is contained in:
Robin Gareus 2014-10-24 14:36:04 +02:00
parent 1e357b5109
commit ad09be8c78

View File

@ -194,9 +194,13 @@ static void init_weak_jack(void)
lib = lib_open("/usr/local/lib/libjack.dylib");
}
#elif (defined PLATFORM_WINDOWS)
# ifdef __x86_64__
lib = lib_open("libjack64.dll");
# else
lib = lib_open("libjack.dll");
# endif
#else
lib = lib_open("libjack.so");
lib = lib_open("libjack.so.0");
#endif
if (!lib) {
_status = -2;