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-12-27 16:11:01 +0300
committerKent Mein <mein@cs.umn.edu>2002-12-27 16:11:01 +0300
commitf1c4f705a19cc9ae306431be7a970712a40a2d9a (patch)
treea0dac6b28132e480266a7d7c2d5f2c75613ca1a1 /intern/SoundSystem
parentf78de74b202cefa087e9d6d1ac62a6d4f0bcf6eb (diff)
Removed the config.h thing from the .h's in the source dir.
So we should be all set now :) Kent -- mein@cs.umn.edu
Diffstat (limited to 'intern/SoundSystem')
-rw-r--r--intern/SoundSystem/SND_C-api.h4
-rw-r--r--intern/SoundSystem/SND_CDObject.h4
-rw-r--r--intern/SoundSystem/SND_DependKludge.h4
-rw-r--r--intern/SoundSystem/SND_DeviceManager.h4
-rw-r--r--intern/SoundSystem/SND_IAudioDevice.h4
-rw-r--r--intern/SoundSystem/SND_Object.h4
-rw-r--r--intern/SoundSystem/SND_Scene.h4
-rw-r--r--intern/SoundSystem/SND_SoundListener.h5
-rw-r--r--intern/SoundSystem/SND_SoundObject.h4
-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.h4
-rw-r--r--intern/SoundSystem/intern/SND_IdObject.h4
-rw-r--r--intern/SoundSystem/openal/SND_OpenALDevice.h4
18 files changed, 0 insertions, 73 deletions
diff --git a/intern/SoundSystem/SND_C-api.h b/intern/SoundSystem/SND_C-api.h
index 123759f9063..03470f7e998 100644
--- a/intern/SoundSystem/SND_C-api.h
+++ b/intern/SoundSystem/SND_C-api.h
@@ -32,10 +32,6 @@
#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 2ba03ebb466..5af2005d34a 100644
--- a/intern/SoundSystem/SND_CDObject.h
+++ b/intern/SoundSystem/SND_CDObject.h
@@ -39,10 +39,6 @@
#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 05ab4685a75..f9d91e65f3b 100644
--- a/intern/SoundSystem/SND_DependKludge.h
+++ b/intern/SoundSystem/SND_DependKludge.h
@@ -34,10 +34,6 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#if defined (_WIN32)
#define USE_FMOD
#elif defined (__linux__)
diff --git a/intern/SoundSystem/SND_DeviceManager.h b/intern/SoundSystem/SND_DeviceManager.h
index a331d1e47e3..acb28fe3bf6 100644
--- a/intern/SoundSystem/SND_DeviceManager.h
+++ b/intern/SoundSystem/SND_DeviceManager.h
@@ -39,10 +39,6 @@
#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 4c73e585b9d..73d52e13c05 100644
--- a/intern/SoundSystem/SND_IAudioDevice.h
+++ b/intern/SoundSystem/SND_IAudioDevice.h
@@ -38,10 +38,6 @@
#include "SND_WaveSlot.h"
#include "MT_Matrix3x3.h"
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
class SND_IAudioDevice
{
public:
diff --git a/intern/SoundSystem/SND_Object.h b/intern/SoundSystem/SND_Object.h
index 7a5e118fe47..b67ae3ee396 100644
--- a/intern/SoundSystem/SND_Object.h
+++ b/intern/SoundSystem/SND_Object.h
@@ -41,10 +41,6 @@
#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 cc835e6b0c7..49cb40de714 100644
--- a/intern/SoundSystem/SND_Scene.h
+++ b/intern/SoundSystem/SND_Scene.h
@@ -34,10 +34,6 @@
* ***** 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 0349ad2b176..ce8315e6375 100644
--- a/intern/SoundSystem/SND_SoundListener.h
+++ b/intern/SoundSystem/SND_SoundListener.h
@@ -39,11 +39,6 @@
#include "SND_Object.h"
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
-
class SND_SoundListener : public SND_Object
{
public:
diff --git a/intern/SoundSystem/SND_SoundObject.h b/intern/SoundSystem/SND_SoundObject.h
index ac8d7b87c7b..a6a98fba220 100644
--- a/intern/SoundSystem/SND_SoundObject.h
+++ b/intern/SoundSystem/SND_SoundObject.h
@@ -40,10 +40,6 @@
#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 6b2cc2b36c1..de36065c48f 100644
--- a/intern/SoundSystem/SND_Utils.h
+++ b/intern/SoundSystem/SND_Utils.h
@@ -34,10 +34,6 @@
#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 fed2bdb171a..1a6445be966 100644
--- a/intern/SoundSystem/SND_WaveCache.h
+++ b/intern/SoundSystem/SND_WaveCache.h
@@ -34,10 +34,6 @@
* ***** 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 2f3ce8e092b..bc92829d3d3 100644
--- a/intern/SoundSystem/SND_WaveSlot.h
+++ b/intern/SoundSystem/SND_WaveSlot.h
@@ -39,10 +39,6 @@
#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 d85db5ca500..f7a3a3c6619 100644
--- a/intern/SoundSystem/SoundDefines.h
+++ b/intern/SoundSystem/SoundDefines.h
@@ -37,10 +37,6 @@
#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 55b764beb3e..6dff52d40d5 100644
--- a/intern/SoundSystem/dummy/SND_DummyDevice.h
+++ b/intern/SoundSystem/dummy/SND_DummyDevice.h
@@ -34,10 +34,6 @@
#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 e8327ba706f..d44cfb9d937 100644
--- a/intern/SoundSystem/fmod/SND_FmodDevice.h
+++ b/intern/SoundSystem/fmod/SND_FmodDevice.h
@@ -36,10 +36,6 @@
#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 59d4262bb62..6edd52955ae 100644
--- a/intern/SoundSystem/intern/SND_AudioDevice.h
+++ b/intern/SoundSystem/intern/SND_AudioDevice.h
@@ -36,10 +36,6 @@
#include "SoundDefines.h"
#include "SND_IdObject.h"
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
class SND_AudioDevice : public SND_IAudioDevice
{
public:
diff --git a/intern/SoundSystem/intern/SND_IdObject.h b/intern/SoundSystem/intern/SND_IdObject.h
index a32766481a5..fc9608b97bf 100644
--- a/intern/SoundSystem/intern/SND_IdObject.h
+++ b/intern/SoundSystem/intern/SND_IdObject.h
@@ -41,10 +41,6 @@
#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 6eb6a37a27c..ad7cbe68a19 100644
--- a/intern/SoundSystem/openal/SND_OpenALDevice.h
+++ b/intern/SoundSystem/openal/SND_OpenALDevice.h
@@ -35,10 +35,6 @@
#include "SND_AudioDevice.h"
#include "SoundDefines.h"
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
class SND_OpenALDevice : public SND_AudioDevice
{
public: