mirror of https://github.com/FreeRDP/FreeRDP
libfreerdp-core: fix windows build
This commit is contained in:
parent
52353e2427
commit
6450ecd67f
|
@ -25,9 +25,6 @@ include_directories(${ZLIB_INCLUDE_DIRS})
|
|||
|
||||
set(${MODULE_PREFIX}_GATEWAY_DIR "gateway")
|
||||
|
||||
include_directories(".")
|
||||
include_directories(${${MODULE_PREFIX}_GATEWAY_DIR})
|
||||
|
||||
set(${MODULE_PREFIX}_GATEWAY_SRCS
|
||||
${${MODULE_PREFIX}_GATEWAY_DIR}/tsg.c
|
||||
${${MODULE_PREFIX}_GATEWAY_DIR}/tsg.h
|
||||
|
|
|
@ -25,10 +25,11 @@
|
|||
typedef struct rdp_ntlm rdpNtlm;
|
||||
typedef struct rdp_ntlm_http rdpNtlmHttp;
|
||||
|
||||
#include "tcp.h"
|
||||
#include "../tcp.h"
|
||||
#include "../transport.h"
|
||||
|
||||
#include "rts.h"
|
||||
#include "http.h"
|
||||
#include "transport.h"
|
||||
|
||||
#include <time.h>
|
||||
#include <winpr/sspi.h>
|
||||
|
|
|
@ -60,11 +60,12 @@ typedef struct _RPC_PDU
|
|||
DWORD CallId;
|
||||
} RPC_PDU, *PRPC_PDU;
|
||||
|
||||
#include "tcp.h"
|
||||
#include "../tcp.h"
|
||||
#include "../transport.h"
|
||||
|
||||
#include "rts.h"
|
||||
#include "http.h"
|
||||
#include "ntlm.h"
|
||||
#include "transport.h"
|
||||
|
||||
#include <time.h>
|
||||
|
||||
|
|
|
@ -35,6 +35,7 @@ typedef struct rdp_tsg rdpTsg;
|
|||
#include <time.h>
|
||||
#include <freerdp/types.h>
|
||||
#include <freerdp/settings.h>
|
||||
|
||||
#include <freerdp/utils/stream.h>
|
||||
#include <freerdp/utils/debug.h>
|
||||
|
||||
|
|
|
@ -85,7 +85,7 @@
|
|||
#endif
|
||||
|
||||
#ifdef WITH_NATIVE_SSPI
|
||||
#define NLA_PKG_NAME NEGOSSP_NAME
|
||||
#define NLA_PKG_NAME NTLMSP_NAME
|
||||
#else
|
||||
#define NLA_PKG_NAME NTLMSP_NAME
|
||||
#endif
|
||||
|
|
|
@ -31,9 +31,10 @@ typedef enum
|
|||
typedef struct rdp_transport rdpTransport;
|
||||
|
||||
#include "tcp.h"
|
||||
#include "tsg.h"
|
||||
#include "nla.h"
|
||||
|
||||
#include "gateway/tsg.h"
|
||||
|
||||
#include <winpr/sspi.h>
|
||||
#include <freerdp/crypto/tls.h>
|
||||
|
||||
|
|
|
@ -22,8 +22,8 @@
|
|||
|
||||
#ifdef _WIN32
|
||||
|
||||
#include <winpr/rpc.h>
|
||||
#include <winpr/windows.h>
|
||||
#include <winpr/rpc.h>
|
||||
|
||||
#include <ntdsapi.h>
|
||||
|
||||
|
|
Loading…
Reference in New Issue