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:
authorMichel Selten <michel@mselten.demon.nl>2003-09-16 23:28:29 +0400
committerMichel Selten <michel@mselten.demon.nl>2003-09-16 23:28:29 +0400
commit357b070120317153af41c1b5b0bd6878a814aa27 (patch)
treeaab3b3c1f3b3cd5195c93387caaa1c4b0d3ae1c1 /intern
parentb6daf5d171d267bda7ecb73dc82245d938c9687c (diff)
* Fix bug #390 - auto/gcc compile fails on irix:openal
OpenAL is now a configurable option again. The trick was to update the SND_DependKludge not to #define/#undef anything when the auto* tools are used.
Diffstat (limited to 'intern')
-rw-r--r--intern/SoundSystem/SND_DependKludge.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/intern/SoundSystem/SND_DependKludge.h b/intern/SoundSystem/SND_DependKludge.h
index b11697cd76f..d5d8dd27972 100644
--- a/intern/SoundSystem/SND_DependKludge.h
+++ b/intern/SoundSystem/SND_DependKludge.h
@@ -34,6 +34,8 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
+#ifndef HAVE_CONFIG_H
+
#ifndef NO_SOUND
# if defined (_WIN32) && !defined(FREE_WINDOWS)
@@ -57,4 +59,6 @@
# endif
#endif
-#endif
+#endif /* NO_SOUND */
+
+#endif /* HAVE_CONFIG_H */