aboutsummaryrefslogtreecommitdiff
path: root/ports/libcrafter/fix-build-error.patch
blob: cc97b4a6315616c549bc1ead14a42db328cd6e19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
diff --git a/libcrafter/configure.ac b/libcrafter/configure.ac
index 860d98b..b04ccce 100644
--- a/libcrafter/configure.ac
+++ b/libcrafter/configure.ac
@@ -35,14 +35,13 @@ AC_ARG_WITH(libpcap,
 	PCAPINC="-I$withval -I$withval/bpf"
 	PCAPLIB="-L$withval -lpcap"
      elif test -f $withval/include/pcap.h -a \
-	       -f $withval/include/net/bpf.h -a \
 	       -f $withval/lib/libpcap.a; then
 	owd=`pwd`
 	if cd $withval; then withval=`pwd`; cd $owd; fi
 	PCAPINC="-I$withval/include"
 	PCAPLIB="-L$withval/lib -lpcap"
      else
-        AC_ERROR(pcap.h, net/bpf.h, or libpcap.a not found in $withval)
+        AC_ERROR(pcap.h, or libpcap.a not found in $withval)
      fi
      ;;
   esac ],