configure: Fix (Open)SSL detection on WinCE
"ssl" should be defined when "openssl" is defined, and WinCE should
default to autodetection of OpenSSL.
(cherry picked from commit f2fbee5134)
Change-Id: I9110b245d66fac233eb2bfe89b26cb34cee3e291
Reviewed-by: Lars Knoll <lars.knoll@theqtcompany.com>
bb10
parent
65ec933f91
commit
15fcd691db
|
|
@ -903,8 +903,10 @@ void Configure::parseCmdLine()
|
|||
dictionary[ "OPENSSL"] = "no";
|
||||
} else if (configCmdLine.at(i) == "-openssl") {
|
||||
dictionary[ "OPENSSL" ] = "yes";
|
||||
dictionary[ "SSL" ] = "yes";
|
||||
} else if (configCmdLine.at(i) == "-openssl-linked") {
|
||||
dictionary[ "OPENSSL" ] = "linked";
|
||||
dictionary[ "SSL" ] = "yes";
|
||||
} else if (configCmdLine.at(i) == "-no-libproxy") {
|
||||
dictionary[ "LIBPROXY"] = "no";
|
||||
} else if (configCmdLine.at(i) == "-libproxy") {
|
||||
|
|
@ -1700,8 +1702,6 @@ void Configure::applySpecSpecifics()
|
|||
dictionary[ "STYLE_WINDOWSCE" ] = "yes";
|
||||
dictionary[ "STYLE_WINDOWSMOBILE" ] = "yes";
|
||||
dictionary[ "OPENGL" ] = "no";
|
||||
dictionary[ "SSL" ] = "no";
|
||||
dictionary[ "OPENSSL" ] = "no";
|
||||
dictionary[ "RTTI" ] = "no";
|
||||
dictionary[ "SSE2" ] = "no";
|
||||
dictionary[ "SSE3" ] = "no";
|
||||
|
|
|
|||
Loading…
Reference in New Issue