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:
authorKent Mein <mein@cs.umn.edu>2002-11-25 15:02:15 +0300
committerKent Mein <mein@cs.umn.edu>2002-11-25 15:02:15 +0300
commitd0e346d544cd3abb0007a68137b31923020f7aeb (patch)
treeae0714cd24dd0de0d007d95917d952280f8bd575 /source/blender/deflate
parentb9a19f1ea702446cb176d3f621de331d5c2cc9da (diff)
updated .c files to include:
#ifdef HAVE_CONFIG_H #include <config.h> #endif Just need to finish cpp files now :) Kent -- mein@cs.umn.edu
Diffstat (limited to 'source/blender/deflate')
-rw-r--r--source/blender/deflate/intern/BLO_deflate.c4
-rw-r--r--source/blender/deflate/stub/BLO_deflateSTUB.c4
-rw-r--r--source/blender/deflate/test/stubbed/stubbed.c4
3 files changed, 12 insertions, 0 deletions
diff --git a/source/blender/deflate/intern/BLO_deflate.c b/source/blender/deflate/intern/BLO_deflate.c
index 407b4f77c3a..372a4d40163 100644
--- a/source/blender/deflate/intern/BLO_deflate.c
+++ b/source/blender/deflate/intern/BLO_deflate.c
@@ -42,6 +42,10 @@
#include "BLO_deflate.h"
#include "BLO_in_de_flateHeader.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
// TODO use other error function
static int CHECK_ERR(int err, char *msg);
diff --git a/source/blender/deflate/stub/BLO_deflateSTUB.c b/source/blender/deflate/stub/BLO_deflateSTUB.c
index cb6323dfd3e..fc0b038bc0a 100644
--- a/source/blender/deflate/stub/BLO_deflateSTUB.c
+++ b/source/blender/deflate/stub/BLO_deflateSTUB.c
@@ -37,6 +37,10 @@
#include "BLO_streamglue.h"
#include "BLO_deflate.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
int
BLO_deflate(
unsigned char *data,
diff --git a/source/blender/deflate/test/stubbed/stubbed.c b/source/blender/deflate/test/stubbed/stubbed.c
index 9984676e9f6..9f1d03e780e 100644
--- a/source/blender/deflate/test/stubbed/stubbed.c
+++ b/source/blender/deflate/test/stubbed/stubbed.c
@@ -55,6 +55,10 @@
#include "BLO_deflate.h"
#include "BLO_writeStreamGlue.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
struct streamGlueControlStruct *Global_streamGlueControl;
void printStreamGlueHeader(struct streamGlueHeaderStruct *s)