Fixed compile of QSslSocket with -qtnamespace on Windows.
Q_DECLARE_METATYPE must be outside of the qt namespace. System headers must be included outside of the qt namespace. Change-Id: I2f48b1df87e5edae2baee6ce813af08d3e011dc0 Reviewed-by: Sergio Ahumada <sergio.ahumada@nokia.com> Reviewed-by: Toby Tomkins <toby.tomkins@nokia.com> Reviewed-by: Shane Kearns <shane.kearns@accenture.com>bb10
parent
9420a7da7a
commit
2149b650ea
|
|
@ -60,6 +60,10 @@
|
|||
#include <QtCore/qvarlengtharray.h>
|
||||
#include <QLibrary> // for loading the security lib for the CA store
|
||||
|
||||
#ifdef Q_OS_WIN
|
||||
Q_DECLARE_METATYPE(QSslCertificate);
|
||||
#endif
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
#if defined(Q_OS_MAC) && !defined(Q_OS_IOS)
|
||||
|
|
@ -1340,8 +1344,6 @@ void QSslSocketBackendPrivate::_q_caRootLoaded(QSslCertificate cert, QSslCertifi
|
|||
continueHandshake();
|
||||
}
|
||||
|
||||
Q_DECLARE_METATYPE(QSslCertificate);
|
||||
|
||||
class QWindowsCaRootFetcherThread : public QThread
|
||||
{
|
||||
public:
|
||||
|
|
|
|||
|
|
@ -64,22 +64,26 @@
|
|||
|
||||
#include <private/qringbuffer_p.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
#if defined(Q_OS_MAC)
|
||||
#include <Security/SecCertificate.h>
|
||||
#include <CoreFoundation/CFArray.h>
|
||||
#ifndef Q_OS_IOS
|
||||
typedef OSStatus (*PtrSecCertificateGetData)(SecCertificateRef, CSSM_DATA_PTR);
|
||||
typedef OSStatus (*PtrSecTrustSettingsCopyCertificates)(int, CFArrayRef*);
|
||||
typedef OSStatus (*PtrSecTrustCopyAnchorCertificates)(CFArrayRef*);
|
||||
#endif
|
||||
#elif defined(Q_OS_WIN)
|
||||
#include <QtCore/qt_windows.h>
|
||||
#include <wincrypt.h>
|
||||
#ifndef HCRYPTPROV_LEGACY
|
||||
#define HCRYPTPROV_LEGACY HCRYPTPROV
|
||||
#endif
|
||||
#endif
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
#if defined(Q_OS_MAC) && !defined(Q_OS_IOS)
|
||||
typedef OSStatus (*PtrSecCertificateGetData)(SecCertificateRef, CSSM_DATA_PTR);
|
||||
typedef OSStatus (*PtrSecTrustSettingsCopyCertificates)(int, CFArrayRef*);
|
||||
typedef OSStatus (*PtrSecTrustCopyAnchorCertificates)(CFArrayRef*);
|
||||
#endif
|
||||
|
||||
#if defined(Q_OS_WIN)
|
||||
#if defined(Q_OS_WINCE)
|
||||
typedef HCERTSTORE (WINAPI *PtrCertOpenSystemStoreW)(LPCSTR, DWORD, HCRYPTPROV_LEGACY, DWORD, const void*);
|
||||
#else
|
||||
|
|
|
|||
Loading…
Reference in New Issue