diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index b2ddda6b0..a21304503 100644 --- a/configure.ac +++ b/configure.ac @@ -102,6 +102,13 @@ AP_maGiC_VALUE ) fi +enable_osx=no +case $host in + *-darwin*) + AC_DEFINE(HAVE_OSX, 1, [Define for compiling OS X support]) + enable_osx=yes ;; +esac + if test x$enable_ogg = xno; then AC_MSG_WARN("disabling shout streaming support since vorbis was not found") fi @@ -582,6 +589,12 @@ else echo "Playing audio via ALSA ........disabled" fi +if test x$enable_osx = xyes; then + echo "Playing audio on OS X .........enabled" +else + echo "Playing audio on OS X .........disabled" +fi + if test x$enable_shout = xyes; then echo "Streaming through shout .......enabled" else |