ports/audio/audacity/patches/patch-src_AudacityApp_cpp

21 lines
540 B
Text
Raw Normal View History

2023-08-16 22:26:55 +00:00
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;
}