On Fri, Oct 10, 2025 at 7:06 AM M G Berberich <[email protected]> wrote: > [...] > Am Freitag, den 10. Oktober schrieb Marco Moock: > > > > linphone-cli is there, and linphone-desktop is in unstable. > > > > Then there is still Twinkle, but development stalled, no IPv6 etc. > > I tried twinkle (some time ago) and couldn’t get it to work :( > > linphone-desktop builds from source, but does not work: > > At buildtime: > dpkg-shlibdeps: warning: > debian/linphone-desktop/usr/lib/x86_64-linux-gnu/linphone-desktop/libapp-plugin.so > contains an unresolvable reference to symbol > _ZN8linphone6Config16getKeysNamesListERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE: > it's probably a plugin
That is a C++ mangled name. You can use `c++filt` to determine the name before mangling: $ echo '_ZN8linphone6Config16getKeysNamesListERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE' | c++filt linphone::Config::getKeysNamesList(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) The basic_string<...> is just a std::string in C++. > At runtime: > > linphone > linphone: error while loading shared libraries: libapp-plugin.so: cannot open > shared object file: No such file or directory > > > LD_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu/linphone-desktop linphone > QObject::connect: No such signal > App::applicationStateChanged(Qt::ApplicationState) in > ./linphone-app/src/app/App.cpp:271 > Use environment TimeZone: :/etc/localtime > Segmentation fault (core dumped) > > The lib exists: > > dpkg --search libapp-plugin.so > linphone-desktop: /usr/lib/x86_64-linux-gnu/linphone-desktop/libapp-plugin.so Jeff

