shithub: aubio

Download patch

ref: dd5a052d8a66edeec1176128900f0840cfc80841
parent: d9ab9584ff89661bc8a38cff6b93e1a72b6dae14
author: Paul Brossier <piem@piem.org>
date: Sun Jul 15 10:23:36 EDT 2012

src/io/sink_apple_audio.c: only compile on apple

--- a/src/io/sink_apple_audio.c
+++ b/src/io/sink_apple_audio.c
@@ -19,6 +19,9 @@
 */
 
 #include "config.h"
+
+#ifdef __APPLE__
+
 #include "aubio_priv.h"
 #include "fvec.h"
 #include "io/sink_apple_audio.h"
@@ -128,3 +131,5 @@
   AUBIO_FREE(s);
   return;
 }
+
+#endif /* __APPLE__ */