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:
authorStefan Gartner <stefang@aon.at>2004-04-14 17:00:36 +0400
committerStefan Gartner <stefang@aon.at>2004-04-14 17:00:36 +0400
commit837da93f19376bd61a478b6cda11868415241703 (patch)
treedb72b3c76efa1862edf8f9f549a5bc9f9e66fa69 /source/Makefile
parent7dc152b01a6b77a840e916ecbf5fa34c3a6ab2a8 (diff)
enable openal support for os x and linux-powerpc
as there is a conflict between openal and sdl (when compiled with cdrom support), i had to disable support for cd playing using sdl on os x for the time being.
Diffstat (limited to 'source/Makefile')
-rw-r--r--source/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/Makefile b/source/Makefile
index 3fb82d4033e..20322946ab7 100644
--- a/source/Makefile
+++ b/source/Makefile
@@ -376,7 +376,7 @@ ifeq ($(NAN_NO_OPENAL), true)
NAN_SND_LIBS += $(SOUNDSYSTEM)
else
ifeq ($(OS),$(findstring $(OS), "freebsd linux windows"))
- ifeq ($(CPU),i386)
+ ifeq ($(CPU),$(findstring $(CPU), "i386 powerpc"))
ifeq ($(OS),freebsd)
NAN_SND_LIBS = $(SOUNDSYSTEM)
NAN_SND_LIBS += $(DUMMYSOUND)
@@ -410,6 +410,8 @@ else
ifeq ($(OS),darwin)
NAN_SND_LIBS = $(SOUNDSYSTEM)
NAN_SND_LIBS += $(DUMMYSOUND)
+ NAN_SND_LIBS += $(OPENALSOUND)
+ NAN_SND_LIBS += $(NAN_OPENAL)/lib/libopenal.a
NAN_SND_LIBS += $(SOUNDSYSTEM)
else
NAN_SND_LIBS = $(SOUNDSYSTEM)