configure.ac: disable the OS X output plugin by default
There hasn't been a maintainer for this plugin for years. It may even fail to build.
This commit is contained in:
parent
4a99b1df4b
commit
c37edfd3e9
3
INSTALL
3
INSTALL
|
@ -41,9 +41,6 @@ This is a mostly undocumented, developer plugin to transmit raw data.
|
||||||
OSS - http://www.opensound.com
|
OSS - http://www.opensound.com
|
||||||
Open Sound System.
|
Open Sound System.
|
||||||
|
|
||||||
OSX - http://www.apple.com
|
|
||||||
Necessary if you are on Mac OSX.
|
|
||||||
|
|
||||||
PulseAudio - http://www.pulseaudio.org/
|
PulseAudio - http://www.pulseaudio.org/
|
||||||
An advanced sound daemon. You will need libpulse.
|
An advanced sound daemon. You will need libpulse.
|
||||||
|
|
||||||
|
|
1
NEWS
1
NEWS
|
@ -32,6 +32,7 @@ ver 0.18 (2012/??/??)
|
||||||
- ffado: remove broken plugin
|
- ffado: remove broken plugin
|
||||||
- httpd: support HEAD requests
|
- httpd: support HEAD requests
|
||||||
- mvp: remove obsolete plugin
|
- mvp: remove obsolete plugin
|
||||||
|
- osx: disabled by default because it's unmaintained and unsupported
|
||||||
* improved decoder/output error reporting
|
* improved decoder/output error reporting
|
||||||
* eliminate timer wakeup on idle MPD
|
* eliminate timer wakeup on idle MPD
|
||||||
* fix unresponsive MPD while waiting for stream
|
* fix unresponsive MPD while waiting for stream
|
||||||
|
|
|
@ -340,6 +340,11 @@ AC_ARG_ENABLE(oss,
|
||||||
[disable OSS support (default: enable)]),,
|
[disable OSS support (default: enable)]),,
|
||||||
enable_oss=yes)
|
enable_oss=yes)
|
||||||
|
|
||||||
|
AC_ARG_ENABLE(osx,
|
||||||
|
AS_HELP_STRING([--enable-osx],
|
||||||
|
[enable the OS X output plugin - unsupported! (default: disable)]),,
|
||||||
|
enable_osx=no)
|
||||||
|
|
||||||
AC_ARG_ENABLE(pipe-output,
|
AC_ARG_ENABLE(pipe-output,
|
||||||
AS_HELP_STRING([--enable-pipe-output],
|
AS_HELP_STRING([--enable-pipe-output],
|
||||||
[enable support for writing audio to a pipe (default: disable)]),,
|
[enable support for writing audio to a pipe (default: disable)]),,
|
||||||
|
@ -1304,7 +1309,6 @@ fi
|
||||||
AM_CONDITIONAL(HAVE_OSS, test x$enable_oss = xyes)
|
AM_CONDITIONAL(HAVE_OSS, test x$enable_oss = xyes)
|
||||||
|
|
||||||
dnl ----------------------------------- OSX -----------------------------------
|
dnl ----------------------------------- OSX -----------------------------------
|
||||||
enable_osx=$host_is_darwin
|
|
||||||
if test x$enable_osx = xyes; then
|
if test x$enable_osx = xyes; then
|
||||||
AC_DEFINE(HAVE_OSX, 1, [Define for compiling OS X support])
|
AC_DEFINE(HAVE_OSX, 1, [Define for compiling OS X support])
|
||||||
LIBS="$LIBS -framework AudioUnit -framework CoreAudio -framework CoreServices"
|
LIBS="$LIBS -framework AudioUnit -framework CoreAudio -framework CoreServices"
|
||||||
|
|
Loading…
Reference in New Issue