Import of pkgsrc-2016Q3

This commit is contained in:
2016-10-14 07:49:11 +02:00
committed by Lionel Sambuc
parent 9d819b6d54
commit 1242aa1e36
35952 changed files with 949749 additions and 377083 deletions

View File

@@ -1,7 +1,6 @@
# $NetBSD: Makefile,v 1.92 2015/08/18 07:31:15 wiz Exp $
# $NetBSD: Makefile,v 1.94 2016/08/19 13:42:58 wiz Exp $
DISTNAME= mtr-0.86
PKGREVISION= 3
DISTNAME= mtr-0.87
CATEGORIES= net
MASTER_SITES= ftp://ftp.bitwizard.nl/mtr/

View File

@@ -1,6 +1,8 @@
$NetBSD: distinfo,v 1.41 2014/12/14 15:48:44 wiz Exp $
$NetBSD: distinfo,v 1.45 2016/08/21 07:00:22 wiz Exp $
SHA1 (mtr-0.86.tar.gz) = 2c81d0f4c9296861a1159f07eec6acfb4bebecf7
RMD160 (mtr-0.86.tar.gz) = a3bd71a2102722e98e92c31988bc2c1ca13ea26a
Size (mtr-0.86.tar.gz) = 185374 bytes
SHA1 (mtr-0.87.tar.gz) = afd192a765116f3d44e4bada9e11d4ccd79acefc
RMD160 (mtr-0.87.tar.gz) = 9cc760ec31113462f9aeff94b3ba1af1cb4ed994
SHA512 (mtr-0.87.tar.gz) = 172ba2f78a6ee4deb427ac2fb00dff16843215dbd23663fbe41fcc957ffe278b408a73a0c7e1c05788b235e2d03fb53f9971b8b82d4de2f95edcaa9f2cff3cf9
Size (mtr-0.87.tar.gz) = 184645 bytes
SHA1 (patch-net.c) = b8a88ef7c4bad7cfbb502e60e12fd84b90e601dd
SHA1 (patch-net.h) = b5209872236f078e29e124988324ab0be870c45c

View File

@@ -0,0 +1,19 @@
$NetBSD: patch-net.h,v 1.2 2016/08/21 07:00:22 wiz Exp $
Assumes that SCTP is available everywhere.
At least let it compile on older systems.
https://github.com/traviscross/mtr/issues/141
--- net.h.orig 2014-12-09 11:19:43.000000000 +0000
+++ net.h
@@ -26,6 +26,10 @@
#include <netinet/icmp6.h>
#endif
+#ifndef IPPROTO_SCTP
+#define IPPROTO_SCTP 132
+#endif
+
int net_preopen(void);
int net_selectsocket(void);
int net_open(struct hostent *host);