X-Git-Url: https://git.distorted.org.uk/~mdw/disorder/blobdiff_plain/460b9539a7c15580e41a71bbc0f47ae776238915..a086212ad11a85ba241931fbfd696c42d0513eeb:/configure.ac diff --git a/configure.ac b/configure.ac index 4895914..c87a40a 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ # Process this file with autoconf to produce a configure script. # # This file is part of DisOrder. -# Copyright (C) 2004, 2005, 2006 Richard Kettlewell +# Copyright (C) 2004, 2005, 2006, 2007 Richard Kettlewell # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -25,11 +25,23 @@ AM_INIT_AUTOMAKE(disorder, 1.5.1+) AC_CONFIG_SRCDIR([server/disorderd.c]) AM_CONFIG_HEADER([config.h]) +# Find host type +AC_CANONICAL_HOST + # What we want to build want_server=yes want_gtk=yes want_python=yes +case "$host" in +*linux* | *Linux* ) + want_speaker=yes + ;; +* ) + want_speaker=no + ;; +esac + # Checks for programs. AC_PROG_CC AC_SET_MAKE @@ -122,9 +134,19 @@ if test $want_server = yes; then AC_CHECK_LIB([ao], [ao_initialize], [AC_SUBST(LIBAO,[-lao])], [missing_libraries="$missing_libraries libao"]) - AC_CHECK_LIB([asound], [snd_pcm_open], - [AC_SUBST(LIBASOUND,[-lasound])], - [missing_libraries="$missing_libraries libasound"]) + 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 + fi fi if test $want_gtk = yes; then @@ -380,4 +402,3 @@ AC_CONFIG_FILES([Makefile python/Makefile examples/Makefile]) AC_OUTPUT -# arch-tag:cb633d20520a61a924cd528cef926ec1