Browse Source

Better handling of optional asio

Signed-off-by: falkTX <falktx@falktx.com>
tags/v1.9.20
falkTX 3 years ago
parent
commit
66f9bdb386
3 changed files with 5 additions and 7 deletions
  1. +0
    -4
      windows/JackTypes_os.h
  2. +3
    -0
      windows/portaudio/JackPortAudioDevices.h
  3. +2
    -3
      wscript

+ 0
- 4
windows/JackTypes_os.h View File

@@ -31,9 +31,5 @@ typedef UInt64 uint64_t;
typedef unsigned short uint16_t;
typedef DWORD jack_tls_key;

#if defined(__MINGW32__)
#define PRIu64 "llu"
#endif

#endif


+ 3
- 0
windows/portaudio/JackPortAudioDevices.h View File

@@ -24,7 +24,10 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#include <string>

#include <portaudio.h>

#if defined(HAVE_ASIO)
#include <pa_asio.h>
#endif

/*!
\brief A PortAudio Devices manager.


+ 2
- 3
wscript View File

@@ -221,9 +221,8 @@ def configure(conf):
if Options.options.platform in ('msys', 'win32'):
conf.env.append_value('INCLUDES', ['/mingw64/include'])
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',
mandatory=False)



Loading…
Cancel
Save