From 5e9c8c4bca5ff117a83ae3a37a67cf5eda0a1139 Mon Sep 17 00:00:00 2001 From: Kyle Evans Date: Tue, 1 May 2018 23:38:48 -0500 Subject: [PATCH] Set BSD/FREEBSD for DragonflyBSD DragonflyBSD was a fork of FreeBSD once upon a time. As far as FreeRDP is concerned, DragonflyBSD is FreeBSD-compatible and DragonflyBSD in-fact uses the FreeBSD ports tree (+ patches) --- CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index a3f2515..5875caf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -198,6 +198,11 @@ if(${CMAKE_SYSTEM_NAME} MATCHES "BSD") endif() endif() +if(${CMAKE_SYSTEM_NAME} MATCHES "DragonFly") + set(BSD TRUE) + set(FREEBSD TRUE) +endif() + # Configure MSVC Runtime if(MSVC) include(MSVCRuntime) -- 2.7.4