mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 15:54:57 +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");
|
||||
}
|
||||
#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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue