OpenSSL errors for map example
-
Hi!
i tried running the minimal_map example, but i only had openssl version 1.1 , even now, however, after replacing it with this version ( check for linux, debian ) $ openssl version
OpenSSL 3.2.0-dev (Library: OpenSSL 3.2.0-dev )
i still get the same error so im not sure what to do anymore, any insights?
/Qt/Examples/Qt-6.5.0/location/build-minimal_map-Desktop_Qt_6_5_0_GCC_64bit-Debug/minimal_map...
QML debugging is enabled. Only use this in a safe environment.
qt.dbus.integration: Could not connect "org.freedesktop.IBus" to globalEngineChanged(QString)
QGeoTileProviderOsm: Tileserver disabled at QUrl("http://maps-redirect.qt.io/osm/5.8/satellite")
QGeoTileFetcherOsm: all providers resolved
qt.tlsbackend.ossl: Incompatible version of OpenSSL (built with OpenSSL >= 3.x, runtime version is < 3.x)
qt.network.ssl: The backend "cert-only" does not support QSslKey -
Hi!
i tried running the minimal_map example, but i only had openssl version 1.1 , even now, however, after replacing it with this version ( check for linux, debian ) $ openssl version
OpenSSL 3.2.0-dev (Library: OpenSSL 3.2.0-dev )
i still get the same error so im not sure what to do anymore, any insights?
/Qt/Examples/Qt-6.5.0/location/build-minimal_map-Desktop_Qt_6_5_0_GCC_64bit-Debug/minimal_map...
QML debugging is enabled. Only use this in a safe environment.
qt.dbus.integration: Could not connect "org.freedesktop.IBus" to globalEngineChanged(QString)
QGeoTileProviderOsm: Tileserver disabled at QUrl("http://maps-redirect.qt.io/osm/5.8/satellite")
QGeoTileFetcherOsm: all providers resolved
qt.tlsbackend.ossl: Incompatible version of OpenSSL (built with OpenSSL >= 3.x, runtime version is < 3.x)
qt.network.ssl: The backend "cert-only" does not support QSslKey@wiadro Your program seems to be loading an old version of OpenSSL from somewhere else on your machine. This may be the same folder as the executable, somewhere on the $LD_LIBRARY_PATH, or maybe elsewhere.
For example, on my Ubuntu box there in OpenSSL 3.0.2 installed by the distribution (3.0.2-0ubuntu1.9), OpenSSL 1.1 libs installed from a distribution package (libssl1.1), and several private sets installed with Steam and snap packages.
Try running
ldd yourexeto see if it has an explicit link to something like libssl.so.1.1. -
@wiadro Your program seems to be loading an old version of OpenSSL from somewhere else on your machine. This may be the same folder as the executable, somewhere on the $LD_LIBRARY_PATH, or maybe elsewhere.
For example, on my Ubuntu box there in OpenSSL 3.0.2 installed by the distribution (3.0.2-0ubuntu1.9), OpenSSL 1.1 libs installed from a distribution package (libssl1.1), and several private sets installed with Steam and snap packages.
Try running
ldd yourexeto see if it has an explicit link to something like libssl.so.1.1.