diff options
author | Andrew Knight <andrew.knight@digia.com> | 2014-08-13 08:41:16 +0300 |
---|---|---|
committer | Andrew Knight <andrew.knight@digia.com> | 2014-08-13 09:47:10 +0200 |
commit | cbc538c0f8d6f7dc09fe0828c33e5fac2f851c82 (patch) | |
tree | fab3d8c26795c21f54df26ca3aabd7a3e9c0ebcb /src | |
parent | 6f482cd3b9d69635543e6decf1c4841f6dfb1578 (diff) | |
download | qtwebsockets-cbc538c0f8d6f7dc09fe0828c33e5fac2f851c82.tar.gz |
Fix build with non-OpenSSL SSL-enabled backends
Qt 5.4 introduced the ability to split out the OpenSSL-specific parts
of SSL, so allow users of this configuration to still build the SSL
server.
Change-Id: I03e446c1c0fa4062afe16e58d1b7a80373da12a6
Reviewed-by: Maurice Kalinowski <maurice.kalinowski@digia.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/websockets/websockets.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/websockets/websockets.pro b/src/websockets/websockets.pro index c9cf6e5..b9a513b 100644 --- a/src/websockets/websockets.pro +++ b/src/websockets/websockets.pro @@ -40,7 +40,7 @@ SOURCES += \ $$PWD/qmaskgenerator.cpp \ $$PWD/qdefaultmaskgenerator_p.cpp -contains(QT_CONFIG, openssl) | contains(QT_CONFIG, openssl-linked) { +contains(QT_CONFIG, ssl) | contains(QT_CONFIG, openssl) | contains(QT_CONFIG, openssl-linked) { SOURCES += $$PWD/qsslserver.cpp PRIVATE_HEADERS += $$PWD/qsslserver_p.h } |