SecBSD's official ports repository
This commit is contained in:
commit
2c0afcbbf3
64331 changed files with 5339189 additions and 0 deletions
20
audio/audacity/patches/patch-src_AudacityApp_cpp
Normal file
20
audio/audacity/patches/patch-src_AudacityApp_cpp
Normal file
|
@ -0,0 +1,20 @@
|
|||
Don't hardcode shared libraries version number.
|
||||
|
||||
Index: src/AudacityApp.cpp
|
||||
--- src/AudacityApp.cpp.orig
|
||||
+++ src/AudacityApp.cpp
|
||||
@@ -721,12 +721,12 @@ class GnomeShutdown
|
||||
{
|
||||
mArgv[0].reset(strdup("Audacity"));
|
||||
|
||||
- mGnomeui = dlopen("libgnomeui-2.so.0", RTLD_NOW);
|
||||
+ mGnomeui = dlopen("libgnomeui-2.so", RTLD_NOW);
|
||||
if (!mGnomeui) {
|
||||
return;
|
||||
}
|
||||
|
||||
- mGnome = dlopen("libgnome-2.so.0", RTLD_NOW);
|
||||
+ mGnome = dlopen("libgnome-2.so", RTLD_NOW);
|
||||
if (!mGnome) {
|
||||
return;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue