diff options
Diffstat (limited to 'configure.ac')
| -rw-r--r-- | configure.ac | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 387968558..89573c0e5 100644 --- a/configure.ac +++ b/configure.ac @@ -666,6 +666,14 @@ AC_ARG_ENABLE(macosx_video, AC_HELP_STRING([--enable-macosx-video], [enable supp AM_CONDITIONAL(HAVE_MACOSX_VIDEO, [test x"$have_macosx_video" = "xyes"]) dnl --------------------------------------------- +dnl Check whether to build MacOSX audio output driver +dnl --------------------------------------------- + +AC_ARG_ENABLE(coreaudio, AC_HELP_STRING([--enable-coreaudio], [enable support for MacOSX Coreaudio output]), + have_coreaudio=$enableval) +AM_CONDITIONAL(HAVE_COREAUDIO, [test x"$have_coreaudio" = "xyes"]) + +dnl --------------------------------------------- dnl Find pkg-config dnl --------------------------------------------- @@ -2378,6 +2386,9 @@ fi if test x"$have_directx" = "xyes"; then echo " - directx (DirectX audio driver)" fi +if test x"$have_coreaudio" = "xyes"; then + echo " - CoreAudio (MacOSX audio driver)" +fi echo "---" |
