From a1b9405e2e2a67d9d4f0039ffb5c654c5c3e6ad2 Mon Sep 17 00:00:00 2001 From: Olivier Goffart Date: Wed, 1 Oct 2014 12:33:54 +0200 Subject: [PATCH] Windows has not been ported back to QLocalSocket --- src/mirall/socketapi.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/mirall/socketapi.h b/src/mirall/socketapi.h index 700637383b..4ea4a9ae9f 100644 --- a/src/mirall/socketapi.h +++ b/src/mirall/socketapi.h @@ -36,6 +36,10 @@ namespace Mirall { //Define this to use the old school TCP API. Maybe we should offer both APIs // and have the old TCP one be enableable via command line switch? //#define SOCKETAPI_TCP +#if defined(Q_OS_WIN) +// Windows plugin has not been ported +#define SOCKETAPI_TCP +#endif #ifdef SOCKETAPI_TCP typedef QTcpSocket SocketType;