From 54ce284b1bd0b0d5803250a692f40188ebb95d51 Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Tue, 16 Jun 2015 21:34:51 +0200 Subject: [PATCH] [DEV] pulseaudio missing compilation flag --- audio/orchestra/api/PulseDeviceList.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/audio/orchestra/api/PulseDeviceList.cpp b/audio/orchestra/api/PulseDeviceList.cpp index a49235f..14a0591 100644 --- a/audio/orchestra/api/PulseDeviceList.cpp +++ b/audio/orchestra/api/PulseDeviceList.cpp @@ -4,6 +4,9 @@ * @license APACHE v2.0 (see license file) * @fork from RTAudio */ + +#if defined(ORCHESTRA_BUILD_PULSE) + #include #include #include @@ -353,3 +356,5 @@ std::vector audio::orchestra::api::pulse::getDevic } return out; } + +#endif