fping: Update to version 5.2

- Update from version 5.1 to 5.2
- Update of rootfile not required
- Changelog
    5.2
      ## New features
	- New option -X / --fast-reachable to exit immediately once N hosts have been
	  found (#260, thanks @chriscray and @gsnw)
	- New option -k / -fwmark to set Linux fwmark mask (#289, thanks @tomangert and
	  @deepkv)
      ## Bugfixes and other changes
	- Always output fatal error messages (#303, thanks @auerswal)
	- Fallback to SO\_TIMESTAMP if SO\_TIMESTAMPNS is not available (#279, thanks
	  @gsnw)
	- Fix "not enough sequence numbers available" error on BSD-like systems (#307,
	  thanks @cagney, @gsnw)
	- Fix running in unprivileged mode (#248, thanks @sfan5)
	- Fix build issue for NetBSD/alpha (#255, thanks @0-wiz-0)
	- Fix build issue for OpenBSD/alpha (#275, thanks @gsnw)
	- Fix build warning for long int usage (#258, thanks @gsnw)
	- Fix build error with musl libc (#263, thanks @kraj)
	- Fix to guard against division by zero (#293, thanks @auerswal)
	- Decouple -a/-u effects from -c (#298, thanks @auerswal)
	- Added contrib/Dockerfile (#224, thanks @darless)
	- Remove host from Netdata chart titles (#253, thanks @ilyam8)
	- Add additional tests (#292, #297, thanks @auerswal)
	- Update github action os images (#282, thanks @gsnw)
	- Fix Azure pipeline tests (#308, thanks @gsnw)
	- Various autoconf fixes (#286, #283, thanks @gsnw)
	- Extended configure script with --enable-debug and output cpu usage (#311,
	  thanks @gsnw)
	- Documentation: Update Netdata website link (#257, thanks @ilyam8)
	- Documentation: fix description of --file option (#268, thanks @MohGeek)
	- Documentation: improve exit status description (#294, thanks @auerswal)
	- Documentation: move description of -i MSEC (#298, thanks @auerswal)
	- Documentation: improve help output for options -c and -C (#302, #auerswal)

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
Adolf Belka
2024-08-12 17:37:58 +02:00
committed by Michael Tremer
parent 49c377c7eb
commit df638b2e26

View File

@@ -1,7 +1,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2007-2023 IPFire Team <info@ipfire.org> #
# Copyright (C) 2007-2024 IPFire Team <info@ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
@@ -26,7 +26,7 @@ include Config
SUMMARY = A program to ping multiple hosts
VER = 5.1
VER = 5.2
THISAPP = fping-$(VER)
DL_FILE = $(THISAPP).tar.gz
@@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = fping
PAK_VER = 7
PAK_VER = 8
DEPS = ""
@@ -48,7 +48,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_BLAKE2 = 2fb344e650b5a359fb8780f2c599455d39405ae823edf695ee4385aa2661dc5811e088bafa1b9f53846ee90c0afa959a92832381a03346d1fda048eb4e7ee098
$(DL_FILE)_BLAKE2 = 7efb445f32ffe2d3766d598da5f1585270ae8e68ceb8b64e418040f330e7736bfaf0313077e28b12031af25ed7952943603d3a5908174c3f78d9a1af0b735da9
install : $(TARGET)
@@ -82,10 +82,9 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
$(UPDATE_AUTOMAKE)
cd $(DIR_APP) && ./configure \
--prefix=/usr \
--disable-ipv6
cd $(DIR_APP) && ./configure \
--prefix=/usr \
--disable-ipv6
cd $(DIR_APP) && make $(MAKETUNING)
cd $(DIR_APP) && make install