X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/22b9fa74de8e80471a5033ea067d3b360930b91d..5e3f9e08eb169a1923e19ca546383ace42846dbe:/configure.ac diff --git a/configure.ac b/configure.ac index 0384893..8b07fd8 100644 --- a/configure.ac +++ b/configure.ac @@ -29,20 +29,22 @@ AM_CONFIG_HEADER([config.h]) AC_CANONICAL_HOST # What we want to build -want_server=yes want_gtk=yes want_python=yes case "$host" in *linux* | *Linux* ) want_alsa=yes + want_server=yes ;; *-apple-darwin* ) want_alsa=no + want_server=no COREAUDIO="-framework CoreAudio" ;; * ) want_alsa=no + want_server=no ;; esac AC_SUBST([COREAUDIO]) @@ -144,6 +146,9 @@ if test $want_server = yes; then AC_CHECK_LIB([ao], [ao_initialize], [AC_SUBST(LIBAO,[-lao])], [missing_libraries="$missing_libraries libao"]) + AC_CHECK_LIB([FLAC], [FLAC__stream_decoder_new], + [AC_SUBST(LIBFLAC,[-lFLAC])], + [missing_libraries="$missing_libraries libFLAC"]) fi if test $want_alsa = yes; then AC_CHECK_LIB([asound], [snd_pcm_open],