forked from qt-creator/qt-creator
zeroconf: fix include paths for minGW
Task-number: QTCREATORBUG-7189 Change-Id: Ie0dfe044a5b79af1b320683d27698a9d89ab3ede Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
This commit is contained in:
@@ -766,7 +766,7 @@
|
||||
typedef uint32_t uint_fast32_t;
|
||||
typedef uint64_t uint_fast64_t;
|
||||
|
||||
#if( !defined( _MSC_VER ) || TARGET_OS_WINDOWS_CE )
|
||||
#if (( !defined( _MSC_VER ) || TARGET_OS_WINDOWS_CE ) && !defined( _WIN32 ) )
|
||||
typedef long int intptr_t;
|
||||
typedef unsigned long int uintptr_t;
|
||||
#endif
|
||||
|
@@ -29,7 +29,7 @@
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "dns_sd_types.h"
|
||||
#include "../dns_sd_types.h"
|
||||
|
||||
#if MDNS_BUILDINGSHAREDLIBRARY || MDNS_BUILDINGSTUBLIBRARY
|
||||
//#pragma export on
|
||||
@@ -49,7 +49,7 @@
|
||||
*********************************************************************************************/
|
||||
namespace ZeroConf { namespace embeddedLib {
|
||||
|
||||
#include "dns_sd_funct.h"
|
||||
#include "../dns_sd_funct.h"
|
||||
|
||||
#define mDNSIsDigit(X) ((X) >= '0' && (X) <= '9')
|
||||
|
||||
|
@@ -36,15 +36,15 @@
|
||||
#include "dnssd_ipc.h"
|
||||
|
||||
namespace ZeroConf { namespace embeddedLib {
|
||||
#include "dns_sd_funct.h"
|
||||
#include "../dns_sd_funct.h"
|
||||
static int gDaemonErr = kDNSServiceErr_NoError;
|
||||
}}
|
||||
|
||||
#if defined(_WIN32)
|
||||
|
||||
#define _SSIZE_T
|
||||
#include "embed/CommonServices.h"
|
||||
#include "embed/DebugServices.h"
|
||||
#include "CommonServices.h"
|
||||
#include "DebugServices.h"
|
||||
#include <winsock2.h>
|
||||
#include <ws2tcpip.h>
|
||||
#include <windows.h>
|
||||
|
@@ -29,7 +29,7 @@
|
||||
#ifndef DNSSD_IPC_H
|
||||
#define DNSSD_IPC_H
|
||||
|
||||
#include "dns_sd_types.h"
|
||||
#include "../dns_sd_types.h"
|
||||
|
||||
//
|
||||
// Common cross platform services
|
||||
|
Reference in New Issue
Block a user