Hi.

On Mon, 11 Mar 2024 00:12:04 -0700 ToddAndMargo via users wrote:

> # ldd /bin/marble | sort

This sort may be confusing.

> /bin/marble: /lib64/libQt5Gui.so.5: version `Qt_5.15.3_PRIVATE_API' not 
> found (required by 
> /usr/lib64/qt5-qtwebengine-freeworld/libQt5WebEngineCore.so.5)

This lib is probably the culprit.

What RPM provides it ?

  rpm -qf /usr/lib64/qt5-qtwebengine-freeworld/libQt5WebEngineCore.so.

More generally, check that all the libs reported by ldd of marble are fc39
ones. For example with:

  rpm -qf $(ldd /usr/bin/marble \
    | awk '/=>/ { print $3 }') \
    | sort -u \
    | grep -v fc39
  <nothing>

-- 
francis
--
_______________________________________________
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue

Reply via email to