output/openal: support OpenAL plugin on Mac OS X

This commit is contained in:
Serge Ziryukin
2009-09-07 15:01:38 +03:00
committed by Max Kellermann
parent f5f4a9da6b
commit 761771ad24
2 changed files with 19 additions and 3 deletions

View File

@@ -19,11 +19,17 @@
#include "../output_api.h"
#include "../timer.h"
#include "config.h"
#include <glib.h>
#ifndef HAVE_OSX
#include <AL/al.h>
#include <AL/alc.h>
#else
#include <OpenAL/al.h>
#include <OpenAL/alc.h>
#endif
#undef G_LOG_DOMAIN
#define G_LOG_DOMAIN "openal"