Skip to content

Commit

Permalink
Add build error patch
Browse files Browse the repository at this point in the history
  • Loading branch information
NancyLi1013 committed Oct 12, 2019
1 parent 038e1c6 commit f34bf60
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
20 changes: 20 additions & 0 deletions ports/libcrafter/fix-build-error.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,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 ],
1 change: 1 addition & 0 deletions ports/libcrafter/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ vcpkg_from_github(
REF version-0.3
SHA512 7c396ba942b304dddfaa569adb44697f75568d3ef2ed48dda758e281f3b7c172439309033bbf5498069a4a61a952f93e41af99b129ce874ce76b5ec08da58116
HEAD_REF master
PATCHES fix-build-error.patch
)

vcpkg_configure_make(
Expand Down

0 comments on commit f34bf60

Please sign in to comment.