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
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-01-04 09:04:04 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-04 09:04:07 +0300
commitf489db1c6b699aa479a145e28e24b1978bcf7ef6 (patch)
treeeb574ddf2be50e8089113fc48ed33e45aad315e5 /intern/clog
parentc3e454b8e0808c8615cd58d86547e63642cde91d (diff)
Haiku: build fix
D4130 by @miqlas
Diffstat (limited to 'intern/clog')
-rw-r--r--intern/clog/clog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/clog/clog.c b/intern/clog/clog.c
index 7ebd3fba425..6882d8e89de 100644
--- a/intern/clog/clog.c
+++ b/intern/clog/clog.c
@@ -29,7 +29,7 @@
#include <assert.h>
/* For 'isatty' to check for color. */
-#if defined(__unix__) || defined(__APPLE__)
+#if defined(__unix__) || defined(__APPLE__) || defined(__HAIKU__)
# include <unistd.h>
#endif