-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
without flags, the main fping binary is v4/v6 dual stack, use -4 / -6 to force one particular af. a v6-only fping6 is installed to provide support for dependent ports, using the method from schweikert/fping#139
- Loading branch information
Showing
5 changed files
with
35 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
SHA256 (fping-3.16.tar.gz) = L3UwlOTfPNsdmb4Wh8D7fS8UwNUm6/AxWMjFUZvHj1Q= | ||
SIZE (fping-3.16.tar.gz) = 162629 | ||
SHA256 (fping-4.2.tar.gz) = fTOWdLapWq4ditSH/1BW/ZW0dMNlCTgmj2qQXDdxtko= | ||
SIZE (fping-4.2.tar.gz) = 171409 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,17 @@ | ||
$OpenBSD: patch-doc_Makefile_in,v 1.1 2015/09/17 12:03:42 sthen Exp $ | ||
$OpenBSD: patch-doc_Makefile_in,v 1.2 2019/03/31 00:09:09 sthen Exp $ | ||
|
||
remove unnecessary GNUism; in traditional make(1), $< may only be used | ||
in a suffix rule. | ||
|
||
--- doc/Makefile.in.orig Thu Sep 17 12:55:36 2015 | ||
+++ doc/Makefile.in Thu Sep 17 12:55:13 2015 | ||
@@ -478,10 +478,10 @@ uninstall-man: uninstall-man8 | ||
Index: doc/Makefile.in | ||
--- doc/Makefile.in.orig | ||
+++ doc/Makefile.in | ||
@@ -476,7 +476,7 @@ uninstall-man: uninstall-man8 | ||
|
||
|
||
fping.8: fping.pod | ||
- pod2man -c "" -s 8 -r "fping" $< >$@ | ||
+ pod2man -c "" -s 8 -r "fping" $> >$@ | ||
|
||
fping6.8: fping.pod | ||
- pod2man -c "" -s 8 -r "fping" -n fping6 $< >$@ | ||
+ pod2man -c "" -s 8 -r "fping" -n fping6 $> >$@ | ||
|
||
# Tell versions [3.59,3.63) of GNU make to not export all variables. | ||
# Otherwise a system limit (for SysV at least) may be exceeded. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
@comment $OpenBSD: PLIST,v 1.7 2015/09/17 12:03:42 sthen Exp $ | ||
@comment $OpenBSD: PLIST,v 1.8 2019/03/31 00:09:09 sthen Exp $ | ||
@man man/man8/fping.8 | ||
@man man/man8/fping6.8 | ||
@mode 4555 | ||
@bin sbin/fping | ||
@bin sbin/fping6 | ||
@mode | ||
sbin/fping6 |