Signed-off-by: falkTX <falktx@falktx.com>tags/v1.9.20
@@ -31,9 +31,5 @@ typedef UInt64 uint64_t; | |||||
typedef unsigned short uint16_t; | typedef unsigned short uint16_t; | ||||
typedef DWORD jack_tls_key; | typedef DWORD jack_tls_key; | ||||
#if defined(__MINGW32__) | |||||
#define PRIu64 "llu" | |||||
#endif | |||||
#endif | #endif | ||||
@@ -24,7 +24,10 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | |||||
#include <string> | #include <string> | ||||
#include <portaudio.h> | #include <portaudio.h> | ||||
#if defined(HAVE_ASIO) | |||||
#include <pa_asio.h> | #include <pa_asio.h> | ||||
#endif | |||||
/*! | /*! | ||||
\brief A PortAudio Devices manager. | \brief A PortAudio Devices manager. | ||||
@@ -221,9 +221,8 @@ def configure(conf): | |||||
if Options.options.platform in ('msys', 'win32'): | if Options.options.platform in ('msys', 'win32'): | ||||
conf.env.append_value('INCLUDES', ['/mingw64/include']) | conf.env.append_value('INCLUDES', ['/mingw64/include']) | ||||
conf.check( | conf.check( | ||||
header_name='asio.h', | |||||
includes='/opt/asiosdk/common', | |||||
msg='Checking for ASIO SDK', | |||||
header_name='pa_asio.h', | |||||
msg='Checking for PortAudio ASIO support', | |||||
define_name='HAVE_ASIO', | define_name='HAVE_ASIO', | ||||
mandatory=False) | mandatory=False) | ||||