Enable encryption for Windows

This commit is contained in:
Mohamed Oulmahdi 2022-03-11 10:06:07 +01:00
parent 944ec48415
commit 9e81945301
3 changed files with 3 additions and 3 deletions

View File

@ -36,7 +36,7 @@ set(FDBRPC_SRCS
TraceFileIO.cpp
TSSComparison.h)
if(WITH_TLS AND NOT WIN32)
if(WITH_TLS)
set(FDBRPC_SRCS
${FDBRPC_SRCS}
AsyncFileEncrypted.actor.cpp)

View File

@ -100,7 +100,7 @@ set(FLOW_SRCS
xxhash.c
xxhash.h)
if(WITH_TLS AND NOT WIN32)
if(WITH_TLS)
set(FLOW_SRCS
${FLOW_SRCS}
StreamCipher.cpp)

View File

@ -20,7 +20,7 @@
#pragma once
#if (!defined(TLS_DISABLED) && !defined(_WIN32))
#if (!defined(TLS_DISABLED))
#define ENCRYPTION_ENABLED 1
#else
#define ENCRYPTION_ENABLED 0