From 6735fc791148222689c0c6b42d7ca5132fcd340c Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Wed, 16 Jan 2008 14:09:04 -0800 Subject: [PATCH] Add missing config.h includes --- Alc/alcConfig.c | 2 ++ Alc/alcRing.c | 4 ++-- Alc/alcThread.c | 2 ++ Alc/bs2b.c | 2 ++ Alc/dsound.c | 2 ++ Alc/oss.c | 2 ++ Alc/winmm.c | 2 ++ OpenAL32/OpenAL32.c | 2 ++ OpenAL32/alAuxEffectSlot.c | 5 ++--- OpenAL32/alBuffer.c | 2 ++ OpenAL32/alEffect.c | 5 ++--- OpenAL32/alError.c | 2 ++ OpenAL32/alExtension.c | 2 ++ OpenAL32/alFilter.c | 5 ++--- OpenAL32/alListener.c | 2 ++ OpenAL32/alSource.c | 2 ++ OpenAL32/alState.c | 2 ++ OpenAL32/alThunk.c | 2 ++ 18 files changed, 36 insertions(+), 11 deletions(-) diff --git a/Alc/alcConfig.c b/Alc/alcConfig.c index c4b2fab0..b6a28a6e 100644 --- a/Alc/alcConfig.c +++ b/Alc/alcConfig.c @@ -18,6 +18,8 @@ * Or go to http://www.gnu.org/copyleft/lgpl.html */ +#include "config.h" + #include #include #include diff --git a/Alc/alcRing.c b/Alc/alcRing.c index c2384a83..8ae7ab62 100644 --- a/Alc/alcRing.c +++ b/Alc/alcRing.c @@ -18,11 +18,11 @@ * Or go to http://www.gnu.org/copyleft/lgpl.html */ +#include "config.h" + #include #include -#include "config.h" - #include "alMain.h" diff --git a/Alc/alcThread.c b/Alc/alcThread.c index 6752f702..6e7237af 100644 --- a/Alc/alcThread.c +++ b/Alc/alcThread.c @@ -18,6 +18,8 @@ * Or go to http://www.gnu.org/copyleft/lgpl.html */ +#include "config.h" + #include #include "alMain.h" diff --git a/Alc/bs2b.c b/Alc/bs2b.c index 069ed614..f8e8f8ff 100644 --- a/Alc/bs2b.c +++ b/Alc/bs2b.c @@ -21,6 +21,8 @@ * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +#include "config.h" + #include #include "bs2b.h" diff --git a/Alc/dsound.c b/Alc/dsound.c index d2708f0a..60977df7 100644 --- a/Alc/dsound.c +++ b/Alc/dsound.c @@ -18,6 +18,8 @@ * Or go to http://www.gnu.org/copyleft/lgpl.html */ +#include "config.h" + #include #include #include diff --git a/Alc/oss.c b/Alc/oss.c index 299146b2..2fc7c36d 100644 --- a/Alc/oss.c +++ b/Alc/oss.c @@ -18,6 +18,8 @@ * Or go to http://www.gnu.org/copyleft/lgpl.html */ +#include "config.h" + #include #include #include diff --git a/Alc/winmm.c b/Alc/winmm.c index 7018f098..17570efc 100644 --- a/Alc/winmm.c +++ b/Alc/winmm.c @@ -18,6 +18,8 @@ * Or go to http://www.gnu.org/copyleft/lgpl.html */ +#include "config.h" + #include #include #include diff --git a/OpenAL32/OpenAL32.c b/OpenAL32/OpenAL32.c index b2d3525e..f8db7125 100644 --- a/OpenAL32/OpenAL32.c +++ b/OpenAL32/OpenAL32.c @@ -18,6 +18,8 @@ * Or go to http://www.gnu.org/copyleft/lgpl.html */ +#include "config.h" + #include "alMain.h" #include "alBuffer.h" #include "alFilter.h" diff --git a/OpenAL32/alAuxEffectSlot.c b/OpenAL32/alAuxEffectSlot.c index 6d7a3ca5..3ce845ce 100644 --- a/OpenAL32/alAuxEffectSlot.c +++ b/OpenAL32/alAuxEffectSlot.c @@ -18,13 +18,12 @@ * Or go to http://www.gnu.org/copyleft/lgpl.html */ -#include - #include "config.h" +#include + #include "AL/al.h" #include "AL/alc.h" - #include "alMain.h" #include "alAuxEffectSlot.h" #include "alThunk.h" diff --git a/OpenAL32/alBuffer.c b/OpenAL32/alBuffer.c index 2a288b85..2b94caf6 100644 --- a/OpenAL32/alBuffer.c +++ b/OpenAL32/alBuffer.c @@ -20,6 +20,8 @@ #define _CRT_SECURE_NO_DEPRECATE // get rid of sprintf security warnings on VS2005 +#include "config.h" + #include #include #include diff --git a/OpenAL32/alEffect.c b/OpenAL32/alEffect.c index be132e4f..abdca3ea 100644 --- a/OpenAL32/alEffect.c +++ b/OpenAL32/alEffect.c @@ -18,13 +18,12 @@ * Or go to http://www.gnu.org/copyleft/lgpl.html */ -#include - #include "config.h" +#include + #include "AL/al.h" #include "AL/alc.h" - #include "alMain.h" #include "alEffect.h" #include "alThunk.h" diff --git a/OpenAL32/alError.c b/OpenAL32/alError.c index d159b75c..a7ed84a2 100644 --- a/OpenAL32/alError.c +++ b/OpenAL32/alError.c @@ -18,6 +18,8 @@ * Or go to http://www.gnu.org/copyleft/lgpl.html */ +#include "config.h" + #include "alMain.h" #include "AL/alc.h" #include "alError.h" diff --git a/OpenAL32/alExtension.c b/OpenAL32/alExtension.c index 5664efce..876aa41f 100644 --- a/OpenAL32/alExtension.c +++ b/OpenAL32/alExtension.c @@ -18,6 +18,8 @@ * Or go to http://www.gnu.org/copyleft/lgpl.html */ +#include "config.h" + #include #include #include diff --git a/OpenAL32/alFilter.c b/OpenAL32/alFilter.c index ea4e5832..2a0e6973 100644 --- a/OpenAL32/alFilter.c +++ b/OpenAL32/alFilter.c @@ -18,13 +18,12 @@ * Or go to http://www.gnu.org/copyleft/lgpl.html */ -#include - #include "config.h" +#include + #include "AL/al.h" #include "AL/alc.h" - #include "alMain.h" #include "alFilter.h" #include "alThunk.h" diff --git a/OpenAL32/alListener.c b/OpenAL32/alListener.c index 1e02622a..3b888b0d 100644 --- a/OpenAL32/alListener.c +++ b/OpenAL32/alListener.c @@ -18,6 +18,8 @@ * Or go to http://www.gnu.org/copyleft/lgpl.html */ +#include "config.h" + #include "alMain.h" #include "AL/alc.h" #include "alError.h" diff --git a/OpenAL32/alSource.c b/OpenAL32/alSource.c index e180b3d7..73b298a4 100644 --- a/OpenAL32/alSource.c +++ b/OpenAL32/alSource.c @@ -18,6 +18,8 @@ * Or go to http://www.gnu.org/copyleft/lgpl.html */ +#include "config.h" + #include #include #include diff --git a/OpenAL32/alState.c b/OpenAL32/alState.c index ee3281ec..c577ea8d 100644 --- a/OpenAL32/alState.c +++ b/OpenAL32/alState.c @@ -18,6 +18,8 @@ * Or go to http://www.gnu.org/copyleft/lgpl.html */ +#include "config.h" + #include #include "alMain.h" #include "AL/alc.h" diff --git a/OpenAL32/alThunk.c b/OpenAL32/alThunk.c index d050d6b4..54cebc4c 100644 --- a/OpenAL32/alThunk.c +++ b/OpenAL32/alThunk.c @@ -18,6 +18,8 @@ * Or go to http://www.gnu.org/copyleft/lgpl.html */ +#include "config.h" + #include #include "alMain.h" -- 2.11.4.GIT