diff options
| author | Gary Scavone <gary@music.mcgill.ca> | 2014-04-15 20:40:51 -0400 |
|---|---|---|
| committer | Gary Scavone <gary@music.mcgill.ca> | 2014-04-15 20:40:51 -0400 |
| commit | 3db24e95fea1c57cdf5bb014fc1c380668bdfe2f (patch) | |
| tree | f44dd441d8ba6fa9d22b6dd9d5f37e4ca3d655db /configure.ac | |
| parent | 4be80163cd9b85cbda79c37460ae1fc03608fd33 (diff) | |
Updates to WASAPI API to support MinGW compile.
Diffstat (limited to 'configure.ac')
| -rw-r--r-- | configure.ac | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 6d6474d..6c169b6 100644 --- a/configure.ac +++ b/configure.ac @@ -168,7 +168,13 @@ case $host in AC_MSG_RESULT(using DirectSound) LIBS="-ldsound -lwinmm $LIBS" ], ) - # If no audio api flags specified, use DirectSound + # Look for WASAPI flag + AC_ARG_WITH(wasapi, [ --with-wasapi = choose Windows Audio Session API support (windoze only)], [ + api="$api -D__WINDOWS_WASAPI__" + AC_MSG_RESULT(using WASAPI) + LIBS="-lwinmm -luuid -lksuser $LIBS" ], ) + + # If no audio api flags specified, use DS if [test "$api" == "";] then AC_SUBST( api, [-D__WINDOWS_DS__] ) AC_MSG_RESULT(using DirectSound) |
