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/decrypt
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/decrypt')
-rw-r--r--source/blender/decrypt/intern/BLO_decrypt.c4
-rw-r--r--source/blender/decrypt/stub/BLO_decryptSTUB.c4
2 files changed, 8 insertions, 0 deletions
diff --git a/source/blender/decrypt/intern/BLO_decrypt.c b/source/blender/decrypt/intern/BLO_decrypt.c
index 4d2eefd9631..9d3fd6fb63a 100644
--- a/source/blender/decrypt/intern/BLO_decrypt.c
+++ b/source/blender/decrypt/intern/BLO_decrypt.c
@@ -48,6 +48,10 @@
#include "BLO_decrypt.h"
#include "BLO_en_de_cryptHeader.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
struct decryptStructType {
struct readStreamGlueStruct *streamGlue;
unsigned int streamDone;
diff --git a/source/blender/decrypt/stub/BLO_decryptSTUB.c b/source/blender/decrypt/stub/BLO_decryptSTUB.c
index 62d78bfd983..e11aafc9ca7 100644
--- a/source/blender/decrypt/stub/BLO_decryptSTUB.c
+++ b/source/blender/decrypt/stub/BLO_decryptSTUB.c
@@ -38,6 +38,10 @@
#include "BLO_readStreamErrors.h"
#include "BLO_decrypt.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
BLO_decryptStructHandle
BLO_decrypt_begin(
void *endControl)