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"); lib = lib_open("/usr/local/lib/libjack.dylib");
} }
#elif (defined PLATFORM_WINDOWS) #elif (defined PLATFORM_WINDOWS)
lib = lib_open("libjack.dll"); # ifdef __x86_64__
lib = lib_open("libjack64.dll");
# else # else
lib = lib_open("libjack.so"); lib = lib_open("libjack.dll");
# endif
#else
lib = lib_open("libjack.so.0");
#endif #endif
if (!lib) { if (!lib) {
_status = -2; _status = -2;