From: Ondřej Hošek Date: Tue, 2 Jan 2007 10:30:15 +0000 (+0000) Subject: configure.ac now includes support for the OpenAL framework (instead of libopenal... X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=ac6e2c650797fb7db2e04df9c7514c075a53f0d7;p=supertux.git configure.ac now includes support for the OpenAL framework (instead of libopenal) on Darwin. SVN-Revision: 4522 --- 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])], [], [])