chiark / gitweb /
fix auth docs
[disorder] / configure.ac
index 466f232ed07a850d3aa8bb9aea17a0c3cf370c9c..8b07fd83b1c23a9773fc312e978b1722a9097415 100644 (file)
@@ -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,12 +146,15 @@ if test $want_server = yes; then
   AC_CHECK_LIB([ao], [ao_initialize],
               [AC_SUBST(LIBAO,[-lao])],
               [missing_libraries="$missing_libraries libao"])
-  if test $want_alsa = yes; then
-    AC_CHECK_LIB([asound], [snd_pcm_open],
-                [AC_SUBST(LIBASOUND,[-lasound])],
-                [missing_libraries="$missing_libraries libasound"])
-    AC_DEFINE([API_ALSA],[1],[define to use the ALSA API])
-  fi
+  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],
+               [AC_SUBST(LIBASOUND,[-lasound])],
+              [missing_libraries="$missing_libraries libasound"])
+  AC_DEFINE([API_ALSA],[1],[define to use the ALSA API])
 fi
 
 if test $want_gtk = yes; then