configure.ac: Move FIFO to Audio Output Plugins (nonstreaming), add subheader.
[mpd-mk.git] / configure.ac
blob26652075b3dac284997d26c4e9ecbd43b2af0978
1 AC_PREREQ(2.60)
2 AC_INIT(mpd, 0.16~git, musicpd-dev-team@lists.sourceforge.net)
3 AC_CONFIG_SRCDIR([src/main.c])
4 AM_INIT_AUTOMAKE([foreign 1.10 dist-bzip2 subdir-objects])
5 AM_CONFIG_HEADER(config.h)
6 AC_CONFIG_MACRO_DIR([m4])
8 AC_DEFINE(PROTOCOL_VERSION, "0.16.0", [The MPD protocol version])
11 dnl ---------------------------------------------------------------------------
12 dnl Programs
13 dnl ---------------------------------------------------------------------------
14 AC_PROG_CC_C99
15 AC_PROG_CXX
17 HAVE_CXX=yes
18 if test x$CXX = xg++; then
19         # CXX=g++ probably means that autoconf hasn't found any C++
20         # compiler; to be sure, we check again
21         AC_PATH_PROG(CXX, $CXX, no)
22         if test x$CXX = xno; then
23                 # no, we don't have C++ - the following hack is
24                 # required because automake insists on using $(CXX)
25                 # for linking the MPD binary
26                 AC_MSG_NOTICE([Disabling C++ support])
27                 CXX="$CC"
28                 HAVE_CXX=no
29         fi
32 AC_PROG_INSTALL
33 AC_PROG_MAKE_SET
34 PKG_PROG_PKG_CONFIG
36 dnl ---------------------------------------------------------------------------
37 dnl Declare Variables
38 dnl ---------------------------------------------------------------------------
39 AC_SUBST(AM_CFLAGS,"")
41 AC_SUBST(MPD_LIBS)
42 AC_SUBST(MPD_CFLAGS)
43 MPD_LIBS=""
44 MPD_CFLAGS=""
46 dnl ---------------------------------------------------------------------------
47 dnl OS Specific Defaults
48 dnl ---------------------------------------------------------------------------
49 AC_CANONICAL_HOST
51 case "$host_os" in
52 mingw32* | windows*)
53         MPD_LIBS="$MPD_LIBS -lws2_32"
54         ;;
55 esac
57 if test -z "$prefix" || test "x$prefix" = xNONE; then
58         local_lib=
59         local_include=
61         # aren't autotools supposed to be smart enough to figure this out?  oh
62         # well, the git-core Makefile managed to do some of the work for us :)
63         case "$host_os" in
64         darwin*)
65                 local_lib='/sw/lib /opt/local/lib'
66                 local_include='/sw/include /opt/local/include'
67                 ;;
68         freebsd* | openbsd*)
69                 local_lib=/usr/local/lib
70                 local_include=/usr/local/include
71                 ;;
72         netbsd*)
73                 local_lib=/usr/pkg/lib
74                 local_include=/usr/pkg/include
75                 LDFLAGS="$LDFLAGS -Wl,-rpath,/usr/pkg/lib"
76                 ;;
77         esac
79         for d in $local_lib; do
80                 if test -d "$d"; then
81                         LDFLAGS="$LDFLAGS -L$d"
82                         break
83                 fi
84         done
85         for d in $local_include; do
86                 if test -d "$d"; then
87                         CFLAGS="$CFLAGS -I$d"
88                         break
89                 fi
90         done
93 dnl ---------------------------------------------------------------------------
94 dnl Header/Library Checks
95 dnl ---------------------------------------------------------------------------
96 AC_CHECK_FUNCS(daemon fork syslog)
97 if test $ac_cv_func_syslog = no; then
98         # syslog is not in the default libraries.  See if it's in some other.
99         for lib in bsd socket inet; do
100                 AC_CHECK_LIB($lib, syslog,
101                         [AC_DEFINE(HAVE_SYSLOG)
102                         LIBS="$LIBS -l$lib"; break])
103         done
106 AC_CHECK_LIB(socket,socket,MPD_LIBS="$MPD_LIBS -lsocket",)
107 AC_CHECK_LIB(nsl,gethostbyname,MPD_LIBS="$MPD_LIBS -lnsl",)
109 AC_CHECK_FUNCS(pipe2 accept4)
111 AC_CHECK_LIB(m,exp,MPD_LIBS="$MPD_LIBS -lm",)
113 AC_CHECK_HEADERS(locale.h)
114 AC_CHECK_HEADERS(valgrind/memcheck.h)
116 dnl ---------------------------------------------------------------------------
117 dnl Allow tools to be specifically built
118 dnl ---------------------------------------------------------------------------
119 AC_ARG_ENABLE(alsa,
120         AS_HELP_STRING([--enable-alsa], [enable ALSA support]),,
121         [enable_alsa=auto])
123 AC_ARG_ENABLE(ao,
124         AS_HELP_STRING([--enable-ao],
125                 [enable support for libao]),,
126         enable_ao=auto)
128 AC_ARG_ENABLE(audiofile,
129         AS_HELP_STRING([--enable-audiofile],
130                 [enable audiofile support (WAV and others)]),,
131         enable_audiofile=auto)
133 AC_ARG_ENABLE(bzip2,
134         AS_HELP_STRING([--enable-bzip2],
135                 [enable bzip2 archive support (default: disabled)]),,
136         enable_bzip2=no)
138 AC_ARG_ENABLE(cue,
139         AS_HELP_STRING([--enable-cue],
140                 [enable support for libcue support]),,
141         enable_cue=auto)
143 AC_ARG_ENABLE(curl,
144         AS_HELP_STRING([--enable-curl],
145                 [enable support for libcurl HTTP streaming (default: auto)]),,
146         [enable_curl=auto])
148 AC_ARG_ENABLE(debug,
149         AS_HELP_STRING([--enable-debug],
150                 [enable debugging (default: disabled)]),,
151         enable_debug=no)
153 AC_ARG_ENABLE(documentation,
154         AS_HELP_STRING([--enable-documentation],
155                 [build documentation (default: disable)]),,
156         [enable_documentation=no])
158 AC_ARG_ENABLE(ffmpeg,
159         AS_HELP_STRING([--enable-ffmpeg],
160                 [enable FFMPEG support]),,
161         enable_ffmpeg=auto)
163 AC_ARG_ENABLE(fifo,
164         AS_HELP_STRING([--disable-fifo],
165                 [disable support for writing audio to a FIFO (default: enable)]),,
166         enable_fifo=yes)
168 AC_ARG_ENABLE(flac,
169         AS_HELP_STRING([--disable-flac],
170                 [disable flac support (default: enable)]),,
171         enable_flac=yes)
173 AC_ARG_ENABLE(fluidsynth,
174         AS_HELP_STRING([--enable-fluidsynth],
175                 [enable MIDI support via fluidsynth (default: disable)]),,
176         enable_fluidsynth=no)
178 AC_ARG_ENABLE(gprof,
179         AS_HELP_STRING([--enable-gprof],
180                 [enable profiling via gprof (default: disabled)]),,
181         enable_gprof=no)
183 AC_ARG_ENABLE(httpd-output,
184         AS_HELP_STRING([--enable-httpd-output],
185                 [enables the HTTP server output]),,
186         [enable_httpd_output=auto])
188 AC_ARG_ENABLE(id3,
189         AS_HELP_STRING([--disable-id3],
190                 [disable id3 support (default: enable)]),,
191         enable_id3=yes)
193 AC_ARG_ENABLE(inotify,
194         AS_HELP_STRING([--disable-inotify],
195                 [disable support Inotify automatic database update (default: enabled) ]),,
196         [enable_inotify=yes])
198 AC_ARG_ENABLE(ipv6,
199         AS_HELP_STRING([--disable-ipv6],
200                 [disable IPv6 support (default: enable)]),,
201         [enable_ipv6=yes])
203 AC_ARG_ENABLE(iso9660,
204         AS_HELP_STRING([--enable-iso9660],
205                 [enable iso9660 archive support (default: disabled)]),,
206         enable_iso9660=no)
208 AC_ARG_ENABLE(jack,
209         AS_HELP_STRING([--enable-jack],
210                 [enable jack support]),,
211         enable_jack=auto)
213 AC_SYS_LARGEFILE
215 AC_ARG_ENABLE(lastfm,
216         AS_HELP_STRING([--enable-lastfm],
217                 [enable support for last.fm radio (default: disable)]),,
218         [enable_lastfm=no])
220 AC_ARG_ENABLE(lame-encoder,
221         AS_HELP_STRING([--enable-lame-encoder],
222                 [enable the LAME mp3 encoder]),,
223         enable_lame_encoder=auto)
225 AC_ARG_ENABLE([libwrap],
226         AS_HELP_STRING([--enable-libwrap], [use libwrap]),,
227         [enable_libwrap=auto])
229 AC_ARG_ENABLE(lsr,
230         AS_HELP_STRING([--enable-lsr],
231                 [enable libsamplerate support]),,
232         enable_lsr=auto)
234 AC_ARG_ENABLE(mad,
235         AS_HELP_STRING([--enable-mad],
236                 [enable libmad mp3 decoder plugin]),,
237         enable_mad=auto)
239 AC_ARG_ENABLE(mikmod,
240         AS_HELP_STRING([--enable-mikmod],
241                 [enable the mikmod decoder (default: disable)]),,
242         enable_mikmod=no)
244 AC_ARG_ENABLE(mms,
245         AS_HELP_STRING([--enable-mms],
246                 [enable the MMS protocol with libmms]),,
247         [enable_mms=auto])
249 AC_ARG_ENABLE(modplug,
250         AS_HELP_STRING([--enable-modplug],
251                 [enable modplug decoder plugin]),,
252         enable_modplug=auto)
254 AC_ARG_ENABLE(mpc,
255         AS_HELP_STRING([--disable-mpc],
256                 [disable musepack (MPC) support (default: enable)]),,
257         enable_mpc=yes)
259 AC_ARG_ENABLE(mpg123,
260         AS_HELP_STRING([--enable-mpg123],
261                 [enable libmpg123 decoder plugin]),,
262         enable_mpg123=auto)
264 AC_ARG_ENABLE(mvp,
265         AS_HELP_STRING([--enable-mvp],
266                 [enable support for Hauppauge Media MVP (default: disable)]),,
267         enable_mvp=no)
269 AC_ARG_ENABLE(oggflac,
270         AS_HELP_STRING([--disable-oggflac],
271                 [disable OggFLAC support (default: enable)]),,
272         enable_oggflac=yes)
274 AC_ARG_ENABLE(openal,
275         AS_HELP_STRING([--enable-openal],
276                 [enable OpenAL support (default: disable)]),,
277         enable_openal=no)
279 AC_ARG_ENABLE(oss,
280         AS_HELP_STRING([--disable-oss],
281                 [disable OSS support (default: enable)]),,
282         enable_oss=yes)
284 AC_ARG_ENABLE(pipe-output,
285         AS_HELP_STRING([--enable-pipe-output],
286                 [enable support for writing audio to a pipe (default: disable)]),,
287         enable_pipe_output=no)
289 AC_ARG_ENABLE(pulse,
290         AS_HELP_STRING([--enable-pulse],
291                 [enable support for the PulseAudio sound server]),,
292         enable_pulse=auto)
294 AC_ARG_ENABLE(recorder-output,
295         AS_HELP_STRING([--enable-recorder-output],
296                 [enables the recorder file output plugin (default: disable)]),,
297         [enable_recorder_output=auto])
299 AC_ARG_ENABLE(sidplay,
300         AS_HELP_STRING([--enable-sidplay],
301                 [enable C64 SID support via libsidplay2]),,
302         enable_sidplay=auto)
305 AC_ARG_ENABLE(shout,
306         AS_HELP_STRING([--enable-shout],
307                 [enables the shoutcast streaming output]),,
308         [enable_shout=auto])
310 AC_ARG_ENABLE(sndfile,
311         AS_HELP_STRING([--enable-sndfile],
312                 [enable sndfile support]),,
313         enable_sndfile=auto)
315 AC_ARG_ENABLE(sqlite,
316         AS_HELP_STRING([--enable-sqlite],
317                 [enable support for the SQLite database]),,
318         [enable_sqlite=auto])
320 AC_ARG_ENABLE(tcp,
321         AS_HELP_STRING([--disable-tcp],
322                 [disable support for clients connecting via TCP (default: enable)]),,
323         [enable_tcp=yes])
325 AC_ARG_ENABLE(test,
326         AS_HELP_STRING([--enable-test],
327                 [build the test programs (default: disabled)]),,
328         enable_test=no)
330 AC_ARG_WITH(tremor,
331         AS_HELP_STRING([--with-tremor=PFX],
332                 [use Tremor (vorbisidec) integer Ogg Vorbis decoder (with optional prefix)]),,
333         with_tremor=no)
335 AC_ARG_ENABLE(twolame-encoder,
336         AS_HELP_STRING([--enable-twolame-encoder],
337                 [enable the TwoLAME mp2 encoder]),,
338         enable_twolame_encoder=auto)
340 AC_ARG_ENABLE(un,
341         AS_HELP_STRING([--disable-un],
342                 [disable support for clients connecting via unix domain sockets (default: enable)]),,
343         [enable_un=yes])
345 AC_ARG_ENABLE(vorbis,
346         AS_HELP_STRING([--disable-vorbis],
347                 [disable Ogg Vorbis support (default: enable)]),,
348         enable_vorbis=yes)
350 AC_ARG_ENABLE(vorbis-encoder,
351         AS_HELP_STRING([--enable-vorbis-encoder],
352                 [enable the Ogg Vorbis encoder]),,
353         [enable_vorbis_encoder=auto])
355 AC_ARG_ENABLE(wave-encoder,
356         AS_HELP_STRING([--enable-wave-encoder],
357                 [enable the PCM wave encoder]),,
358         enable_wave_encoder=yes)
360 AC_ARG_ENABLE(wavpack,
361         AS_HELP_STRING([--enable-wavpack],
362                 [enable WavPack support]),,
363         enable_wavpack=auto)
365 AC_ARG_ENABLE(werror,
366         AS_HELP_STRING([--enable-werror],
367                 [treat warnings as errors (default: disabled)]),,
368         enable_werror=no)
370 AC_ARG_ENABLE(wildmidi,
371         AS_HELP_STRING([--enable-wildmidi],
372                 [enable MIDI support via wildmidi (default: disable)]),,
373         enable_wildmidi=no)
375 AC_ARG_WITH(zeroconf,
376         AS_HELP_STRING([--with-zeroconf=@<:@auto|avahi|bonjour|no@:>@],
377                 [enable zeroconf backend (default=auto)]),,
378         with_zeroconf="auto")
380 AC_ARG_ENABLE(zzip,
381         AS_HELP_STRING([--enable-zzip],
382                 [enable zip archive support (default: disabled)]),,
383         enable_zzip=no)
386 AC_ARG_WITH(tremor-libraries,
387         AS_HELP_STRING([--with-tremor-libraries=DIR],
388                 [directory where Tremor library is installed (optional)]),,
389         tremor_libraries="")
391 AC_ARG_WITH(tremor-includes,
392         AS_HELP_STRING([--with-tremor-includes=DIR],
393                 [directory where Tremor header files are installed (optional)]),,
394         tremor_includes="")
396 dnl ---------------------------------------------------------------------------
397 dnl Mandatory Libraries
398 dnl ---------------------------------------------------------------------------
399 PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.12 gthread-2.0],,
400                 [AC_MSG_ERROR([GLib 2.12 is required])])
402 dnl ---------------------------------------------------------------------------
403 dnl Protocol Options
404 dnl ---------------------------------------------------------------------------
406 if test x$enable_tcp = xno; then
407         # if we don't support TCP, we don't need IPv6 either
408         enable_ipv6=no
411 if test x$enable_ipv6 = xyes; then
412         AC_MSG_CHECKING(for ipv6)
413         AC_EGREP_CPP([AP_maGiC_VALUE],
414         [
415 #include <sys/types.h>
416 #include <sys/socket.h>
417 #include <netdb.h>
418 #ifdef PF_INET6
419 #ifdef AF_INET6
420 AP_maGiC_VALUE
421 #endif
422 #endif
423         ],
424         AC_DEFINE(HAVE_IPV6, 1, [Define if IPv6 support present])
425         AC_MSG_RESULT([yes]),
426         AC_MSG_RESULT([no])
430 if test x$enable_tcp = xyes; then
431         AC_DEFINE(HAVE_TCP, 1, [Define if TCP socket support is enabled])
434 case "$host_os" in
435 mingw* | windows*)
436         enable_un=no
437         ;;
438 esac
440 if test x$enable_un = xyes; then
441         AC_DEFINE(HAVE_UN, 1, [Define if unix domain socket support is enabled])
442         STRUCT_UCRED
445 dnl ---------------------------------------------------------------------------
446 dnl LIBC Features
447 dnl ---------------------------------------------------------------------------
448 if test x$enable_largefile != xno; then
449         AC_DEFINE([ENABLE_LARGEFILE], 1, [Define if large file support is enabled])
452 dnl ---------------------------------------------------------------------------
453 dnl Miscellaneous Libraries
454 dnl ---------------------------------------------------------------------------
456 dnl --------------------------------- inotify ---------------------------------
457 AC_CHECK_FUNCS(inotify_init inotify_init1)
459 if test x$ac_cv_func_inotify_init = xno; then
460         enable_inotify=no
463 if test x$enable_inotify = xyes; then
464         AC_DEFINE([ENABLE_INOTIFY], 1, [Define to enable inotify support])
466 AM_CONDITIONAL(ENABLE_INOTIFY, test x$enable_inotify = xyes)
468 dnl --------------------------------- libwrap ---------------------------------
469 if test x$enable_libwrap != xno; then
470         AC_CHECK_LIBWRAP(found_libwrap=yes, found_libwrap=no)
471         MPD_AUTO_RESULT(libwrap, libwrap, [libwrap not found])
474 if test x$enable_libwrap = xyes; then
475         AC_SUBST(LIBWRAP_CFLAGS)
476         AC_SUBST(LIBWRAP_LDFLAGS)
477         AC_DEFINE(HAVE_LIBWRAP, 1, [define to enable libwrap library])
480 dnl ---------------------------------------------------------------------------
481 dnl Metadata Plugins
482 dnl ---------------------------------------------------------------------------
484 dnl ---------------------------------- libcue ---------------------------------
485 MPD_AUTO_PKG(cue, CUE, [libcue],
486         [libcue parsing library], [libcue not found])
487 if test x$enable_cue = xyes; then
488         AC_DEFINE([HAVE_CUE], 1,
489                 [Define to enable libcue support])
492 AM_CONDITIONAL(HAVE_CUE, test x$enable_cue = xyes)
494 dnl -------------------------------- libid3tag --------------------------------
495 if test x$enable_id3 = xyes; then
496         PKG_CHECK_MODULES([ID3TAG], [id3tag],,
497                 AC_CHECK_LIB(id3tag, id3_file_open,
498                         [ID3TAG_LIBS="-lid3tag -lz" ID3TAG_CFLAGS=""],
499                         enable_id3=no))
502 if test x$enable_id3 = xyes; then
503         AC_DEFINE(HAVE_ID3TAG, 1, [Define to use id3tag])
506 AM_CONDITIONAL(HAVE_ID3TAG, test x$enable_id3 = xyes)
508 dnl ---------------------------------------------------------------------------
509 dnl Autodiscovery
510 dnl ---------------------------------------------------------------------------
512 dnl --------------------------------- zeroconf --------------------------------
514 case $with_zeroconf in
515 no|avahi|bonjour)
516         ;;
518         with_zeroconf=auto
519         ;;
520 esac
522 if test x$with_zeroconf != xno; then
523         if test x$with_zeroconf = xavahi || test x$with_zeroconf = xauto; then
524                 PKG_CHECK_MODULES([AVAHI], [avahi-client avahi-glib],
525                          [found_avahi=1;AC_DEFINE([HAVE_AVAHI], 1, [Define to enable Avahi Zeroconf support])]
526                          MPD_LIBS="$MPD_LIBS $AVAHI_LIBS" MPD_CFLAGS="$MPD_CFLAGS $AVAHI_CFLAGS",
527                          [found_avahi=0])
528         fi
530         if test x$found_avahi = x1; then
531                 with_zeroconf=avahi
532         elif test x$with_zeroconf = xavahi; then
533                 AC_MSG_ERROR([Avahi support requested but not found])
534         fi
536         if test x$with_zeroconf = xbonjour || test x$with_zeroconf = xauto; then
537                 AC_CHECK_HEADER(dns_sd.h,
538                         [found_bonjour=1;AC_DEFINE([HAVE_BONJOUR], 1, [Define to enable Bonjour Zeroconf support])],
539                         [found_bonjour=0])
540                 AC_CHECK_LIB(dns_sd, DNSServiceRegister,
541                         MPD_LIBS="$MPD_LIBS -ldns_sd")
542         fi
544         if test x$found_bonjour = x1; then
545                 with_zeroconf=bonjour
546         elif test x$with_zeroconf = xbonjour; then
547                 AC_MSG_ERROR([Bonjour support requested but not found])
548         fi
550         if test x$with_zeroconf = xauto; then
551                 AC_MSG_WARN([No supported Zeroconf backend found, disabling Zeroconf])
552                 with_zeroconf=no
553         else
554                 AC_DEFINE([HAVE_ZEROCONF], 1, [Define to enable Zeroconf support])
555         fi
558 AM_CONDITIONAL(HAVE_ZEROCONF, test x$with_zeroconf != xno)
559 AM_CONDITIONAL(HAVE_AVAHI, test x$with_zeroconf = xavahi)
560 AM_CONDITIONAL(HAVE_BONJOUR, test x$with_zeroconf = xbonjour)
562 dnl ---------------------------------------------------------------------------
563 dnl Sticker Database
564 dnl ---------------------------------------------------------------------------
566 dnl ---------------------------------- sqlite ---------------------------------
568 MPD_AUTO_PKG(sqlite, SQLITE, [sqlite3],
569         [SQLite database support], [sqlite not found])
570 if test x$enable_sqlite = xyes; then
571         AC_DEFINE([ENABLE_SQLITE], 1, [Define to enable sqlite database support])
574 AM_CONDITIONAL(ENABLE_SQLITE, test x$enable_sqlite = xyes)
576 dnl ---------------------------------------------------------------------------
577 dnl Converter Plugins
578 dnl ---------------------------------------------------------------------------
580 dnl ------------------------------ libsamplerate ------------------------------
581 MPD_AUTO_PKG(lsr, SAMPLERATE, [samplerate >= 0.0.15],
582         [libsamplerate resampling], [libsamplerate not found])
583 if test x$enable_lsr = xyes; then
584         AC_DEFINE([HAVE_LIBSAMPLERATE], 1,
585                 [Define to enable libsamplerate])
588 if test x$enable_lsr = xyes; then
589         PKG_CHECK_MODULES([SAMPLERATE_013],
590                 [samplerate >= 0.1.3],,
591                 [AC_DEFINE([HAVE_LIBSAMPLERATE_NOINT], 1,
592                 [libsamplerate doesn't provide src_int_to_float_array() (<0.1.3)])])
595 AM_CONDITIONAL(HAVE_LIBSAMPLERATE, test x$enable_lsr = xyes)
597 dnl ---------------------------------------------------------------------------
598 dnl Input Plugins
599 dnl ---------------------------------------------------------------------------
601 dnl ----------------------------------- CURL ----------------------------------
602 MPD_AUTO_PKG(curl, CURL, [libcurl],
603         [libcurl HTTP streaming], [libcurl not found])
604 if test x$enable_curl = xyes; then
605         AC_DEFINE(ENABLE_CURL, 1, [Define when libcurl is used for HTTP streaming])
607 AM_CONDITIONAL(ENABLE_CURL, test x$enable_curl = xyes)
609 dnl --------------------------------- Last.FM ---------------------------------
610 if test x$enable_lastfm = xyes; then
611         if test x$enable_curl != xyes; then
612                 AC_MSG_ERROR([Cannot enable last.fm radio without curl])
613         fi
615         AC_DEFINE(ENABLE_LASTFM, 1, [Define when last.fm radio is enabled])
617 AM_CONDITIONAL(ENABLE_LASTFM, test x$enable_lastfm = xyes)
619 dnl ---------------------------------- libmms ---------------------------------
620 MPD_AUTO_PKG(mms, MMS, [libmms >= 0.4],
621         [libmms mms:// protocol support], [libmms not found])
622 if test x$enable_mms = xyes; then
623         AC_DEFINE(ENABLE_MMS, 1,
624                 [Define when libmms is used for the MMS protocol])
626 AM_CONDITIONAL(ENABLE_MMS, test x$enable_mms = xyes)
628 dnl ---------------------------------------------------------------------------
629 dnl Archive Plugins
630 dnl ---------------------------------------------------------------------------
632 dnl --------------------------------- iso9660 ---------------------------------
633 MPD_AUTO_PKG(iso9660, ISO9660, [libiso9660],
634         [libiso9660 archive library], [libiso9660 not found])
636 AM_CONDITIONAL(HAVE_ISO9660, test x$enable_iso9660 = xyes)
637 if test x$enable_iso9660 = xyes; then
638         AC_DEFINE(HAVE_ISO9660, 1, [Define to have ISO9660 archive support])
640         AC_PATH_PROG(MKISOFS, mkisofs, no)
641 else
642         MKISOFS="no"
645 AM_CONDITIONAL(ENABLE_ISO9660_TEST, test x$MKISOFS != xno)
647 dnl ---------------------------------- libbz2 ---------------------------------
648 if test x$enable_bzip2 = xyes; then
649         AC_CHECK_LIB(bz2, BZ2_bzDecompressInit,
650                 [MPD_LIBS="$MPD_LIBS -lbz2"],
651                 [AC_MSG_ERROR([libbz2 not found])])
654 AM_CONDITIONAL(HAVE_BZ2, test x$enable_bzip2 = xyes)
655 if test x$enable_bzip2 = xyes; then
656         AC_DEFINE(HAVE_BZ2, 1, [Define to have bz2 archive support])
658         AC_PATH_PROG(BZIP2, bzip2, no)
659 else
660         BZIP2="no"
663 AM_CONDITIONAL(ENABLE_BZIP2_TEST, test x$BZIP2 != xno)
665 dnl --------------------------------- libzzip ---------------------------------
666 MPD_AUTO_PKG(zzip, ZZIP, [zziplib >= 0.13],
667         [libzzip archive library], [libzzip not found])
669 AM_CONDITIONAL(HAVE_ZZIP, test x$enable_zzip = xyes)
670 if test x$enable_zzip = xyes; then
671         AC_DEFINE(HAVE_ZZIP, 1, [Define to have zip archive support])
673         AC_PATH_PROG(ZIP, zip, no)
674 else
675         ZIP="no"
678 AM_CONDITIONAL(ENABLE_ZZIP_TEST, test x$ZIP != xno)
680 dnl ------------------------------- Archive API -------------------------------
682         test x$enable_bzip2 = xyes ||
683         test x$enable_zzip = xyes ||
684         test x$enable_iso9660 = xyes; then
685                 enable_archive=yes
686                 AC_DEFINE(ENABLE_ARCHIVE, 1, [The archive API is available])
687 else
688         enable_archive=no
691 AM_CONDITIONAL(ENABLE_ARCHIVE, test x$enable_archive = xyes)
695 dnl metadata
700 dnl decoder plugins
703 MPD_AUTO_PKG(audiofile, AUDIOFILE, [audiofile >= 0.1.7],
704         [audiofile decoder plugin], [libaudiofile not found])
705 AM_CONDITIONAL(HAVE_AUDIOFILE, test x$enable_audiofile = xyes)
706 if test x$enable_audiofile = xyes; then
707         AC_DEFINE(HAVE_AUDIOFILE, 1, [Define for audiofile support])
710 dnl ###
711 dnl MAD mp3 decoder
712 dnl ###
714 MPD_AUTO_PKG(mad, MAD, [mad],
715         [libmad MP3 decoder plugin], [libmad not found])
716 if test x$enable_mad = xyes; then
717         AC_DEFINE(HAVE_MAD, 1, [Define to use libmad])
719 AM_CONDITIONAL(HAVE_MAD, test x$enable_mad = xyes)
721 MPD_AUTO_PKG(mpg123, MPG123, [libmpg123],
722         [libmpg123 decoder plugin], [libmpg123 not found])
723 if test x$enable_mpg123 = xyes; then
724         AC_DEFINE(HAVE_MPG123, 1, [Define to use libmpg123])
726 AM_CONDITIONAL(HAVE_MPG123, test x$enable_mpg123 = xyes)
728 if test x$enable_mikmod = xyes; then
729         AC_PATH_PROG(LIBMIKMOD_CONFIG, libmikmod-config)
730         if test x$LIBMIKMOD_CONFIG != x ; then
731                 AC_SUBST(LIBMIKMOD_CFLAGS, `$LIBMIKMOD_CONFIG --cflags`)
732                 AC_SUBST(LIBMIKMOD_LIBS, `$LIBMIKMOD_CONFIG --libs`)
733                 AC_DEFINE(ENABLE_MIKMOD_DECODER, 1, [Define for mikmod support])
734         else
735                 enable_mikmod=no
736         fi
739 AM_CONDITIONAL(ENABLE_MIKMOD_DECODER, test x$enable_mikmod = xyes)
741 found_modplug=$HAVE_CXX
742 MPD_AUTO_PRE(modplug, [modplug decoder plugin], [No C++ compiler found])
744 MPD_AUTO_PKG(modplug, MODPLUG, [libmodplug],
745         [modplug decoder plugin], [libmodplug not found])
746 AM_CONDITIONAL(HAVE_MODPLUG, test x$enable_modplug = xyes)
747 if test x$enable_modplug = xyes; then
748         AC_DEFINE(HAVE_MODPLUG, 1, [Define for modplug support])
751 AC_ARG_ENABLE(gme,
752         AS_HELP_STRING([--enable-gme],
753                 [enable Blargg's game music emulator plugin]),,
754         enable_gme=auto)
756 MPD_AUTO_PKG(gme, GME, [libgme],
757         [gme decoder plugin], [libgme not found])
758 AM_CONDITIONAL(HAVE_GME, test x$enable_gme = xyes)
759 if test x$enable_gme = xyes; then
760         AC_DEFINE(HAVE_GME, 1, [Define for gme support])
763 AC_ARG_ENABLE(mpc,
764         AS_HELP_STRING([--disable-mpc],
765                 [disable musepack (MPC) support (default: enable)]),,
766         enable_mpc=yes)
768 AC_ARG_ENABLE(oggflac,
769         AS_HELP_STRING([--disable-oggflac],
770                 [disable OggFLAC support (default: enable)]),,
771         enable_oggflac=yes)
773 AC_ARG_ENABLE(vorbis,
774         AS_HELP_STRING([--disable-vorbis],
775                 [disable Ogg Vorbis support (default: enable)]),,
776         enable_vorbis=yes)
778 AC_ARG_ENABLE(sndfile,
779         AS_HELP_STRING([--enable-sndfile],
780                 [enable sndfile support]),,
781         enable_sndfile=auto)
783 if test x$enable_sndfile = xauto && test x$enable_modplug = xyes; then
784         dnl If modplug is enabled, enable sndfile only if explicitly
785         dnl requested - modplug's modplug/sndfile.h is known to
786         dnl conflict with libsndfile's sndfile.h.
787         AC_MSG_NOTICE([disabling libsndfile auto-detection, because the modplug decoder is enabled])
788         enable_sndfile=no
791 MPD_AUTO_PKG(sndfile, SNDFILE, [sndfile],
792         [libsndfile decoder plugin], [libsndfile not found])
793 AM_CONDITIONAL(ENABLE_SNDFILE, test x$enable_sndfile = xyes)
794 if test x$enable_sndfile = xyes; then
795         AC_DEFINE(ENABLE_SNDFILE, 1, [Define to enable the sndfile decoder plugin])
799 dnl ###
800 dnl Ogg Tremor
801 dnl ###
803 if test x$with_tremor = xyes || test x$with_tremor = xno; then
804         use_tremor="$with_tremor"
805 else
806         tremor_prefix="$with_tremor"
807         use_tremor=yes
810 found_sidplay=$HAVE_CXX
811 MPD_AUTO_PRE(sidplay, [sidplay decoder plugin], [No C++ compiler found])
813 if test x$enable_sidplay != xno; then
814         # we're not using pkg-config here
815         # because libsidplay2's .pc file requires libtool
816         AC_HAVE_LIBRARY(sidplay2, [found_sidplay=yes], [found_sidplay=no])
817         MPD_AUTO_PRE(sidplay, [sidplay decoder plugin],
818                 [libsidplay2 not found])
821 if test x$enable_sidplay != xno; then
822         # can't use AC_HAVE_LIBRARY here, because the dash in the
823         # library name triggers an autoconf bug
824         AC_CHECK_LIB(resid-builder, main,
825                 [found_sidplay=yes], [found_sidplay=no])
827         if test x$found_sidplay = xyes; then
828                 AC_HAVE_LIBRARY(sidutils,, [found_sidplay=no])
829         fi
831         MPD_AUTO_RESULT(sidplay, [sidplay decoder plugin],
832                 [libresid-builder or libsidutils not found])
835 if test x$enable_sidplay = xyes; then
836         AC_SUBST(SIDPLAY_LIBS,"-lsidplay2 -lresid-builder -lsidutils")
837         AC_SUBST(SIDPLAY_CFLAGS,)
839         AC_DEFINE(ENABLE_SIDPLAY, 1, [Define for libsidplay2 support])
842 AM_CONDITIONAL(ENABLE_SIDPLAY, test x$enable_sidplay = xyes)
844 MPD_AUTO_PKG(wavpack, WAVPACK, [wavpack],
845         [WavPack decoder plugin], [libwavpack not found])
846 AM_CONDITIONAL(HAVE_WAVPACK, test x$enable_wavpack = xyes)
847 if test x$enable_wavpack = xyes; then
848         AC_DEFINE([HAVE_WAVPACK], 1, [Define to enable WavPack support])
853 dnl ---------------------------------------------------------------------------
854 dnl Encoders for Streaming Audio Output Plugins
855 dnl ---------------------------------------------------------------------------
857 dnl ---------------------------------------------------------------------------
858 dnl Audio Output Plugins (Nonstreaming)
859 dnl ---------------------------------------------------------------------------
861 dnl ----------------------------------- ALSA ----------------------------------
862 MPD_AUTO_PKG(alsa, ALSA, [alsa >= 0.9.0],
863         [ALSA output plugin], [libasound not found])
865 if test x$enable_alsa = xyes; then
866         AC_DEFINE(HAVE_ALSA, 1, [Define to enable ALSA support])
869 AM_CONDITIONAL(HAVE_ALSA, test x$enable_alsa = xyes)
871 dnl ----------------------------------- FIFO ----------------------------------
872 if test x$enable_fifo = xyes; then
873         AC_CHECK_FUNC([mkfifo],
874                 [enable_fifo=yes;AC_DEFINE([HAVE_FIFO], 1,
875                         [Define to enable support for writing audio to a FIFO])],
876                 [enable_fifo=no;AC_MSG_WARN([mkfifo not found -- disabling support for writing audio to a FIFO])])
879 AM_CONDITIONAL(HAVE_FIFO, test x$enable_fifo = xyes)
883 MPD_AUTO_PKG(ao, AO, [ao],
884         [libao output plugin], [libao not found])
885 if test x$enable_ao = xyes; then
886         AC_DEFINE(HAVE_AO, 1, [Define to play with ao])
889 AM_CONDITIONAL(HAVE_AO, test x$enable_ao = xyes)
891 if test x$enable_pipe_output = xyes; then
892         AC_DEFINE([ENABLE_PIPE_OUTPUT], 1,
893                 [Define to enable support for writing audio to a pipe])
895 AM_CONDITIONAL(ENABLE_PIPE_OUTPUT, test x$enable_pipe_output = xyes)
897 MPD_AUTO_PKG(jack, JACK, [jack >= 0.100],
898         [JACK output plugin], [libjack not found])
899 if test x$enable_jack = xyes; then
900         AC_DEFINE([HAVE_JACK], 1, [Define to enable JACK support])
903 if test x$enable_jack = xyes; then
904         # check whether jack_set_info_function() is available
905         old_LIBS=$LIBS
906         LIBS="$LIBS $JACK_LIBS"
908         AC_CHECK_FUNCS(jack_set_info_function)
910         LIBS=$old_LIBS
913 AM_CONDITIONAL(HAVE_JACK, test x$enable_jack = xyes)
915 MPD_AUTO_PKG(pulse, PULSE, [libpulse],
916         [PulseAudio output plugin], [libpulse not found])
917 if test x$enable_pulse = xyes; then
918         AC_DEFINE([HAVE_PULSE], 1,
919                 [Define to enable PulseAudio support])
922 AM_CONDITIONAL(HAVE_PULSE, test x$enable_pulse = xyes)
924 enable_osx=no
925 case "$host_os" in
926         darwin*)
927                 AC_DEFINE(HAVE_OSX, 1, [Define for compiling OS X support])
928                 MPD_LIBS="$MPD_LIBS -framework AudioUnit -framework CoreServices"
929                 enable_osx=yes ;;
930 esac
932 AM_CONDITIONAL(HAVE_OSX, test x$enable_osx = xyes)
934 enable_shout2="$enable_shout"
935 MPD_AUTO_PKG(shout, SHOUT, [shout],
936         [shout output plugin], [libshout not found])
937 if test x$enable_shout = xyes && test x$enable_shout2 = xauto; then
938         enable_shout=auto
941 case "$host_os" in
942         solaris*)
943                 AC_DEFINE(ENABLE_SOLARIS_OUTPUT, 1, [Define to enable Solaris /dev/audio support])
944                 enable_solaris_output=yes
945                 ;;
947         *)
948                 enable_solaris_output=no
949                 ;;
950 esac
952 AM_CONDITIONAL(ENABLE_SOLARIS_OUTPUT, test x$enable_solaris_output = xyes)
954 if test x$enable_oss = xyes; then
955         AC_CHECK_HEADER(sys/soundcard.h,
956                 [enable_oss=yes;AC_DEFINE(HAVE_OSS,1,[Define to enable OSS])],
957                 [AC_MSG_WARN(Soundcard headers not found -- disabling OSS support);
958                         enable_oss=no])
961 AM_CONDITIONAL(HAVE_OSS, test x$enable_oss = xyes)
963 AC_SUBST(OPENAL_CFLAGS,"")
964 AC_SUBST(OPENAL_LIBS,"")
966 if test x$enable_openal = xyes; then
967         if test x$enable_osx = xyes; then
968                 AC_CHECK_HEADERS([OpenAL/al.h OpenAL/alc.h], [], [enable_openal=no])
969                 if test x$enable_openal = xyes; then
970                         OPENAL_LIBS="-framework OpenAL"
971                         AC_DEFINE(HAVE_OPENAL, 1, [Define for OpenAL support])
972                 else
973                         AC_MSG_WARN(OpenAL headers not found -- disabling OpenAL support)
974                 fi
975         else
976                 PKG_CHECK_MODULES([OPENAL], [openal],
977                         AC_DEFINE(HAVE_OPENAL, 1, [Define for OpenAL support]),
978                         enable_openal=no)
979         fi
982 AM_CONDITIONAL(HAVE_OPENAL, test x$enable_openal = xyes)
986 if test x$enable_mvp = xyes; then
987    AC_DEFINE(HAVE_MVP,1,[Define to enable Hauppauge Media MVP support])
990 AM_CONDITIONAL(HAVE_MVP, test x$enable_mvp = xyes)
992 if test x$enable_mpc = xyes; then
993         if test "x$mpcdec_libraries" != "x" ; then
994                 MPCDEC_LIBS="-L$mpcdec_libraries"
995         elif test "x$mpcdec_prefix" != "x" ; then
996                 MPCDEC_LIBS="-L$mpcdec_prefix/lib"
997         fi
999         MPCDEC_LIBS="$MPCDEC_LIBS -lmpcdec"
1001         if test "x$mpcdec_includes" != "x" ; then
1002                 MPCDEC_CFLAGS="-I$mpcdec_includes"
1003         elif test "x$mpcdec_prefix" != "x" ; then
1004                 MPCDEC_CFLAGS="-I$mpcdec_prefix/include"
1005         fi
1007         oldcflags=$CFLAGS
1008         oldlibs=$LIBS
1009         oldcppflags=$CPPFLAGS
1010         CFLAGS="$CFLAGS $MPD_CFLAGS $MPCDEC_CFLAGS -I."
1011         LIBS="$LIBS $MPD_LIBS $MPCDEC_LIBS"
1012         CPPFLAGS=$CFLAGS
1013         AC_CHECK_HEADER(mpc/mpcdec.h,
1014                 old_mpcdec=no,
1015                 [AC_CHECK_HEADER(mpcdec/mpcdec.h,
1016                         old_mpcdec=yes,
1017                         enable_mpc=no)])
1018         if test x$enable_mpc = xyes; then
1019                 AC_CHECK_LIB(mpcdec,main,
1020                         [MPD_LIBS="$MPD_LIBS $MPCDEC_LIBS";
1021                         MPD_CFLAGS="$MPD_CFLAGS $MPCDEC_CFLAGS";],
1022                         enable_mpc=no)
1023         fi
1024         if test x$enable_mpc = xyes; then
1025                 AC_DEFINE(HAVE_MPCDEC,1,
1026                         [Define to use libmpcdec for MPC decoding])
1027                 if test x$old_mpcdec = xyes; then
1028                         AC_DEFINE(MPC_IS_OLD_API, 1,
1029                                 [Define if an old pre-SV8 libmpcdec is used])
1030                 fi
1031         else
1032                 AC_MSG_WARN([mpcdec lib needed for MPC support -- disabling MPC support])
1033         fi
1034         CFLAGS=$oldcflags
1035         LIBS=$oldlibs
1036         CPPFLAGS=$oldcppflags
1039 AM_CONDITIONAL(HAVE_MPCDEC, test x$enable_mpc = xyes)
1041 AM_PATH_FAAD()
1043 AM_CONDITIONAL(HAVE_FAAD, test x$enable_aac = xyes)
1045 AM_CONDITIONAL(HAVE_MP4, test x$enable_mp4 = xyes)
1047 if test x$use_tremor = xyes; then
1048         if test "x$tremor_libraries" != "x" ; then
1049                 TREMOR_LIBS="-L$tremor_libraries"
1050         elif test "x$tremor_prefix" != "x" ; then
1051                 TREMOR_LIBS="-L$tremor_prefix/lib"
1052         fi
1053         TREMOR_LIBS="$TREMOR_LIBS -lvorbisidec"
1054         if test "x$tremor_includes" != "x" ; then
1055                 TREMOR_CFLAGS="-I$tremor_includes"
1056         elif test "x$tremor_prefix" != "x" ; then
1057                 TREMOR_CFLAGS="-I$tremor_prefix/include"
1058         fi
1059         ac_save_CFLAGS="$CFLAGS"
1060         ac_save_LIBS="$LIBS"
1061         CFLAGS="$CFLAGS $TREMOR_CFLAGS"
1062         LIBS="$LIBS $TREMOR_LIBS"
1063         AC_CHECK_LIB(vorbisidec,ov_read,enable_vorbis=yes,enable_vorbis=no;
1064                 AC_MSG_WARN([vorbisidec lib needed for ogg support with tremor -- disabling ogg support]))
1065         CFLAGS="$ac_save_CFLAGS"
1066         LIBS="$ac_save_LIBS"
1067         if test x$enable_vorbis = xyes; then
1068                 AC_DEFINE(ENABLE_VORBIS_DECODER, 1, [Define for Ogg Vorbis support])
1069         fi
1070 elif test x$enable_vorbis = xyes; then
1071         PKG_CHECK_MODULES(VORBIS, [ogg vorbis vorbisfile],
1072                 AC_DEFINE(ENABLE_VORBIS_DECODER, 1, [Define for Ogg Vorbis support]),
1073                 enable_vorbis=no)
1076 AM_CONDITIONAL(ENABLE_VORBIS_DECODER, test x$enable_vorbis = xyes)
1078 if test x$use_tremor = xyes; then
1079         AC_DEFINE(HAVE_TREMOR,1,
1080                 [Define to use tremor (libvorbisidec) for ogg support])
1081         if test x$enable_oggflac = xyes; then
1082                 AC_MSG_WARN([disabling OggFLAC support because it is incompatible with tremor])
1083                 enable_oggflac=no
1084         fi
1087 AC_SUBST(TREMOR_CFLAGS)
1088 AC_SUBST(TREMOR_LIBS)
1090 if test x$enable_flac = xyes; then
1091         PKG_CHECK_MODULES(FLAC, [flac >= 1.1],
1092                 AC_DEFINE(HAVE_FLAC, 1, [Define for FLAC support]),
1093                 enable_flac=no)
1095         oldcflags="$CFLAGS"
1096         oldlibs="$LIBS"
1097         CFLAGS="$CFLAGS $FLAC_CFLAGS"
1098         LIBS="$LIBS $FLAC_LIBS"
1099         if test x$enable_flac = xyes && test x$enable_oggflac = xyes; then
1100                 AC_CHECK_DECL(FLAC_API_SUPPORTS_OGG_FLAC,
1101                         [enable_oggflac=flac], [],
1102                         [#include <FLAC/export.h>])
1103         fi
1104         CFLAGS="$oldcflags"
1105         LIBS="$oldlibs"
1108 AM_CONDITIONAL(HAVE_FLAC, test x$enable_flac = xyes)
1110 enable_flac_encoder=$enable_flac
1112 if test x$enable_oggflac = xyes; then
1113         oldmpdcflags="$MPD_CFLAGS"
1114         oldmpdlibs="$MPD_LIBS"
1115         AM_PATH_LIBOGGFLAC(MPD_LIBS="$MPD_LIBS $LIBOGGFLAC_LIBS"
1116                                 MPD_CFLAGS="$MPD_CFLAGS $LIBOGGFLAC_CFLAGS",
1117                            enable_oggflac=no)
1120 if test x$enable_oggflac = xyes; then
1121         AC_DEFINE(HAVE_OGGFLAC,1,[Define for OggFLAC support])
1124 AM_CONDITIONAL(HAVE_OGGFLAC, test x$enable_oggflac = xyes)
1126 AM_CONDITIONAL(HAVE_FLAC_COMMON,
1127           test x$enable_flac = xyes || test x$enable_oggflac = xyes)
1128 AM_CONDITIONAL(HAVE_OGG_COMMON,
1129           test x$enable_vorbis = xyes || test x$enable_oggflac = xyes || test x$enable_flac = xyes)
1131 MPD_AUTO_PKG(ffmpeg, FFMPEG, [libavformat libavcodec libavutil],
1132         [ffmpeg decoder library], [libavformat+libavcodec+libavutil not found])
1134 if test x$enable_ffmpeg = xyes; then
1135         old_LIBS=$LIBS
1136         LIBS="$LIBS $FFMPEG_LIBS"
1137         AC_CHECK_LIB(avcodec, avcodec_decode_audio2,,
1138                 enable_ffmpeg=no)
1139         LIBS=$old_LIBS
1142 if test x$enable_ffmpeg = xyes; then
1143         # prior to ffmpeg svn12865, you had to specify include files
1144         # without path prefix
1145         old_CPPCFLAGS=$CPPFLAGS
1146         CPPFLAGS="$CPPFLAGS $FFMPEG_CFLAGS"
1147         AC_CHECK_HEADER(libavcodec/avcodec.h,,
1148                 AC_DEFINE(OLD_FFMPEG_INCLUDES, 1,
1149                         [Define if avcodec.h instead of libavcodec/avcodec.h should be included]))
1150         CPPCFLAGS=$old_CPPFLAGS
1153 if test x$enable_ffmpeg = xyes; then
1154         AC_DEFINE(HAVE_FFMPEG, 1, [Define for FFMPEG support])
1157 AM_CONDITIONAL(HAVE_FFMPEG, test x$enable_ffmpeg = xyes)
1159 if test x$enable_fluidsynth = xyes; then
1160         PKG_CHECK_MODULES(FLUIDSYNTH, [fluidsynth],
1161                 AC_DEFINE(ENABLE_FLUIDSYNTH, 1, [Define for fluidsynth support]),
1162                 enable_fluidsynth=no)
1165 AM_CONDITIONAL(ENABLE_FLUIDSYNTH, test x$enable_fluidsynth = xyes)
1167 if test x$enable_wildmidi = xyes; then
1168         oldcflags=$CFLAGS
1169         oldlibs=$LIBS
1170         oldcppflags=$CPPFLAGS
1172         AC_CHECK_LIB(WildMidi, WildMidi_Init,,
1173                 AC_MSG_ERROR([libwildmidi not found]))
1175         CFLAGS=$oldcflags
1176         LIBS=$oldlibs
1177         CPPFLAGS=$oldcppflags
1179         AC_SUBST(WILDMIDI_LIBS,-lWildMidi)
1180         AC_SUBST(WILDMIDI_CFLAGS,)
1182         AC_DEFINE(ENABLE_WILDMIDI, 1, [Define for wildmidi support])
1185 AM_CONDITIONAL(ENABLE_WILDMIDI, test x$enable_wildmidi = xyes)
1189 dnl Encoder API and shout/httpd output plugin
1192 if test x$enable_shout = xyes || \
1193         test x$enable_recorder_output = xyes || \
1194         test x$enable_httpd_output = xyes; then
1195         # at least one output using encoders is explicitly enabled
1196         need_encoder=yes
1197 elif test x$enable_shout = xauto || \
1198         test x$enable_recorder_output = xauto || \
1199         test x$enable_httpd_output = xauto; then
1200         need_encoder=auto
1201 else
1202         # all outputs using encoders are disabled
1203         need_encoder=no
1205         # don't bother to check for encoder plugins
1206         enable_vorbis_encoder=no
1207         enable_lame_encoder=no
1208         enable_twolame_encoder=no
1209         enable_wave_encoder=no
1210         enable_flac_encoder=no
1213 MPD_AUTO_PKG(vorbis_encoder, VORBISENC, [vorbisenc],
1214         [Ogg Vorbis encoder], [libvorbisenc not found])
1216 if test x$enable_lame_encoder != xno; then
1217         AC_CHECK_HEADERS(lame/lame.h,,
1218                 [AC_CHECK_HEADERS(lame.h,, using_lame=no)])
1219         AC_CHECK_LIB(mp3lame, lame_init,, using_lame=no)
1220         if test x$using_lame != xno; then
1221                 AC_DEFINE(HAVE_LAME, 1, [Define to 1 if you have lame 3.98 or greater.])
1222                 LAME_LIBS="-lmp3lame -lm"
1223                 enable_lame_encoder=yes
1224         fi
1226         if test "$enable_lame_encoder" = "yes" -a "$using_lame" = "no"; then
1227                 AC_MSG_ERROR([LAME libraries and development support files not found.])
1228         fi
1231 AC_SUBST(LAME_LIBS)
1233 MPD_AUTO_PKG(twolame_encoder, TWOLAME, [twolame],
1234         [TwoLAME encoder], [libtwolame not found])
1236 if test x$enable_vorbis_encoder != xno ||
1237         test x$enable_lame_encoder != xno ||
1238         test x$enable_twolame_encoder != xno ||
1239         test x$enable_flac_encoder != xno ||
1240         test x$enable_wave_encoder != xno; then
1241         # at least one encoder plugin is enabled
1242         enable_encoder=yes
1243 else
1244         # no encoder plugin is enabled: disable the whole encoder API
1245         enable_encoder=no
1247         if test x$need_encoder = xyes; then
1248                 AC_MSG_ERROR([No encoder plugin found])
1249         fi
1253 if test x$enable_shout = xauto; then
1254         # handle shout auto-detection: disable if no encoder is
1255         # available
1256         if test x$enable_encoder = xyes; then
1257                 enable_shout=yes
1258         else
1259                 AC_MSG_WARN([No encoder plugin -- disabling the shout output plugin])
1260                 enable_shout=no
1261         fi
1264 if test x$enable_recorder_output = xauto; then
1265         # handle recorder auto-detection: disable if no encoder is
1266         # available
1267         if test x$enable_encoder = xyes; then
1268                 enable_recorder_output=yes
1269         else
1270                 AC_MSG_WARN([No encoder plugin -- disabling the recorder output plugin])
1271                 enable_recorder_output=no
1272         fi
1275 if test x$enable_httpd_output = xauto; then
1276         # handle HTTPD auto-detection: disable if no encoder is
1277         # available
1278         if test x$enable_encoder = xyes; then
1279                 enable_httpd_output=yes
1280         else
1281                 AC_MSG_WARN([No encoder plugin -- disabling the HTTP output plugin])
1282                 enable_httpd_output=no
1283         fi
1286 AM_CONDITIONAL(HAVE_SHOUT, test x$enable_shout = xyes)
1287 if test x$enable_shout = xyes; then
1288         AC_DEFINE(HAVE_SHOUT, 1, [Define to enable the shoutcast output])
1291 AM_CONDITIONAL(ENABLE_RECORDER_OUTPUT, test x$enable_recorder_output = xyes)
1292 if test x$enable_recorder_output = xyes; then
1293         AC_DEFINE(ENABLE_RECORDER_OUTPUT, 1, [Define to enable the recorder output])
1296 AM_CONDITIONAL(ENABLE_HTTPD_OUTPUT, test x$enable_httpd_output = xyes)
1297 if test x$enable_httpd_output = xyes; then
1298         AC_DEFINE(ENABLE_HTTPD_OUTPUT, 1, [Define to enable the HTTP server output])
1301 AM_CONDITIONAL(ENABLE_ENCODER, test x$enable_encoder = xyes)
1302 if test x$enable_encoder = xyes; then
1303         AC_DEFINE(ENABLE_ENCODER, 1,
1304                 [Define to enable the encoder plugins])
1307 AM_CONDITIONAL(ENABLE_VORBIS_ENCODER, test x$enable_vorbis_encoder = xyes)
1308 if test x$enable_vorbis_encoder = xyes; then
1309         AC_DEFINE(ENABLE_VORBIS_ENCODER, 1,
1310                 [Define to enable the vorbis encoder plugin])
1313 AM_CONDITIONAL(ENABLE_LAME_ENCODER, test x$enable_lame_encoder = xyes)
1314 if test x$enable_lame_encoder = xyes; then
1315         AC_DEFINE(ENABLE_LAME_ENCODER, 1,
1316                 [Define to enable the lame encoder plugin])
1319 AM_CONDITIONAL(ENABLE_TWOLAME_ENCODER, test x$enable_twolame_encoder = xyes)
1320 if test x$enable_twolame_encoder = xyes; then
1321         AC_DEFINE(ENABLE_TWOLAME_ENCODER, 1,
1322                 [Define to enable the TwoLAME encoder plugin])
1325 AM_CONDITIONAL(ENABLE_WAVE_ENCODER, test x$enable_wave_encoder = xyes)
1326 if test x$enable_wave_encoder = xyes; then
1327         AC_DEFINE(ENABLE_WAVE_ENCODER, 1,
1328                 [Define to enable the PCM wave encoder plugin])
1331 AM_CONDITIONAL(ENABLE_FLAC_ENCODER, test x$enable_flac_encoder = xyes)
1332 if test x$enable_flac_encoder = xyes; then
1333         AC_DEFINE(ENABLE_FLAC_ENCODER, 1,
1334                 [Define to enable the FLAC encoder plugin])
1337 dnl ---------------------------------------------------------------------------
1338 dnl Documentation
1339 dnl ---------------------------------------------------------------------------
1342 if test x$enable_documentation = xyes; then
1343         AC_PATH_PROG(XMLTO, xmlto)
1344         AC_SUBST(XMLTO)
1345         AM_CONDITIONAL(HAVE_XMLTO, test x$XMLTO != x)
1347         AC_PATH_PROG(DOXYGEN, doxygen)
1348         if test x$DOXYGEN = x; then
1349                 AC_MSG_ERROR([doxygen not found])
1350         fi
1352         AC_SUBST(DOXYGEN)
1353 else
1354         AM_CONDITIONAL(HAVE_XMLTO, false)
1357 AM_CONDITIONAL(ENABLE_DOCUMENTATION, test x$enable_documentation = xyes)
1361 dnl build options
1365 if test "x$enable_werror" = xyes; then
1366         AM_CFLAGS="$AM_CFLAGS -Werror -pedantic-errors"
1369 #if test "x$enable_debug" = xno; then
1370         # don't set NDEBUG for now, until MPD is stable
1371         #AM_CFLAGS="$AM_CFLAGS -DNDEBUG"
1374 if test "x$enable_gprof" = xyes; then
1375         MPD_CFLAGS="$MPD_CFLAGS -pg"
1376         MPD_LIBS="$MPD_LIBS -pg"
1379 dnl ---------------------------------------------------------------------------
1380 dnl test suite
1381 dnl ---------------------------------------------------------------------------
1382 AM_CONDITIONAL(ENABLE_TEST, test "x$enable_test" = xyes)
1384 dnl ---------------------------------------------------------------------------
1385 dnl CFLAGS
1386 dnl ---------------------------------------------------------------------------
1387 if test x$GCC = xyes
1388 then
1389         MPD_CHECK_FLAG([-Wall])
1390         MPD_CHECK_FLAG([-Wextra])
1391         MPD_CHECK_FLAG([-Wno-deprecated-declarations])
1392         MPD_CHECK_FLAG([-Wmissing-prototypes])
1393         MPD_CHECK_FLAG([-Wshadow])
1394         MPD_CHECK_FLAG([-Wpointer-arith])
1395         MPD_CHECK_FLAG([-Wstrict-prototypes])
1396         MPD_CHECK_FLAG([-Wcast-qual])
1397         MPD_CHECK_FLAG([-Wwrite-strings])
1398         MPD_CHECK_FLAG([-pedantic])
1401 dnl ---------------------------------------------------------------------------
1402 dnl Pretty-Print Results
1403 dnl ---------------------------------------------------------------------------
1404 echo ""
1405 echo "########### MPD CONFIGURATION ############"
1406 echo ""
1408 echo " Client Support:"
1409 if test x$enable_ipv6 = xyes; then
1410         echo " IPv6 support ..................enabled"
1411 else
1412         echo " IPv6 support ..................disabled"
1415 if test x$enable_tcp = xyes; then
1416         echo " TCP support ...................enabled"
1417 else
1418         echo " TCP support ...................disabled"
1421 if test x$enable_un = xyes; then
1422         echo " Unix domain socket support ....enabled"
1423 else
1424         echo " Unix domain socket support ....disabled"
1427 echo ""
1430         test x$enable_tcp = xno &&
1431         test x$enable_un = xno; then
1432         AC_MSG_ERROR([No client interfaces configured!])
1435 echo " Playback Support:"
1436 if test x$enable_alsa = xyes; then
1437         echo " ALSA support ..................enabled"
1438 else
1439         echo " ALSA support ..................disabled"
1442 if test x$enable_fifo = xyes; then
1443         echo " FIFO support ..................enabled"
1444 else
1445         echo " FIFO support ..................disabled"
1448 if test x$enable_recorder_output = xyes; then
1449         echo " File Recorder support .........enabled"
1450 else
1451         echo " File Recorder support .........disabled"
1454 if test x$enable_httpd_output = xyes; then
1455         echo " HTTP daemon support ...........enabled"
1456 else
1457         echo " HTTP daemon support ...........disabled"
1460 if test x$enable_jack = xyes; then
1461         echo " JACK support ..................enabled"
1462 else
1463         echo " JACK support ..................disabled"
1466 if test x$enable_ao = xyes; then
1467         echo " libao support .................enabled"
1468 else
1469         echo " libao support .................disabled"
1472 if test x$enable_oss = xyes; then
1473         echo " OSS support ...................enabled"
1474 else
1475         echo " OSS support ...................disabled"
1478 if test x$enable_openal = xyes; then
1479         echo " OpenAL support ................enabled"
1480 else
1481         echo " OpenAL support ................disabled"
1484 if test x$enable_osx = xyes; then
1485         echo " OS X support ..................enabled"
1486 else
1487         echo " OS X support ..................disabled"
1490 if test x$enable_pipe_output = xyes; then
1491         echo " Pipeline output support .......enabled"
1492 else
1493         echo " Pipeline output support .......disabled"
1496 if test x$enable_pulse = xyes; then
1497         echo " PulseAudio support ............enabled"
1498 else
1499         echo " PulseAudio support ............disabled"
1502 if test x$enable_mvp = xyes; then
1503         echo " Media MVP support .............enabled"
1504 else
1505         echo " Media MVP support .............disabled"
1508 if test x$enable_shout = xyes; then
1509         echo " SHOUTcast support .............enabled"
1510 else
1511         echo " SHOUTcast support .............disabled"
1514 if test x$enable_solaris_output = xyes; then
1515         echo " Solaris /dev/audio support ....enabled"
1516 else
1517         echo " Solaris /dev/audio support ....disabled"
1520 echo ""
1523         test x$enable_ao = xno &&
1524         test x$enable_oss = xno &&
1525         test x$enable_openal = xno &&
1526         test x$enable_shout = xno &&
1527         test x$enable_recorder_output = xno &&
1528         test x$enable_httpd_output = xno &&
1529         test x$enable_solaris_output = xno &&
1530         test x$enable_alsa = xno &&
1531         test x$enable_osx = xno &&
1532         test x$enable_pulse = xno &&
1533         test x$enable_jack = xno &&
1534         test x$enable_fifo = xno &&
1535         test x$enable_pipe_output = xno &&
1536         test x$enable_mvp = xno; then
1537                 AC_MSG_ERROR([No Audio Output types configured!])
1541         test x$enable_shout = xyes ||
1542         test x$enable_recorder = xyes ||
1543         test x$enable_httpd_output = xyes; then
1544                 echo " Streaming Encoder Support:"
1545                 if test x$enable_lame_encoder = xyes; then
1546                         echo " LAME mp3 encoder ..............enabled"
1547                 else
1548                         echo " LAME mp3 encoder ..............disabled"
1549                 fi
1551                 if test x$enable_vorbis_encoder = xyes; then
1552                         echo " Ogg Vorbis encoder ............enabled"
1553                 else
1554                         echo " Ogg Vorbis encoder ............disabled"
1555                 fi
1557                 if test x$enable_twolame_encoder = xyes; then
1558                         echo " TwoLAME mp3 encoder ...........enabled"
1559                 else
1560                         echo " TwoLAME mp3 encoder ...........disabled"
1561                 fi
1563                 if test x$enable_flac_encoder = xyes; then
1564                         echo " FLAC encoder ..................enabled"
1565                 else
1566                         echo " FLAC encoder ..................disabled"
1567                 fi
1569                 if test x$enable_wave_encoder = xyes; then
1570                         echo " PCM wave encoder ..............enabled"
1571                 else
1572                         echo " PCM wave encoder ..............disabled"
1573                 fi
1575                 echo ""
1578 echo " File Format Support:"
1580 if test x$enable_aac = xyes; then
1581         echo " AAC support ...................enabled"
1582 else
1583         echo " AAC support ...................disabled"
1586 if test x$enable_sidplay = xyes; then
1587         echo " C64 SID support ...............enabled"
1588 else
1589         echo " C64 SID support ...............disabled"
1592 if test x$enable_ffmpeg = xyes; then
1593         echo " FFMPEG support ................enabled"
1594 else
1595         echo " FFMPEG support ................disabled"
1598 if test x$enable_flac = xyes; then
1599         echo " FLAC support ..................enabled"
1600 else
1601         echo " FLAC support ..................disabled"
1604 if test x$enable_fluidsynth = xyes; then
1605         echo " fluidsynth MIDI support .......enabled"
1606 else
1607         echo " fluidsynth MIDI support .......disabled"
1610 if test x$enable_mikmod = xyes; then
1611         echo " MikMod support ................enabled"
1612 else
1613         echo " MikMod support ................disabled"
1616 if test x$enable_modplug = xyes; then
1617         echo " MODPLUG support ...............enabled"
1618 else
1619         echo " MODPLUG support ...............disabled"
1622 if test x$enable_gme = xyes; then
1623         echo " GME support ....................enabled"
1624 else
1625         echo " GME support ...................disabled"
1628 if test x$enable_mad = xyes; then
1629         echo " MAD mp3 decoder support .......enabled"
1630 else
1631         echo " MAD mp3 decoder support .......disabled"
1634 if test x$enable_mpg123 = xyes; then
1635         echo " libmpg123 decoder support .....enabled"
1636 else
1637         echo " libmpg123 decoder support .....disabled"
1640 if test x$enable_mp4 = xyes; then
1641         echo " MP4 support ...................enabled"
1642 else
1643         echo " MP4 support ...................disabled"
1646 if test x$enable_mpc = xyes; then
1647         echo " Musepack (MPC) support ........enabled"
1648 else
1649         echo " Musepack (MPC) support ........disabled"
1652 case $enable_oggflac in
1653 yes)
1654         echo " OggFLAC support ...............enabled"
1655         ;;
1656 flac)
1657         echo " OggFLAC support ...............enabled(FLAC 1.1.3)"
1658         ;;
1660         echo " OggFLAC support ...............disabled"
1661         ;;
1662 esac
1664 if test x$enable_vorbis = xyes; then
1665         echo " Ogg Vorbis support ............enabled"
1666         if test x$use_tremor = xyes; then
1667                 echo "   using tremor.................yes"
1668         else
1669                 echo "   using tremor.................no"
1670         fi
1671 else
1672         echo " Ogg Vorbis support ............disabled"
1675 if test x$enable_sndfile = xyes; then
1676         echo " libsndfile ....................enabled"
1677 else
1678         echo " libsndfile ....................disabled"
1681 if test x$enable_audiofile = xyes; then
1682         echo " Wave file support .............enabled"
1683 else
1684         echo " Wave file support .............disabled"
1687 if test x$enable_wavpack = xyes; then
1688         echo " WavPack support ...............enabled"
1689 else
1690         echo " WavPack support ...............disabled"
1693 if test x$enable_wildmidi = xyes; then
1694         echo " wildmidi MIDI support .........enabled"
1695 else
1696         echo " wildmidi MIDI support .........disabled"
1702         test x$enable_mad = xno &&
1703         test x$enable_mpg123 = xno &&
1704         test x$enable_vorbis = xno &&
1705         test x$enable_flac = xno && 
1706         test x$enable_oggflac = xno &&
1707         test x$enable_audiofile = xno && 
1708         test x$enable_aac = xno &&
1709         test x$enable_mpc = xno &&
1710         test x$enable_wavpack = xno &&
1711         test x$enable_ffmpeg = xno &&
1712         test x$enable_modplug = xno &&
1713         test x$enable_sidplay = xno &&
1714         test x$enable_gme = xno &&
1715         test x$enable_fluidsynth = xno &&
1716         test x$enable_wildmidi = xno &&
1717         test x$enable_mp4 = xno &&
1718         test x$enable_mikmod = xno; then
1719                 AC_MSG_ERROR([No input plugins supported!])
1722 echo ""
1723 echo " Archive support:"
1725 if test x$enable_bzip2 = xyes; then
1726         echo " BZ2 archives support ..........enabled"
1727 else
1728         echo " BZ2 archives support ..........disabled"
1731 if test x$enable_iso9660 = xyes; then
1732         echo " ISO 9660 archives support .....enabled"
1733 else
1734         echo " ISO 9660 archives support .....disabled"
1737 if test x$enable_zzip = xyes; then
1738         echo " ZIP archives support ..........enabled"
1739 else
1740         echo " ZIP archives support ..........disabled"
1743 echo ""
1744 echo " Streaming support:"
1746 if test x$enable_lastfm = xyes; then
1747         echo " last.fm radio support .........enabled"
1748 else
1749         echo " last.fm radio support .........disabled"
1752 if test x$enable_curl = xyes; then
1753         echo " libcurl support (streaming) ...enabled"
1754 else
1755         echo " libcurl support (streaming) ...disabled"
1758 if test x$enable_mms = xyes; then
1759         echo " libmms support ................enabled"
1760 else
1761         echo " libmms support ................disabled"
1764 echo ""
1765 echo " Other features:"
1767 if test x$enable_id3 = xyes; then
1768         echo " ID3 tag support ...............enabled"
1769 else
1770         echo " ID3 tag support ...............disabled"
1773 if test x$enable_lsr = xyes; then
1774         echo " libsamplerate support .........enabled"
1775 else
1776         echo " libsamplerate support .........disabled"
1779 if test x$with_zeroconf != xno; then
1780         echo " Zeroconf support ..............$with_zeroconf"
1781 else
1782         echo " Zeroconf support ..............disabled"
1785 if test x$enable_cue = xyes; then
1786         echo " libcue support ................enabled"
1787 else
1788         echo " libcue support ................disabled"
1791 if test x$enable_inotify = xyes; then
1792         echo " Inotify support (autoupdate) ..enabled"
1793 else
1794         echo " Inotify support (autoupdate) ..disabled"
1797 echo ""
1798 echo "##########################################"
1799 echo ""
1801 if test x$enable_sndfile = xyes && test x$enable_modplug = xyes; then
1802         AC_MSG_WARN([compilation may fail, because libmodplug conflicts with libsndfile])
1803         AC_MSG_WARN([libmodplug ships modplug/sndfile.h, which hides libsndfile's sndfile.h])
1806 echo "Generating needed files for compilation"
1807 echo ""
1810 dnl generate files
1813 AC_OUTPUT(Makefile)
1815 echo ""
1817 echo "You are now ready to compile MPD"
1818 echo "Type \"make\" to compile MPD"