diff options
author | is <is@pkgsrc.org> | 2011-12-22 19:06:22 +0000 |
---|---|---|
committer | is <is@pkgsrc.org> | 2011-12-22 19:06:22 +0000 |
commit | 144265763d50c8c486884868330ce96ea674f2fd (patch) | |
tree | cf786358075c53e6c9ecffadb76f86e1cc24a23d /net/tcptraceroute/Makefile | |
parent | 3b1a5f2f12689bf92d4899514d6d433862cb2af1 (diff) | |
download | pkgsrc-144265763d50c8c486884868330ce96ea674f2fd.tar.gz |
Surprise, surprise: there are architectures where in_addr_t is not u_long.
Without this fix, tcptraceroute would try to reach or source 0.0.0.0
always on big-endian LP64 architectures.
Diffstat (limited to 'net/tcptraceroute/Makefile')
-rw-r--r-- | net/tcptraceroute/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/tcptraceroute/Makefile b/net/tcptraceroute/Makefile index c2add8a7cd8..cf48fe963b5 100644 --- a/net/tcptraceroute/Makefile +++ b/net/tcptraceroute/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.15 2010/02/11 23:00:57 joerg Exp $ +# $NetBSD: Makefile,v 1.16 2011/12/22 19:06:22 is Exp $ # DISTNAME= tcptraceroute-1.4 -PKGREVISION= 3 +PKGREVISION= 4 CATEGORIES= net MASTER_SITES= http://michael.toren.net/code/tcptraceroute/ |