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/writestreamglue
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/writestreamglue')
-rw-r--r--source/blender/writestreamglue/intern/BLO_dumpFromMemory.c7
-rw-r--r--source/blender/writestreamglue/intern/BLO_getPubKey.c4
-rw-r--r--source/blender/writestreamglue/intern/BLO_streamGlueControl.c4
-rw-r--r--source/blender/writestreamglue/intern/BLO_writeStreamGlue.c8
-rw-r--r--source/blender/writestreamglue/stub/BLO_getPubKeySTUB.c4
-rw-r--r--source/blender/writestreamglue/stub/BLO_keyStoreSTUB.c4
-rw-r--r--source/blender/writestreamglue/stub/BLO_streamGlueControlSTUB.c6
-rw-r--r--source/blender/writestreamglue/stub/BLO_writeStreamGlueSTUB.c4
-rw-r--r--source/blender/writestreamglue/test/readwritetest/readwritetest.c4
-rw-r--r--source/blender/writestreamglue/test/typetest/typetest.c4
10 files changed, 40 insertions, 9 deletions
diff --git a/source/blender/writestreamglue/intern/BLO_dumpFromMemory.c b/source/blender/writestreamglue/intern/BLO_dumpFromMemory.c
index f132840572a..52f8ac2e789 100644
--- a/source/blender/writestreamglue/intern/BLO_dumpFromMemory.c
+++ b/source/blender/writestreamglue/intern/BLO_dumpFromMemory.c
@@ -35,13 +35,14 @@
#include <stdlib.h>
#include "GEN_messaging.h"
-
#include "zlib.h"
-
#include "BLO_writeStreamGlue.h"
-
#include "BLO_dumpFromMemory.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
int
BLO_dumpFromMemory(
unsigned char *data,
diff --git a/source/blender/writestreamglue/intern/BLO_getPubKey.c b/source/blender/writestreamglue/intern/BLO_getPubKey.c
index d691c0ae2be..d115d8a6ac2 100644
--- a/source/blender/writestreamglue/intern/BLO_getPubKey.c
+++ b/source/blender/writestreamglue/intern/BLO_getPubKey.c
@@ -36,6 +36,10 @@
#include "BLO_keyStore.h"
#include "BLO_getPubKey.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
int
getPubKey(byte *dataStreamPubKey,
int dataStreamPubKeyLen,
diff --git a/source/blender/writestreamglue/intern/BLO_streamGlueControl.c b/source/blender/writestreamglue/intern/BLO_streamGlueControl.c
index fc12738fa35..2d4d408d848 100644
--- a/source/blender/writestreamglue/intern/BLO_streamGlueControl.c
+++ b/source/blender/writestreamglue/intern/BLO_streamGlueControl.c
@@ -37,6 +37,10 @@
#include "BLO_writeStreamGlue.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
struct streamGlueControlStruct *
streamGlueControlConstructor(
void)
diff --git a/source/blender/writestreamglue/intern/BLO_writeStreamGlue.c b/source/blender/writestreamglue/intern/BLO_writeStreamGlue.c
index 934cbb91004..4eb32efe09a 100644
--- a/source/blender/writestreamglue/intern/BLO_writeStreamGlue.c
+++ b/source/blender/writestreamglue/intern/BLO_writeStreamGlue.c
@@ -36,18 +36,18 @@
#include <assert.h>
#include "zlib.h"
-
#include "GEN_messaging.h"
-
#include "BLO_writeStreamGlue.h"
-
#include "BLO_dumpFromMemory.h"
-
#include "BLO_writeblenfile.h"
#include "BLO_deflate.h"
#include "BLO_encrypt.h"
#include "BLO_sign.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
/**
* streamGlueWrite does not really stream; it buffers all data it gets
* because it needs everything to create the header, which is in front
diff --git a/source/blender/writestreamglue/stub/BLO_getPubKeySTUB.c b/source/blender/writestreamglue/stub/BLO_getPubKeySTUB.c
index 86cdfdacd69..f11dfc1bb24 100644
--- a/source/blender/writestreamglue/stub/BLO_getPubKeySTUB.c
+++ b/source/blender/writestreamglue/stub/BLO_getPubKeySTUB.c
@@ -35,6 +35,10 @@
#include "blenkey.h" // for byte ... duh this needs change !
#include "BLO_getPubKey.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
int
getPubKey(byte *dataStreamPubKey,
int dataStreamPubKeyLen,
diff --git a/source/blender/writestreamglue/stub/BLO_keyStoreSTUB.c b/source/blender/writestreamglue/stub/BLO_keyStoreSTUB.c
index 2cf118d8e5e..8c73281356c 100644
--- a/source/blender/writestreamglue/stub/BLO_keyStoreSTUB.c
+++ b/source/blender/writestreamglue/stub/BLO_keyStoreSTUB.c
@@ -35,6 +35,10 @@
#include "BLO_keyStore.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
void
keyStoreConstructor(
UserStruct *keyUserStruct,
diff --git a/source/blender/writestreamglue/stub/BLO_streamGlueControlSTUB.c b/source/blender/writestreamglue/stub/BLO_streamGlueControlSTUB.c
index 5c4b5794e76..8f4165c8c64 100644
--- a/source/blender/writestreamglue/stub/BLO_streamGlueControlSTUB.c
+++ b/source/blender/writestreamglue/stub/BLO_streamGlueControlSTUB.c
@@ -32,11 +32,13 @@
*/
#include <stdio.h>
-
#include "GEN_messaging.h"
-
#include "BLO_writeStreamGlue.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
struct streamGlueControlStruct *
streamGlueControlConstructor(
void)
diff --git a/source/blender/writestreamglue/stub/BLO_writeStreamGlueSTUB.c b/source/blender/writestreamglue/stub/BLO_writeStreamGlueSTUB.c
index 9b077efbd59..07a7c48e6b6 100644
--- a/source/blender/writestreamglue/stub/BLO_writeStreamGlueSTUB.c
+++ b/source/blender/writestreamglue/stub/BLO_writeStreamGlueSTUB.c
@@ -36,6 +36,10 @@
#include "GEN_messaging.h"
#include "BLO_writeStreamGlue.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
int
writeStreamGlue(
struct streamGlueControlStruct *streamGlueControl,
diff --git a/source/blender/writestreamglue/test/readwritetest/readwritetest.c b/source/blender/writestreamglue/test/readwritetest/readwritetest.c
index 9006fe3345a..d0a8ddef50e 100644
--- a/source/blender/writestreamglue/test/readwritetest/readwritetest.c
+++ b/source/blender/writestreamglue/test/readwritetest/readwritetest.c
@@ -48,6 +48,10 @@
#include "BLO_writeStreamGlue.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#ifndef _WIN32
#define O_BINARY 0
#endif
diff --git a/source/blender/writestreamglue/test/typetest/typetest.c b/source/blender/writestreamglue/test/typetest/typetest.c
index 447abd9d792..3bab75340c8 100644
--- a/source/blender/writestreamglue/test/typetest/typetest.c
+++ b/source/blender/writestreamglue/test/typetest/typetest.c
@@ -35,6 +35,10 @@
#include <stdio.h>
#include <stdlib.h>
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
int main (int argc, char *argv[])
{
int verbose = 0;