From adb4d4d48b2f600af18cbd9ef9158427a179db8a Mon Sep 17 00:00:00 2001 From: Michael Neumann Date: Thu, 24 Mar 2016 19:37:11 +0100 Subject: [PATCH] Fix compilation on DragonFly BSD --- imgui_draw.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imgui_draw.cpp b/imgui_draw.cpp index b82327c09..b2559c45d 100644 --- a/imgui_draw.cpp +++ b/imgui_draw.cpp @@ -18,7 +18,7 @@ #include "imgui_internal.h" #include // vsnprintf, sscanf, printf -#if !defined(alloca) && !defined(__FreeBSD__) +#if !defined(alloca) && !defined(__FreeBSD__) && !defined(__DragonFly__) #ifdef _WIN32 #include // alloca #else