Skip to content

Commit

Permalink
macdeployqt: Add networkinformation as plugins to be deployed
Browse files Browse the repository at this point in the history
This was missed during original patch

Fixes: QTBUG-108677
Change-Id: Icd8960f2f41468dc12c3269b12df777acd962753
Reviewed-by: Timur Pocheptsov <[email protected]>
Reviewed-by: Qt CI Bot <[email protected]>
  • Loading branch information
Morten242 committed Dec 7, 2022
1 parent 3e3968d commit 0d08801
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/tools/macdeployqt/shared/shared.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1106,8 +1106,10 @@ void deployPlugins(const ApplicationBundleInfo &appBundleInfo, const QString &pl
const QString libInfix = getLibInfix(deploymentInfo.deployedFrameworks);

// Network
if (deploymentInfo.containsModule("Network", libInfix))
if (deploymentInfo.containsModule("Network", libInfix)) {
addPlugins(QStringLiteral("tls"));
addPlugins(QStringLiteral("networkinformation"));
}

// All image formats (svg if QtSvg is used)
const bool usesSvg = deploymentInfo.containsModule("Svg", libInfix);
Expand Down

0 comments on commit 0d08801

Please sign in to comment.