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:
Diffstat (limited to 'source/blender/blenlib/intern')
-rw-r--r--source/blender/blenlib/intern/BLI_callbacks.h4
-rw-r--r--source/blender/blenlib/intern/BLI_fileops.h4
-rw-r--r--source/blender/blenlib/intern/BLI_scanfill.h3
-rw-r--r--source/blender/blenlib/intern/BLI_storage.h4
-rw-r--r--source/blender/blenlib/intern/BLI_util.h4
5 files changed, 19 insertions, 0 deletions
diff --git a/source/blender/blenlib/intern/BLI_callbacks.h b/source/blender/blenlib/intern/BLI_callbacks.h
index a2c7ccd4bd8..daf2c081549 100644
--- a/source/blender/blenlib/intern/BLI_callbacks.h
+++ b/source/blender/blenlib/intern/BLI_callbacks.h
@@ -37,6 +37,10 @@
#ifndef BLI_CALLBACKS_H
#define BLI_CALLBACKS_H
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
// This is blenlib internal only
void callLocalErrorCallBack(char* msg);
int callLocalInterruptCallBack(void);
diff --git a/source/blender/blenlib/intern/BLI_fileops.h b/source/blender/blenlib/intern/BLI_fileops.h
index 622706a32e9..520ece11ff8 100644
--- a/source/blender/blenlib/intern/BLI_fileops.h
+++ b/source/blender/blenlib/intern/BLI_fileops.h
@@ -39,6 +39,10 @@
#ifndef BLI_FILEOPS_H
#define BLI_FILEOPS_H
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
char *first_slash(char *string);
/* only for the sane unix world: direct calls to system functions :( */
diff --git a/source/blender/blenlib/intern/BLI_scanfill.h b/source/blender/blenlib/intern/BLI_scanfill.h
index 54b11a34b58..d5156b5b6e8 100644
--- a/source/blender/blenlib/intern/BLI_scanfill.h
+++ b/source/blender/blenlib/intern/BLI_scanfill.h
@@ -37,6 +37,9 @@
#ifndef BLI_SCANFILL_H
#define BLI_SCANFILL_H
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#endif
diff --git a/source/blender/blenlib/intern/BLI_storage.h b/source/blender/blenlib/intern/BLI_storage.h
index 5e9c377c410..268f5f4b1fa 100644
--- a/source/blender/blenlib/intern/BLI_storage.h
+++ b/source/blender/blenlib/intern/BLI_storage.h
@@ -31,6 +31,10 @@
#ifndef BLI_STORAGE_H
#define BLI_STORAGE_H
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include "BLI_storage_types.h"
void BLI_adddirstrings(void);
diff --git a/source/blender/blenlib/intern/BLI_util.h b/source/blender/blenlib/intern/BLI_util.h
index 2fa27428293..96cc6782cac 100644
--- a/source/blender/blenlib/intern/BLI_util.h
+++ b/source/blender/blenlib/intern/BLI_util.h
@@ -36,6 +36,10 @@
#ifndef BLI_UTIL_H
#define BLI_UTIL_H
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#define mallocstructN(x,y,name) (x*)MEM_mallocN((y)* sizeof(x),name)
#define callocstructN(x,y,name) (x*)MEM_callocN((y)* sizeof(x),name)