ports/audio/audacity/patches/patch-src_AudacityApp_cpp

20 lines
540 B
Text

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;
}