aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/acinclude.m4
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-01-27 23:47:16 +0000
committerGuy Harris <guy@alum.mit.edu>2001-01-27 23:47:16 +0000
commit67fb5332334da6483ef4a843521c1df4ab731ace (patch)
treefb5f866a2117002b5357b905b5fd98474d633cbd /wiretap/acinclude.m4
parent2865386fe487ce65ec669b7ddeff35b6d5c71fa3 (diff)
"autoheader" recognizes AC_CHECK_HEADERS as a macro that defines
HAVE_XXX_H if xxx.h is present, but doesn't recognize AC_CHECK_HEADER as such, and thus doesn't put anything about HAVE_XXX_H into "config.h.in", and thus HAVE_XXX_H doesn't get defined even if xxx.h is present. svn path=/trunk/; revision=2942
Diffstat (limited to 'wiretap/acinclude.m4')
-rw-r--r--wiretap/acinclude.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/wiretap/acinclude.m4 b/wiretap/acinclude.m4
index 131c1b0e30..cb6c9b9b6e 100644
--- a/wiretap/acinclude.m4
+++ b/wiretap/acinclude.m4
@@ -2,7 +2,7 @@ dnl Macros that test for specific features.
dnl This file is part of the Autoconf packaging for Ethereal.
dnl Copyright (C) 1998-2000 by Gerald Combs.
dnl
-dnl $Id: acinclude.m4,v 1.6 2000/08/25 06:25:20 guy Exp $
+dnl $Id: acinclude.m4,v 1.7 2001/01/27 23:47:16 guy Exp $
dnl
# Configure paths for GLIB
@@ -226,7 +226,7 @@ AC_DEFUN(AC_WIRETAP_PCAP_CHECK,
fi
# Pcap header check
- AC_CHECK_HEADER(pcap.h)
+ AC_CHECK_HEADERS(pcap.h)
])
#