projects
/
supertux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ed3aa42
)
configure.ac now includes support for the OpenAL framework (instead of libopenal...
author
Ondřej Hošek
<ondra.hosek@gmail.com>
Tue, 2 Jan 2007 10:30:15 +0000
(10:30 +0000)
committer
Ondřej Hošek
<ondra.hosek@gmail.com>
Tue, 2 Jan 2007 10:30:15 +0000
(10:30 +0000)
SVN-Revision: 4522
configure.ac
patch
|
blob
|
history
diff --git
a/configure.ac
b/configure.ac
index
5b5d843
..
efc4136
100644
(file)
--- a/
configure.ac
+++ b/
configure.ac
@@
-134,10
+134,16
@@
NP_FINDLIB([PHYSFS], [physfs], [physfs >= 1.0.0],
[],
[AC_MSG_ERROR([Please install physfs >= 1.0])])
+if test "x`uname -s`" = "xDarwin"; then
+ allib="-framework OpenAL"
+else
+ allib="-lopenal"
+fi
+
NP_FINDLIB([OPENAL], [OpenAL], [OpenAL],
NP_LANG_PROGRAM([#include <AL/al.h>],
[alcOpenDevice(0);]),
- [], [
-lopenal
],
+ [], [
$allib
],
[],
[AC_MSG_ERROR([Please intall OpenAL])],
[], [])