aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--configure.ac32
-rw-r--r--src/audioOutputs/audioOutput_osx.c7
2 files changed, 9 insertions, 30 deletions
diff --git a/configure.ac b/configure.ac
index e28457aeb..3395fdb4c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -126,14 +126,6 @@ if test x$enable_oss = xyes; then
AC_CHECK_HEADER(sys/soundcard.h,[enable_oss=yes;AC_DEFINE(HAVE_OSS,1,[Define to enable OSS])],[AC_MSG_WARN(Soundcard headers not found -- disabling OSS support);enable_oss=no])
fi
-if test x$enable_ao = xno &&
- test x$enable_oss = xno &&
- test x$enable_shout = xno &&
- test x$enable_alsa = xno &&
- test x$enable_osx = xno; then
- AC_MSG_ERROR("Cannot compile without an output target")
-fi
-
if test x$enable_alsa = xyes; then
AM_PATH_ALSA(0.9.0,[AC_DEFINE(HAVE_ALSA,1,[Define to enable ALSA support]) MPD_LIBS="$MPD_LIBS $ALSA_LIBS" MPD_CFLAGS="$MPD_CFLAGS $ALSA_CFLAGS"],enable_alsa=no)
fi
@@ -559,22 +551,6 @@ fi
echo ""
-echo "Volume Mixer Support:"
-
-if test x$enable_oss = xyes; then
- echo "OSS mixer support .............enabled"
-else
- echo "OSS mixer support .............disabled"
-fi
-
-if test x$enable_alsa = xyes; then
- echo "ALSA mixer support ............enabled"
-else
- echo "ALSA mixer support ............disabled"
-fi
-
-echo ""
-
echo "Audio Output Support:"
if test x$enable_ao = xyes; then
echo "Playing audio via libao .......enabled"
@@ -608,6 +584,14 @@ fi
echo ""
+if test x$enable_ao = xno &&
+ test x$enable_oss = xno &&
+ test x$enable_shout = xno &&
+ test x$enable_alsa = xno &&
+ test x$enable_osx = xno; then
+ AC_MSG_ERROR("No Audio Output types configured!")
+fi
+
echo "Audio Format Support:"
if test x$enable_id3 = xyes; then
diff --git a/src/audioOutputs/audioOutput_osx.c b/src/audioOutputs/audioOutput_osx.c
index c8760c3c1..03c3cfc67 100644
--- a/src/audioOutputs/audioOutput_osx.c
+++ b/src/audioOutputs/audioOutput_osx.c
@@ -101,14 +101,9 @@ static void osx_dropBufferedAudio(AudioOutput * audioOutput) {
OsxData * od = (OsxData *)audioOutput->data;
pthread_mutex_lock(&od->mutex);
- od->go = 0;
od->len = 0;
+ od->go = 0;
pthread_mutex_unlock(&od->mutex);
-
- /*if(od->started) {
- AudioOutputUnitStop(od->au);
- od->started = 0;
- }*/
}
static void osx_closeDevice(AudioOutput * audioOutput) {