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
path: root/intern
diff options
context:
space:
mode:
authorKent Mein <mein@cs.umn.edu>2002-11-25 14:16:17 +0300
committerKent Mein <mein@cs.umn.edu>2002-11-25 14:16:17 +0300
commitb9a19f1ea702446cb176d3f621de331d5c2cc9da (patch)
tree9e2e0d1265ef8a2ad9e7719b1881d653b088cd5c /intern
parent3f2f1571e5b1839c88f9facfe6834ec19f6e533a (diff)
Did all of the .h's in source
(adding) #ifdef HAVE_CONFIG_H #include <config.h> #endif also the Makefile.in's were from previous patch adding the system depend stuff to configure.ac Kent -- mein@cs.umn.edu
Diffstat (limited to 'intern')
-rw-r--r--intern/SoundSystem/SND_C-api.h4
-rw-r--r--intern/SoundSystem/SND_CDObject.h4
-rw-r--r--intern/SoundSystem/SND_DependKludge.h3
-rw-r--r--intern/SoundSystem/SND_DeviceManager.h4
-rw-r--r--intern/SoundSystem/SND_IAudioDevice.h3
-rw-r--r--intern/SoundSystem/SND_Object.h4
-rw-r--r--intern/SoundSystem/SND_Scene.h4
-rw-r--r--intern/SoundSystem/SND_SoundListener.h4
-rw-r--r--intern/SoundSystem/SND_SoundObject.h3
-rw-r--r--intern/SoundSystem/SND_Utils.h4
-rw-r--r--intern/SoundSystem/SND_WaveCache.h4
-rw-r--r--intern/SoundSystem/SND_WaveSlot.h4
-rw-r--r--intern/SoundSystem/SoundDefines.h4
-rw-r--r--intern/SoundSystem/dummy/SND_DummyDevice.h4
-rw-r--r--intern/SoundSystem/fmod/SND_FmodDevice.h4
-rw-r--r--intern/SoundSystem/intern/SND_AudioDevice.h3
-rw-r--r--intern/SoundSystem/intern/SND_IdObject.h4
-rw-r--r--intern/SoundSystem/openal/SND_OpenALDevice.h4
18 files changed, 68 insertions, 0 deletions
diff --git a/intern/SoundSystem/SND_C-api.h b/intern/SoundSystem/SND_C-api.h
index 03470f7e998..123759f9063 100644
--- a/intern/SoundSystem/SND_C-api.h
+++ b/intern/SoundSystem/SND_C-api.h
@@ -32,6 +32,10 @@
#ifndef SND_BLENDER_H
#define SND_BLENDER_H
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#ifdef __cplusplus
extern "C" {
#endif
diff --git a/intern/SoundSystem/SND_CDObject.h b/intern/SoundSystem/SND_CDObject.h
index 5af2005d34a..2ba03ebb466 100644
--- a/intern/SoundSystem/SND_CDObject.h
+++ b/intern/SoundSystem/SND_CDObject.h
@@ -39,6 +39,10 @@
#include "SND_Object.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
class SND_CDObject : public SND_Object
{
private:
diff --git a/intern/SoundSystem/SND_DependKludge.h b/intern/SoundSystem/SND_DependKludge.h
index 545f7f45b9a..05ab4685a75 100644
--- a/intern/SoundSystem/SND_DependKludge.h
+++ b/intern/SoundSystem/SND_DependKludge.h
@@ -34,6 +34,9 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#if defined (_WIN32)
#define USE_FMOD
diff --git a/intern/SoundSystem/SND_DeviceManager.h b/intern/SoundSystem/SND_DeviceManager.h
index acb28fe3bf6..a331d1e47e3 100644
--- a/intern/SoundSystem/SND_DeviceManager.h
+++ b/intern/SoundSystem/SND_DeviceManager.h
@@ -39,6 +39,10 @@
#include "SND_IAudioDevice.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
class SND_DeviceManager
{
public :
diff --git a/intern/SoundSystem/SND_IAudioDevice.h b/intern/SoundSystem/SND_IAudioDevice.h
index 11754ed8d55..4c73e585b9d 100644
--- a/intern/SoundSystem/SND_IAudioDevice.h
+++ b/intern/SoundSystem/SND_IAudioDevice.h
@@ -38,6 +38,9 @@
#include "SND_WaveSlot.h"
#include "MT_Matrix3x3.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
class SND_IAudioDevice
{
diff --git a/intern/SoundSystem/SND_Object.h b/intern/SoundSystem/SND_Object.h
index b67ae3ee396..7a5e118fe47 100644
--- a/intern/SoundSystem/SND_Object.h
+++ b/intern/SoundSystem/SND_Object.h
@@ -41,6 +41,10 @@
#include "MT_Matrix3x3.h"
#include "SoundDefines.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
/**
* SND_Object is an interface class for soundobjects, listeners and other
* kinds of sound related thingies.
diff --git a/intern/SoundSystem/SND_Scene.h b/intern/SoundSystem/SND_Scene.h
index 49cb40de714..cc835e6b0c7 100644
--- a/intern/SoundSystem/SND_Scene.h
+++ b/intern/SoundSystem/SND_Scene.h
@@ -34,6 +34,10 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#ifdef WIN32
#pragma warning (disable:4786) // get rid of stupid stl-visual compiler debug warning
#endif //WIN32
diff --git a/intern/SoundSystem/SND_SoundListener.h b/intern/SoundSystem/SND_SoundListener.h
index 4b51758252e..0349ad2b176 100644
--- a/intern/SoundSystem/SND_SoundListener.h
+++ b/intern/SoundSystem/SND_SoundListener.h
@@ -39,6 +39,10 @@
#include "SND_Object.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
class SND_SoundListener : public SND_Object
{
diff --git a/intern/SoundSystem/SND_SoundObject.h b/intern/SoundSystem/SND_SoundObject.h
index 6d827090d33..ac8d7b87c7b 100644
--- a/intern/SoundSystem/SND_SoundObject.h
+++ b/intern/SoundSystem/SND_SoundObject.h
@@ -40,6 +40,9 @@
#include "SND_Object.h"
#include "STR_String.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
/**
* SND_SoundObject is a class for api independent sounddata storage conected to an actuator
diff --git a/intern/SoundSystem/SND_Utils.h b/intern/SoundSystem/SND_Utils.h
index de36065c48f..6b2cc2b36c1 100644
--- a/intern/SoundSystem/SND_Utils.h
+++ b/intern/SoundSystem/SND_Utils.h
@@ -34,6 +34,10 @@
#include "SND_WaveSlot.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#ifdef __cplusplus
extern "C"
{
diff --git a/intern/SoundSystem/SND_WaveCache.h b/intern/SoundSystem/SND_WaveCache.h
index 1a6445be966..fed2bdb171a 100644
--- a/intern/SoundSystem/SND_WaveCache.h
+++ b/intern/SoundSystem/SND_WaveCache.h
@@ -34,6 +34,10 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#ifdef WIN32
#pragma warning (disable:4786) // get rid of stupid stl-visual compiler debug warning
#endif //WIN32
diff --git a/intern/SoundSystem/SND_WaveSlot.h b/intern/SoundSystem/SND_WaveSlot.h
index bc92829d3d3..2f3ce8e092b 100644
--- a/intern/SoundSystem/SND_WaveSlot.h
+++ b/intern/SoundSystem/SND_WaveSlot.h
@@ -39,6 +39,10 @@
#include "STR_String.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
class SND_WaveSlot
{
STR_String m_samplename;
diff --git a/intern/SoundSystem/SoundDefines.h b/intern/SoundSystem/SoundDefines.h
index f7a3a3c6619..d85db5ca500 100644
--- a/intern/SoundSystem/SoundDefines.h
+++ b/intern/SoundSystem/SoundDefines.h
@@ -37,6 +37,10 @@
#ifndef __SOUNDDEFINES_H
#define __SOUNDDEFINES_H
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
/* the types of devices */
enum
{
diff --git a/intern/SoundSystem/dummy/SND_DummyDevice.h b/intern/SoundSystem/dummy/SND_DummyDevice.h
index 6dff52d40d5..55b764beb3e 100644
--- a/intern/SoundSystem/dummy/SND_DummyDevice.h
+++ b/intern/SoundSystem/dummy/SND_DummyDevice.h
@@ -34,6 +34,10 @@
#include "SND_AudioDevice.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
class SND_DummyDevice : public SND_AudioDevice
{
public:
diff --git a/intern/SoundSystem/fmod/SND_FmodDevice.h b/intern/SoundSystem/fmod/SND_FmodDevice.h
index d44cfb9d937..e8327ba706f 100644
--- a/intern/SoundSystem/fmod/SND_FmodDevice.h
+++ b/intern/SoundSystem/fmod/SND_FmodDevice.h
@@ -36,6 +36,10 @@
#include "SND_AudioDevice.h"
#include "SoundDefines.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
class SND_FmodDevice : public SND_AudioDevice
{
public:
diff --git a/intern/SoundSystem/intern/SND_AudioDevice.h b/intern/SoundSystem/intern/SND_AudioDevice.h
index 13b26770bde..59d4262bb62 100644
--- a/intern/SoundSystem/intern/SND_AudioDevice.h
+++ b/intern/SoundSystem/intern/SND_AudioDevice.h
@@ -36,6 +36,9 @@
#include "SoundDefines.h"
#include "SND_IdObject.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
class SND_AudioDevice : public SND_IAudioDevice
{
diff --git a/intern/SoundSystem/intern/SND_IdObject.h b/intern/SoundSystem/intern/SND_IdObject.h
index fc9608b97bf..a32766481a5 100644
--- a/intern/SoundSystem/intern/SND_IdObject.h
+++ b/intern/SoundSystem/intern/SND_IdObject.h
@@ -41,6 +41,10 @@
#include "GEN_List.h"
#include "SoundDefines.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
class SND_IdObject : public GEN_Link
{
SND_SoundObject* m_soundObject;
diff --git a/intern/SoundSystem/openal/SND_OpenALDevice.h b/intern/SoundSystem/openal/SND_OpenALDevice.h
index ad7cbe68a19..6eb6a37a27c 100644
--- a/intern/SoundSystem/openal/SND_OpenALDevice.h
+++ b/intern/SoundSystem/openal/SND_OpenALDevice.h
@@ -35,6 +35,10 @@
#include "SND_AudioDevice.h"
#include "SoundDefines.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
class SND_OpenALDevice : public SND_AudioDevice
{
public: