summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimur Pocheptsov <timur.pocheptsov@qt.io>2018-02-09 15:42:48 +0100
committerTimur Pocheptsov <timur.pocheptsov@qt.io>2018-02-16 13:56:01 +0000
commitf805be538205493b8e45e882fd013aaa13c05f3f (patch)
tree7c757ee731cfbd58743de0d48084db34b6260e18
parent96e3985963a20a84bb8ff7032d77531641512d1d (diff)
Fix configure.json (OpenSSL 1.1 on Windows)
Since 1.1 lib names are similar to what they have on other platforms, that is: libssl and libcrypto. Task-number: QTBUG-62733 Change-Id: I477899433719fe36104491601d8cb71004b265ae Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io>
-rw-r--r--src/network/configure.json4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/network/configure.json b/src/network/configure.json
index 89bb1efffa..4cbc476837 100644
--- a/src/network/configure.json
+++ b/src/network/configure.json
@@ -75,6 +75,10 @@
"libs": "-lssleay32 -llibeay32",
"condition": "config.win32 && features.shared"
},
+ {
+ "libs": "-llibssl -llibcrypto",
+ "condition": "config.win32"
+ },
{ "libs": "-lssl -lcrypto", "condition": "!config.win32" }
]
}