diff options
author | adam <adam@pkgsrc.org> | 2017-05-20 11:25:50 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2017-05-20 11:25:50 +0000 |
commit | e2360983779fd53d21f7b2997bf9b0be899df1e5 (patch) | |
tree | 07b84a0964ac5ce3d93f67fbba907437e0d93022 /net/fping/Makefile | |
parent | b90fcab0f970b5c91c7f6eeb28a641a482b6ee57 (diff) | |
download | pkgsrc-e2360983779fd53d21f7b2997bf9b0be899df1e5.tar.gz |
Changes 4.0:
Incompatible Changes
- fping and fping6 unification
- Option -n, not the same as -d anymore
- Discarding of late packets
- No restrictions by default
- Default interval (-i) changed from 25ms to 10ms
New features
- Unified 'fping' and 'fping6' into one binary
- Long option names for all options
- IPv6 enabled by default
- New option -4 to force IPv4
- New option -6 to force IPv6
- Keep original name if a hostname is given with -n/--name
- Option -d/--rdns now always does a rdns-lookup, even for names, as '-n' was doing until now
- Enforce -t timeout on reply packets, by discarding late packets
- Auto-adjust timeout for -c/-C/-l mode to value of -p
Bugfixes and other changes
- -i/-p restrictions disabled by default (enable with --enable-safe-limits)
- Default interval -i changed from 25ms to 10ms
- Fix compatibility issue with GNU Hurd
- A C99 compiler is now required
- Option parsing with optparse (https://github.com/skeeto/optparse)
- New changelog file format
Diffstat (limited to 'net/fping/Makefile')
-rw-r--r-- | net/fping/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/net/fping/Makefile b/net/fping/Makefile index d5039cda9b5..7a946a83154 100644 --- a/net/fping/Makefile +++ b/net/fping/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.16 2016/12/10 23:18:54 wiedi Exp $ +# $NetBSD: Makefile,v 1.17 2017/05/20 11:25:50 adam Exp $ -DISTNAME= fping-3.13 +DISTNAME= fping-4.0 CATEGORIES= net MASTER_SITES= http://fping.org/dist/ @@ -8,11 +8,9 @@ MAINTAINER= abs@NetBSD.org HOMEPAGE= http://www.fping.org/ COMMENT= Quickly ping many hosts w/o flooding the network -CONFIGURE_ARGS+= --enable-ipv4 GNU_CONFIGURE= yes SPECIAL_PERMS+= sbin/fping ${SETUID_ROOT_PERMS} -SPECIAL_PERMS+= sbin/fping6 ${SETUID_ROOT_PERMS} CPPFLAGS.SunOS+= -Dn_time=uint32_t |