aboutsummaryrefslogtreecommitdiffstats
path: root/acinclude.m4
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2006-09-04 22:47:16 +0000
committerGuy Harris <guy@alum.mit.edu>2006-09-04 22:47:16 +0000
commit6b70649f74e0aeb7f37b8da95f544fc921fdb509 (patch)
treeb42d44b393f20da689866d942fd7205766a49245 /acinclude.m4
parentc99428334a78b75e83e4635fc77698590ce67131 (diff)
AC_CHECK_TYPE outputs a "Checking..." message; we don't need to issue
one ourselves. The documentation for autoconf isn't very clear on the "includes" argument to AC_CHECK_TYPE - it's in the form of a list of #include statements. svn path=/trunk/; revision=19140
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m43
1 files changed, 1 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 017fb5bc25..4393964ada 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -1043,7 +1043,6 @@ AC_DEFUN([AC_WIRESHARK_LIBPORTAUDIO_CHECK],[
#
if test "x$want_portaudio" != "xno"
then
- AC_MSG_CHECKING(whether PortAudioStream is defined in portaudio.h)
AC_CHECK_TYPE(PortAudioStream,,
[
CFLAGS="$wireshark_save_CFLAGS"
@@ -1058,7 +1057,7 @@ AC_DEFUN([AC_WIRESHARK_LIBPORTAUDIO_CHECK],[
want_portaudio=no
fi
],
- [INCLUDES=portaudio.h])
+ [#include <portaudio.h>])
fi
if test "x$want_portaudio" != "xno"