1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-04 06:15:24 +00:00

security/arpCounterattack: fix build failure

PR:		236440
Submitted by:	w.schwarzenfeld@utanet.at
Reported by:	my-roaming-data@outlook.com
This commit is contained in:
Steve Wills 2019-05-24 16:06:31 +00:00
parent ea651604c0
commit 202da1d546
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=502484
3 changed files with 17 additions and 9 deletions

View File

@ -3,7 +3,7 @@
PORTNAME= arpCounterattack
PORTVERSION= 1.2.0
PORTREVISION= 6
PORTREVISION= 7
CATEGORIES= security
MASTER_SITES= http://isis.poly.edu/~bk/${PORTNAME}/ \
http://bk.macroblock.net/${PORTNAME}/
@ -11,14 +11,15 @@ MASTER_SITES= http://isis.poly.edu/~bk/${PORTNAME}/ \
MAINTAINER= ports@FreeBSD.org
COMMENT= Detects and remedies ARP attacks
LIB_DEPENDS= libdnet.so:net/libdnet
LIB_DEPENDS= libdnet.so:net/libdnet \
libpcap.so:net/libpcap
USES= compiler:c++11-lib tar:tbz
USE_CSTD= c++11
SUB_FILES= pkg-message
USE_RC_SUBR= ${PORTNAME}
SUB_FILES= pkg-message
do-install:
@${MKDIR} ${STAGEDIR}${PREFIX}/etc/arpCounterattack
${INSTALL_PROGRAM} ${WRKSRC}/arpCounterattack \

View File

@ -1,4 +1,4 @@
--- address.hpp.orig 2010-09-28 18:12:26.000000000 +0000
--- address.hpp.orig 2010-09-28 18:12:26 UTC
+++ address.hpp
@@ -28,7 +28,7 @@
#include <sys/socket.h>
@ -18,7 +18,7 @@
return std::string((char*)binaryEthernetAddress.octet, ETHER_ADDR_LEN);
#endif
#ifdef __linux__
@@ -60,7 +60,7 @@ std::string textToEthernet(const std::st
@@ -60,7 +60,7 @@ std::string textToEthernet(const std::string &textEthe
std::string ethernetToText(const char *binaryEthernetAddress) {
ether_addr _binaryEthernetAddress;
char textEthernetAddress[17];

View File

@ -1,6 +1,6 @@
--- arpCounterattack.cpp.orig 2010-11-04 01:26:49.000000000 +0000
--- arpCounterattack.cpp.orig 2019-03-13 08:10:31 UTC
+++ arpCounterattack.cpp
@@ -25,7 +25,7 @@
@@ -25,13 +25,14 @@
#include <fstream>
#include <iostream>
#include <queue>
@ -9,7 +9,14 @@
#include <vector>
#ifdef __FreeBSD__
@@ -47,7 +47,6 @@
#include <sys/ioctl.h>
#endif
+#include <net/bpf.h>
#include <errno.h>
#include <pcap.h>
#include <signal.h>
@@ -47,7 +48,6 @@
#include "string.hpp"
using namespace std;