aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2006-09-04 13:34:48 +0000
committerJörg Mayer <jmayer@loplof.de>2006-09-04 13:34:48 +0000
commit56934c59cb84d17b19af45b3128d936bed2cc826 (patch)
tree3dc814c44c01d2a96e56a8b4cb00923ca8b9d515 /configure.in
parent76192b1c6c0d1a4b48ae990c5a0cbecb810cff01 (diff)
Use portaudio if it's there. Check that we have the right version.
Note: This check is currently carried out by checking that the include defines PortAudioStream. If you know of any better check, please let me know. acinclude.m4: Replace sequences of 8 spaces by tab svn path=/trunk/; revision=19131
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in
index 05ab75bd32..293f2b3bcd 100644
--- a/configure.in
+++ b/configure.in
@@ -825,7 +825,7 @@ dnl portaudio check
AC_MSG_CHECKING(whether to use libportaudio for the rtp_player)
AC_ARG_WITH(portaudio,
-[ --with-portaudio[[=DIR]] use libportaudio (located in directory DIR, if supplied) for the rtp_player. [[default=no]]],
+[ --with-portaudio[[=DIR]] use libportaudio (located in directory DIR, if supplied) for the rtp_player. [[default=yes, if available]]],
[
if test $withval = no
then
@@ -839,9 +839,9 @@ AC_ARG_WITH(portaudio,
fi
],[
#
- # Don't use libportaudio by default
+ # Use libportaudio by default
#
- want_portaudio=no
+ want_portaudio=ifavailable
portaudio_dir=
])
if test "x$want_portaudio" = "xno" ; then