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:
authorCampbell Barton <ideasman42@gmail.com>2019-01-04 09:04:04 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-04 09:05:40 +0300
commit79d3b0b733315444baf0a387aa09eac358683161 (patch)
tree24fefe0cafee30cc50bb2c310809d44ebd311fe2 /intern
parent66c3eb36d274597b08930215bfc54094f1bcc14a (diff)
Haiku: build fix
D4130 by @miqlas
Diffstat (limited to 'intern')
-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 f64e7c19a5f..d8a11b068ce 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