Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/intern
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-05-31 13:14:02 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-05-31 13:14:42 +0300
commit2f78bd1d5220deb31f3db3dabb905d7dc4cf6ee3 (patch)
tree2487a3c79ad787b150bb301b0f9749ac4d52f568 /intern
parentaa5558177631b61308dd5dbfd2183426b647cac1 (diff)
Fix build error on FreeBSD
Don't rely on indirect header includes.
Diffstat (limited to 'intern')
-rw-r--r--intern/ghost/intern/GHOST_DropTargetX11.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/intern/ghost/intern/GHOST_DropTargetX11.cpp b/intern/ghost/intern/GHOST_DropTargetX11.cpp
index 3d58ed9236e..816d9c254ee 100644
--- a/intern/ghost/intern/GHOST_DropTargetX11.cpp
+++ b/intern/ghost/intern/GHOST_DropTargetX11.cpp
@@ -24,8 +24,10 @@
#include "GHOST_DropTargetX11.h"
#include "GHOST_Debug.h"
-#include <ctype.h>
#include <assert.h>
+#include <ctype.h>
+#include <stdio.h>
+#include <string.h>
bool GHOST_DropTargetX11::m_xdndInitialized = false;
DndClass GHOST_DropTargetX11::m_dndClass;