blob: bb56c4d4c9fdf8d50617c6cb159c224b25cd7f8b [file] [log] [blame]
Andrew Geissler97771a32021-03-05 15:23:11 -06001From 867bf5c9d0fb64e1b4e64cb13b983674c270a6bf Mon Sep 17 00:00:00 2001
2From: Yi Fan Yu <yifan.yu@windriver.com>
3Date: Fri, 19 Feb 2021 00:52:35 -0500
4Subject: [PATCH] aclocal.m4: Skip checking for pcap-config
5
6Bitbake triggers an configure error
7saying we should look for pkg-config instead.
8
9Upstream-Status: Inappropriate [OE-Specific]
10
11Signed-off-by: Yi Fan Yu <yifan.yu@windriver.com>
12---
13 aclocal.m4 | 4 ++--
14 1 file changed, 2 insertions(+), 2 deletions(-)
15
16diff --git a/aclocal.m4 b/aclocal.m4
17index bd4e27a5..136cb8ca 100644
18--- a/aclocal.m4
19+++ b/aclocal.m4
20@@ -584,8 +584,8 @@ AC_DEFUN(AC_LBL_LIBPCAP,
21 # No pkg-config
22 # Look for an installed pcap-config.
23 #
24- AC_PATH_TOOL(PCAP_CONFIG, pcap-config)
25- if test -n "$PCAP_CONFIG" ; then
26+ # AC_PATH_TOOL(PCAP_CONFIG, pcap-config)
27+ if false; then
28 #
29 # Found - use it to get the include flags for
30 # libpcap and the flags to link with libpcap.
31--
322.29.2
33