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/imbuf')
-rw-r--r--source/blender/imbuf/IMB_imbuf.h5
-rw-r--r--source/blender/imbuf/IMB_imbuf_types.h5
-rw-r--r--source/blender/imbuf/intern/IMB_allocimbuf.h4
-rw-r--r--source/blender/imbuf/intern/IMB_amiga.h4
-rw-r--r--source/blender/imbuf/intern/IMB_bitplanes.h4
-rw-r--r--source/blender/imbuf/intern/IMB_bmp.h4
-rw-r--r--source/blender/imbuf/intern/IMB_cmap.h4
-rw-r--r--source/blender/imbuf/intern/IMB_divers.h4
-rw-r--r--source/blender/imbuf/intern/IMB_filter.h4
-rw-r--r--source/blender/imbuf/intern/IMB_ham.h4
-rw-r--r--source/blender/imbuf/intern/IMB_hamx.h4
-rw-r--r--source/blender/imbuf/intern/IMB_iff.h4
-rw-r--r--source/blender/imbuf/intern/IMB_iris.h4
-rw-r--r--source/blender/imbuf/intern/IMB_jpeg.h4
-rw-r--r--source/blender/imbuf/intern/IMB_png.h4
-rw-r--r--source/blender/imbuf/intern/IMB_targa.h4
-rw-r--r--source/blender/imbuf/intern/imbuf.h4
-rw-r--r--source/blender/imbuf/intern/imbuf_patch.h4
-rw-r--r--source/blender/imbuf/intern/matrix.h4
19 files changed, 78 insertions, 0 deletions
diff --git a/source/blender/imbuf/IMB_imbuf.h b/source/blender/imbuf/IMB_imbuf.h
index 977abe04ce0..ea293e66289 100644
--- a/source/blender/imbuf/IMB_imbuf.h
+++ b/source/blender/imbuf/IMB_imbuf.h
@@ -93,6 +93,11 @@
*
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#ifndef IMB_IMBUF_H
#define IMB_IMBUF_H
diff --git a/source/blender/imbuf/IMB_imbuf_types.h b/source/blender/imbuf/IMB_imbuf_types.h
index f674ffaab94..2b89909c887 100644
--- a/source/blender/imbuf/IMB_imbuf_types.h
+++ b/source/blender/imbuf/IMB_imbuf_types.h
@@ -41,6 +41,11 @@
*
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#ifndef IMB_IMBUF_TYPES_H
#define IMB_IMBUF_TYPES_H
diff --git a/source/blender/imbuf/intern/IMB_allocimbuf.h b/source/blender/imbuf/intern/IMB_allocimbuf.h
index 21dc59a127c..b5daef3f72b 100644
--- a/source/blender/imbuf/intern/IMB_allocimbuf.h
+++ b/source/blender/imbuf/intern/IMB_allocimbuf.h
@@ -35,6 +35,10 @@
#ifndef IMB_ALLOCIMBUF_H
#define IMB_ALLOCIMBUF_H
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
struct ImBuf;
short imb_addrectImBuf(struct ImBuf * ibuf);
diff --git a/source/blender/imbuf/intern/IMB_amiga.h b/source/blender/imbuf/intern/IMB_amiga.h
index eca6b8fbac8..2b58204f384 100644
--- a/source/blender/imbuf/intern/IMB_amiga.h
+++ b/source/blender/imbuf/intern/IMB_amiga.h
@@ -35,6 +35,10 @@
#ifndef IMB_AMIGA_H
#define IMB_AMIGA_H
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
struct ImBuf;
struct ImBuf *imb_loadamiga(int *iffmem,int flags);
diff --git a/source/blender/imbuf/intern/IMB_bitplanes.h b/source/blender/imbuf/intern/IMB_bitplanes.h
index 77832e19177..cd0667e8730 100644
--- a/source/blender/imbuf/intern/IMB_bitplanes.h
+++ b/source/blender/imbuf/intern/IMB_bitplanes.h
@@ -35,6 +35,10 @@
#ifndef IMB_BITPLANES_H
#define IMB_BITPLANES_H
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
struct ImBuf;
void imb_bptolong(struct ImBuf *ibuf);
diff --git a/source/blender/imbuf/intern/IMB_bmp.h b/source/blender/imbuf/intern/IMB_bmp.h
index 112cfe932ce..5c5dc367e98 100644
--- a/source/blender/imbuf/intern/IMB_bmp.h
+++ b/source/blender/imbuf/intern/IMB_bmp.h
@@ -35,6 +35,10 @@
#ifndef IMB_BMP_H
#define IMB_BMP_H
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
struct ImBuf;
int imb_is_a_bmp(void *buf);
diff --git a/source/blender/imbuf/intern/IMB_cmap.h b/source/blender/imbuf/intern/IMB_cmap.h
index 23f5b9f4015..734bbd627e1 100644
--- a/source/blender/imbuf/intern/IMB_cmap.h
+++ b/source/blender/imbuf/intern/IMB_cmap.h
@@ -35,6 +35,10 @@
#ifndef IMB_CMAP_H
#define IMB_CMAP_H
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
struct ImBuf;
void imb_makecolarray(struct ImBuf *ibuf, unsigned char *mem, short nocols);
diff --git a/source/blender/imbuf/intern/IMB_divers.h b/source/blender/imbuf/intern/IMB_divers.h
index 196ecf3219b..bab752fb845 100644
--- a/source/blender/imbuf/intern/IMB_divers.h
+++ b/source/blender/imbuf/intern/IMB_divers.h
@@ -35,6 +35,10 @@
#ifndef IMB_DIVERS_H
#define IMB_DIVERS_H
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
struct ImBuf;
void imb_checkncols(struct ImBuf *ibuf);
diff --git a/source/blender/imbuf/intern/IMB_filter.h b/source/blender/imbuf/intern/IMB_filter.h
index 7091ee56aa2..23fec962cb8 100644
--- a/source/blender/imbuf/intern/IMB_filter.h
+++ b/source/blender/imbuf/intern/IMB_filter.h
@@ -35,6 +35,10 @@
#ifndef IMB_FILTER_H
#define IMB_FILTER_H
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
struct ImBuf;
void imb_filterx(struct ImBuf *ibuf);
diff --git a/source/blender/imbuf/intern/IMB_ham.h b/source/blender/imbuf/intern/IMB_ham.h
index b1b1e7b0c97..d3b4f783b39 100644
--- a/source/blender/imbuf/intern/IMB_ham.h
+++ b/source/blender/imbuf/intern/IMB_ham.h
@@ -35,6 +35,10 @@
#ifndef IMB_HAM_H
#define IMB_HAM_H
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
struct ImBuf;
short imb_converttoham(struct ImBuf *ibuf);
diff --git a/source/blender/imbuf/intern/IMB_hamx.h b/source/blender/imbuf/intern/IMB_hamx.h
index 8b7f489964e..934cbb7d8ba 100644
--- a/source/blender/imbuf/intern/IMB_hamx.h
+++ b/source/blender/imbuf/intern/IMB_hamx.h
@@ -35,6 +35,10 @@
#ifndef IMB_HAMX_H
#define IMB_HAMX_H
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
struct ImBuf;
struct ImBuf *imb_loadanim(int *iffmem, int flags);
diff --git a/source/blender/imbuf/intern/IMB_iff.h b/source/blender/imbuf/intern/IMB_iff.h
index 1dbb193d098..e59bb21369e 100644
--- a/source/blender/imbuf/intern/IMB_iff.h
+++ b/source/blender/imbuf/intern/IMB_iff.h
@@ -35,6 +35,10 @@
#ifndef IMB_IFF_H
#define IMB_IFF_H
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
struct ImBuf;
unsigned short imb_start_iff(struct ImBuf *ibuf, int file);
diff --git a/source/blender/imbuf/intern/IMB_iris.h b/source/blender/imbuf/intern/IMB_iris.h
index 41457e1fadf..cd50dcef730 100644
--- a/source/blender/imbuf/intern/IMB_iris.h
+++ b/source/blender/imbuf/intern/IMB_iris.h
@@ -35,6 +35,10 @@
#ifndef IMB_IRIS_H
#define IMB_IRIS_H
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
struct ImBuf;
struct ImBuf *imb_loadiris(unsigned char *mem, int flags);
diff --git a/source/blender/imbuf/intern/IMB_jpeg.h b/source/blender/imbuf/intern/IMB_jpeg.h
index a673d965a4d..19afcf6ef59 100644
--- a/source/blender/imbuf/intern/IMB_jpeg.h
+++ b/source/blender/imbuf/intern/IMB_jpeg.h
@@ -35,6 +35,10 @@
#ifndef IMB_JPEG_H
#define IMB_JPEG_H
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
struct ImBuf;
struct jpeg_compress_struct;
diff --git a/source/blender/imbuf/intern/IMB_png.h b/source/blender/imbuf/intern/IMB_png.h
index f876b8204d8..13726599450 100644
--- a/source/blender/imbuf/intern/IMB_png.h
+++ b/source/blender/imbuf/intern/IMB_png.h
@@ -35,6 +35,10 @@
#ifndef IMB_PNG_H
#define IMB_PNG_H
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
struct ImBuf;
int imb_is_a_png(void *buf);
diff --git a/source/blender/imbuf/intern/IMB_targa.h b/source/blender/imbuf/intern/IMB_targa.h
index f1fdf5f4daa..3d7f39d698e 100644
--- a/source/blender/imbuf/intern/IMB_targa.h
+++ b/source/blender/imbuf/intern/IMB_targa.h
@@ -35,6 +35,10 @@
#ifndef IMB_TARGA_H
#define IMB_TARGA_H
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
struct ImBuf;
int imb_is_a_targa(void *buf);
diff --git a/source/blender/imbuf/intern/imbuf.h b/source/blender/imbuf/intern/imbuf.h
index 63679be7f31..575ba463ffd 100644
--- a/source/blender/imbuf/intern/imbuf.h
+++ b/source/blender/imbuf/intern/imbuf.h
@@ -41,6 +41,10 @@
#include <sys/types.h>
#include <stdio.h>
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#ifndef WIN32
#include <unistd.h>
#endif
diff --git a/source/blender/imbuf/intern/imbuf_patch.h b/source/blender/imbuf/intern/imbuf_patch.h
index e8d8faa14a1..11c556b2ced 100644
--- a/source/blender/imbuf/intern/imbuf_patch.h
+++ b/source/blender/imbuf/intern/imbuf_patch.h
@@ -38,6 +38,10 @@
#ifndef IMBUF_PATCH_H
#define IMBUF_PATCH_H
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
/* most of imbuf uses this aloc, and it will disappear soon
* (hopefully) (25-10-2001 nzc) */
#include "MEM_guardedalloc.h"
diff --git a/source/blender/imbuf/intern/matrix.h b/source/blender/imbuf/intern/matrix.h
index 20127e806a9..11bb6cb3edf 100644
--- a/source/blender/imbuf/intern/matrix.h
+++ b/source/blender/imbuf/intern/matrix.h
@@ -32,6 +32,10 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
/* rgbyuv is identiek aan rgbbeta */
float rgbyuv[4][4]={ /* afgeleid uit videoframer = Y Cr Cb in kopieen van Francois*/