From fa7293412fbc26a311be05d3daec5ba517e1c56a Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 20 Apr 2015 01:32:51 +0200 Subject: [PATCH] (CoreAudio) Define OSX_PPC --- audio/drivers/coreaudio.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/audio/drivers/coreaudio.c b/audio/drivers/coreaudio.c index fd025f171e..668dc24e5a 100644 --- a/audio/drivers/coreaudio.c +++ b/audio/drivers/coreaudio.c @@ -31,6 +31,14 @@ #include #include +#if defined(__powerpc__) || defined(__ppc__) || defined(__POWERPC__) + +#ifndef OSX_PPC +#define OSX_PPC +#endif + +#endif + typedef struct coreaudio { pthread_mutex_t lock;