X-Git-Url: https://git.distorted.org.uk/~mdw/disorder/blobdiff_plain/187f23fb26e9c57532c041d95f931868da975c77..5330d674656f13820c3426723f7c03bb54a9ef59:/configure.ac diff --git a/configure.ac b/configure.ac index 8ec0008..7bf4ebf 100644 --- a/configure.ac +++ b/configure.ac @@ -35,10 +35,10 @@ want_python=yes case "$host" in *linux* | *Linux* ) - want_speaker=yes + want_alsa=yes ;; * ) - want_speaker=no + want_alsa=no ;; esac @@ -134,18 +134,11 @@ if test $want_server = yes; then AC_CHECK_LIB([ao], [ao_initialize], [AC_SUBST(LIBAO,[-lao])], [missing_libraries="$missing_libraries libao"]) - if test $want_speaker = yes; then - case "$host" in - *linux* | *Linux* ) - AC_CHECK_LIB([asound], [snd_pcm_open], - [AC_SUBST(LIBASOUND,[-lasound])], - [missing_libraries="$missing_libraries libasound"]) - AC_DEFINE([BUILD_SPEAKER],[1],[define to build the speaker subprocess]) - ;; - * ) - AC_MSG_ERROR([want to build speaker for unknown sound API]) - ;; - esac + 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 fi @@ -206,6 +199,7 @@ fi AC_C_CONST AC_TYPE_SIZE_T AC_C_INLINE +AC_C_BIGENDIAN AC_CHECK_TYPES([struct sockaddr_in6],,,[AC_INCLUDES_DEFAULT #include ])