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

Collapse All | Expand All

(-)b/security/masscan/Makefile (-3 / +7 lines)
Lines 1-7 Link Here
1
# Created by: Chie Taguchi <taguchi.ch@gmail.com>
1
# Created by: Chie Taguchi <taguchi.ch@gmail.com>
2
2
3
PORTNAME=	masscan
3
PORTNAME=	masscan
4
PORTVERSION=	1.0.4
4
DISTVERSION=	1.3.2
5
CATEGORIES=	security
5
CATEGORIES=	security
6
6
7
MAINTAINER=	taguchi.ch@gmail.com
7
MAINTAINER=	taguchi.ch@gmail.com
Lines 12-21 LICENSE= GPLv3 Link Here
12
USES=		gmake
12
USES=		gmake
13
USE_GITHUB=	yes
13
USE_GITHUB=	yes
14
GH_ACCOUNT=	robertdavidgraham
14
GH_ACCOUNT=	robertdavidgraham
15
16
MAKE_ARGS=	CC="${CC}" \
17
		CFLAGS="${CFLAGS}" \
18
		SYS=freebsd
15
CFLAGS+=	-Wno-format
19
CFLAGS+=	-Wno-format
16
MAKE_ARGS=	SYS=freebsd CC="${CC}" CFLAGS="${CFLAGS}"
17
20
18
PLIST_FILES=	bin/masscan man/man8/masscan.8.gz
21
PLIST_FILES=	bin/masscan \
22
		man/man8/masscan.8.gz
19
23
20
.include <bsd.port.options.mk>
24
.include <bsd.port.options.mk>
21
25
(-)b/security/masscan/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1497024027
1
TIMESTAMP = 1629754957
2
SHA256 (robertdavidgraham-masscan-1.0.4_GH0.tar.gz) = 51de345f677f46595fc3bd747bfb61bc9ff130adcbec48f3401f8057c8702af9
2
SHA256 (robertdavidgraham-masscan-1.3.2_GH0.tar.gz) = 0363e82c07e6ceee68a2da48acd0b2807391ead9a396cf9c70b53a2a901e3d5f
3
SIZE (robertdavidgraham-masscan-1.0.4_GH0.tar.gz) = 343513
3
SIZE (robertdavidgraham-masscan-1.3.2_GH0.tar.gz) = 463449
(-)a/security/masscan/files/patch-src_smack1.c (-11 lines)
Removed Link Here
1
--- src/smack1.c.orig	2017-06-06 03:59:39 UTC
2
+++ src/smack1.c
3
@@ -115,6 +115,8 @@
4
 #include "pixie-timer.h"
5
 #if defined(_MSC_VER)
6
 #include <intrin.h>
7
+#elif defined(__llvm__) && (defined(__amd64__) || defined(__i386__))
8
+#include <x86intrin.h>
9
 #elif defined(__GNUC__)
10
 static __inline__ unsigned long long __rdtsc(void)
11
 {

Return to bug 257931