From ac6e2c650797fb7db2e04df9c7514c075a53f0d7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ond=C5=99ej=20Ho=C5=A1ek?= Date: Tue, 2 Jan 2007 10:30:15 +0000 Subject: [PATCH] configure.ac now includes support for the OpenAL framework (instead of libopenal) on Darwin. SVN-Revision: 4522 --- configure.ac | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 5b5d84345..efc413698 100644 --- 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 ], [alcOpenDevice(0);]), - [], [-lopenal], + [], [$allib], [], [AC_MSG_ERROR([Please intall OpenAL])], [], []) -- 2.11.0