diff options
author | Dustin Puckett <puckett@pobox.com> | 2011-01-28 21:17:09 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2011-01-28 21:17:09 +0100 |
commit | 79e0db4ca0e9c13ca226c06c9228d5afb4c9a277 (patch) | |
tree | bfc4558121f6f6f1e71bf2fc1d43e0be469d2c10 /configure.ac | |
parent | 9ae3acf2e73f63550218c2af92243490a4344426 (diff) | |
download | mpd-79e0db4ca0e9c13ca226c06c9228d5afb4c9a277.tar.gz mpd-79e0db4ca0e9c13ca226c06c9228d5afb4c9a277.tar.xz mpd-79e0db4ca0e9c13ca226c06c9228d5afb4c9a277.zip |
output/raop: new output plugin
Remote Audio Output Protocol (RAOP), for Apple devices.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index af5356f26..288d9b844 100644 --- a/configure.ac +++ b/configure.ac @@ -200,6 +200,11 @@ AC_ARG_ENABLE(httpd-output, [enables the HTTP server output]),, [enable_httpd_output=auto]) +AC_ARG_ENABLE(raop-output, + AS_HELP_STRING([--enable-httpd-output], + [enables the RAOP output]),, + [enable_raop_output=no]) + AC_ARG_ENABLE(id3, AS_HELP_STRING([--disable-id3], [disable id3 support (default: enable)]),, @@ -1397,6 +1402,15 @@ esac AM_CONDITIONAL(ENABLE_SOLARIS_OUTPUT, test x$enable_solaris_output = xyes) +dnl --------------------------------- RAOP ------------------------------------ + +if test x$enable_raop_output = xyes; then + AC_DEFINE(ENABLE_RAOP_OUTPUT, 1, [Define for compiling RAOP support]) + MPD_LIBS="$MPD_LIBS -lssl -lcrypto" +fi + +AM_CONDITIONAL(ENABLE_RAOP_OUTPUT, test x$enable_raop_output = xyes) + dnl --------------------------------- WinMM --------------------------------- case "$host_os" in @@ -1425,6 +1439,7 @@ if test x$enable_openal = xno && test x$enable_oss = xno && test x$enable_osx = xno && + test x$enable_raop_output = xno && test x$enable_pipe_output = xno && test x$enable_pulse = xno && test x$enable_recorder_output = xno && @@ -1556,6 +1571,7 @@ results(ffado,FFADO) results(fifo,FIFO) results(recorder_output,[File Recorder]) results(httpd_output,[HTTP Daemon]) +results(raop_output, [RAOP]) results(jack,[JACK]) results(ao,[libao]) results(oss,[OSS]) |