summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKatja Marttila <katja.marttila@qt.io>2023-10-05 08:14:46 +0300
committerKatja Marttila <katja.marttila@qt.io>2023-10-05 06:16:06 +0000
commit5537fbec2d158549eb1350e72600ac2d577ab145 (patch)
tree266d6537b2c4459ac3e39fd5336b873e79ec4315
parent63a36f05349e7508631be934eb66c477400b7538 (diff)
Fix openssl warning in macos and with devtool
Macos has different ssl plugin backend. Also devtool is using ssl so adding the plugin import to devtool as well Change-Id: I8aa24b2ab2f1f74717d5bde5c6bc0d76dc60de1f Reviewed-by: Iikka Eklund <iikka.eklund@qt.io> Reviewed-by: Arttu Tarkiainen <arttu.tarkiainen@qt.io>
-rw-r--r--tools/devtool/devtool.pro3
-rw-r--r--tools/repogen/repogen.pro5
2 files changed, 6 insertions, 2 deletions
diff --git a/tools/devtool/devtool.pro b/tools/devtool/devtool.pro
index def7066af..9a13ae0b8 100644
--- a/tools/devtool/devtool.pro
+++ b/tools/devtool/devtool.pro
@@ -10,6 +10,9 @@ CONFIG -= import_plugins
CONFIG += console
DESTDIR = $$IFW_APP_PATH
+!macos:QTPLUGIN += qopensslbackend
+macos:QTPLUGIN += qsecuretransportbackend
+
HEADERS += operationrunner.h \
binaryreplace.h \
binarydump.h
diff --git a/tools/repogen/repogen.pro b/tools/repogen/repogen.pro
index 68bc18caa..2740167fc 100644
--- a/tools/repogen/repogen.pro
+++ b/tools/repogen/repogen.pro
@@ -9,11 +9,12 @@ QT += qml xml concurrent
CONFIG -= import_plugins
-QTPLUGIN += qopensslbackend
-
CONFIG += console
DESTDIR = $$IFW_APP_PATH
+!macos:QTPLUGIN += qopensslbackend
+macos:QTPLUGIN += qsecuretransportbackend
+
SOURCES += repogen.cpp
macx:include(../../no_app_bundle.pri)