aboutsummaryrefslogtreecommitdiffstats
path: root/acinclude.m4
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2006-09-04 14:16:50 +0000
committerJörg Mayer <jmayer@loplof.de>2006-09-04 14:16:50 +0000
commit2b6f72aa98d5c5a22c503498bcb8c8ac574363f7 (patch)
tree3a8b4774ac0cc8d9f271f883ff65fe96b3e81a32 /acinclude.m4
parent6f7f25b8d5da162a9dd5a04d696dc2829b0690b0 (diff)
After some reading it is clear that the code was written for
portaudio versions <= 18. At least Suse 10.1 provides a snapshot of version 19, which, in turn has the brand new and incompatible version 2.0 of the API. Change the error message to tell the user that he needs portaudio <= 18. svn path=/trunk/; revision=19133
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 3f6bbd7465..017fb5bc25 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -1053,7 +1053,7 @@ AC_DEFUN([AC_WIRESHARK_LIBPORTAUDIO_CHECK],[
PORTAUDIO_LIBS=""
if test x$want_portaudio = xyes;
then
- AC_MSG_ERROR(Wrong version of portaudio includes)
+ AC_MSG_ERROR([Wrong version of portaudio, need <= 18])
else
want_portaudio=no
fi