mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 00:04:56 +01:00
fix libjack names
This commit is contained in:
parent
1e357b5109
commit
ad09be8c78
1 changed files with 5 additions and 1 deletions
|
|
@ -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)
|
||||||
|
# ifdef __x86_64__
|
||||||
|
lib = lib_open("libjack64.dll");
|
||||||
|
# else
|
||||||
lib = lib_open("libjack.dll");
|
lib = lib_open("libjack.dll");
|
||||||
|
# endif
|
||||||
#else
|
#else
|
||||||
lib = lib_open("libjack.so");
|
lib = lib_open("libjack.so.0");
|
||||||
#endif
|
#endif
|
||||||
if (!lib) {
|
if (!lib) {
|
||||||
_status = -2;
|
_status = -2;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue