View | Details | Raw Unified | Return to bug 243522 | Differences between
and this patch

Collapse All | Expand All

(-)net/tcpslice/Makefile (+3 lines)
Lines 15-20 Link Here
15
15
16
GNU_CONFIGURE=	yes
16
GNU_CONFIGURE=	yes
17
17
18
# Works better on 64-bit with pcap-int.h
19
CPPFLAGS+=	-I${SRC_BASE}/contrib/libpcap
20
18
USE_GITHUB=	yes
21
USE_GITHUB=	yes
19
GH_ACCOUNT=	the-tcpdump-group
22
GH_ACCOUNT=	the-tcpdump-group
20
GH_TAGNAME=	2837b72
23
GH_TAGNAME=	2837b72
(-)net/tcpslice/files/patch-search.c (+24 lines)
Line 0 Link Here
1
--- search.c.orig	2020-05-15 03:20:29 UTC
2
+++ search.c
3
@@ -29,16 +29,17 @@
4
 
5
 #include <sys/types.h>
6
 
7
-#include <pcap.h>
8
-#ifdef HAVE_PCAP_INT_H
9
-#include <pcap-int.h>		/* because we are directly reading the file */
10
-#endif
11
 #include <stdio.h>
12
 #include <stdlib.h>
13
 #include <string.h>
14
 #include <time.h>
15
 #include <unistd.h>
16
 
17
+#include <pcap.h>
18
+#ifdef HAVE_PCAP_INT_H
19
+#include <pcap-int.h>		/* because we are directly reading the file */
20
+#endif
21
+
22
 #ifdef HAVE_OS_PROTO_H
23
 #include "os-proto.h"
24
 #endif

Return to bug 243522