mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-23 22:25:11 +02:00
Who needs consistency anyway. Changed to check if QT_NO_OPENSSL is not defined instead.
This commit is contained in:
@@ -55,7 +55,7 @@
|
||||
* QxtSslServer is only available if Qt was compiled with OpenSSL support.
|
||||
*/
|
||||
|
||||
#if defined(QT_SECURETRANSPORT) || defined(QT_OPENSSL)
|
||||
#if defined(QT_SECURETRANSPORT) || !defined(QT_NO_OPENSSL)
|
||||
#include <QSslKey>
|
||||
|
||||
class QxtSslServerPrivate : public QxtPrivate<QxtSslServer>
|
||||
|
@@ -35,7 +35,7 @@
|
||||
#include "qxtglobal.h"
|
||||
#include <QTcpServer>
|
||||
|
||||
#if defined(QT_SECURETRANSPORT) || defined(QT_OPENSSL)
|
||||
#if defined(QT_SECURETRANSPORT) || !defined(QT_NO_OPENSSL)
|
||||
#include <QSslSocket>
|
||||
|
||||
class QxtSslServerPrivate;
|
||||
|
Reference in New Issue
Block a user