1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-11 07:22:22 +00:00

Update to 1.2.1

This commit is contained in:
Emanuel Haupt 2019-10-21 07:19:00 +00:00
parent 5bfe3fe100
commit f71c20945e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=515087
4 changed files with 5 additions and 34 deletions

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= driftnet
PORTVERSION= 1.2.0
PORTVERSION= 1.2.1
DISTVERSIONPREFIX= v
CATEGORIES= net-mgmt
@ -18,7 +18,7 @@ BUILD_DEPENDS= makedepend:devel/makedepend
GNU_CONFIGURE= yes
USES= autoreconf gettext-runtime gmake gnome jpeg localbase:ldflags \
pkgconfig
pkgconfig xorg
USE_GITHUB= yes
USE_GNOME= gtk20
USE_XORG= x11 xext xi

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1537093222
SHA256 (deiv-driftnet-v1.2.0_GH0.tar.gz) = 4d7b888dab73741f98a414433036b661d886f6e4486664fe8cf491344665a1bf
SIZE (deiv-driftnet-v1.2.0_GH0.tar.gz) = 144356
TIMESTAMP = 1571574204
SHA256 (deiv-driftnet-v1.2.1_GH0.tar.gz) = 8d4c5764c3071637abe9b2f5a8b4009f1fe7c5045018482c39301358ea258313
SIZE (deiv-driftnet-v1.2.1_GH0.tar.gz) = 4971381

View File

@ -1,13 +0,0 @@
--- src/connection.c.orig 2014-09-14 19:16:31 UTC
+++ src/connection.c
@@ -19,6 +19,10 @@
#include <string.h>
#include <time.h>
+#ifdef __FreeBSD__
+#include <sys/types.h>
+#endif
+
#include "util.h"
#include "media.h"
#include "driftnet.h"

View File

@ -1,16 +0,0 @@
--- src/layer3.c.orig 2018-09-15 19:08:05 UTC
+++ src/layer3.c
@@ -16,6 +16,13 @@
#include <sys/socket.h>
#endif
+#ifdef __FreeBSD__
+#include <sys/types.h>
+#include <netinet/in_systm.h>
+#include <netinet/in.h>
+#include <sys/socket.h>
+#endif
+
#include <netinet/ip.h>
#include <netinet/ip6.h>