rpcrt4: Use IPPROTO_TCP for SOL_TCP if SOL_TCP isn't defined.
Fixes compilation on *BSD systems.
This commit is contained in:
parent
9222ec3cce
commit
55a103ca5c
|
@ -74,6 +74,10 @@
|
||||||
#include "rpc_server.h"
|
#include "rpc_server.h"
|
||||||
#include "epm_towers.h"
|
#include "epm_towers.h"
|
||||||
|
|
||||||
|
#ifndef SOL_TCP
|
||||||
|
# define SOL_TCP IPPROTO_TCP
|
||||||
|
#endif
|
||||||
|
|
||||||
WINE_DEFAULT_DEBUG_CHANNEL(rpc);
|
WINE_DEFAULT_DEBUG_CHANNEL(rpc);
|
||||||
|
|
||||||
static CRITICAL_SECTION connection_pool_cs;
|
static CRITICAL_SECTION connection_pool_cs;
|
||||||
|
|
Loading…
Reference in New Issue