summaryrefslogtreecommitdiffstats
path: root/package/iputils/iputils.mk
Commit message (Collapse)AuthorAgeFilesLines
* iputils: fix typo in libintl commentPeter Korsgaard2016-08-261-1/+1
| | | | | | The sentence should end with a dot (.) and not a comma (,). Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/iputils: link with -lintlArnout Vandecappelle2016-08-261-0/+7
| | | | | | | | | | | | | | | | libgcrypt pulls in gpg-error which links with libintl if available. Since iputils doesn't use libtool, -lintl has to be passed explicitly for static builds. Fixes: http://autobuild.buildroot.net/results/f81/f81eabb37788aa6dcdadf4034889c84bef78b876 http://autobuild.buildroot.net/results/f29/f296e8fba1e79f96d3d119aa4c8207ed4b80694b http://autobuild.buildroot.net/results/478/478a88cd892a119970cfca717ea7f5517bfc4cea http://autobuild.buildroot.net/results/920/920d2d1d967691779f79fa54a38fac5adc5a8ee4 Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Cc: Matthew Weber <matt@thewebers.ws> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/iputils: bump versionBernd Kuhls2016-06-051-2/+1
| | | | | | | | | | tracepath and tracepath6 were merged recently: https://github.com/iputils/iputils/pull/48 Therefore we do not need to install tracepath6 anymore. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/iputils: bump version to 31d947cf7156cf78d3f57e0bd82b33e6f6ece6b4Martin Bark2016-05-161-1/+1
| | | | | | | | | | | | Includes a fix for static builds using libgcrypt. Fixes: http://autobuild.buildroot.net/results/55a7db5c0cbc34bbf6a2cbc52713d8822deec5b2 http://autobuild.buildroot.net/results/864d8901eb901182ce186cf9a845636040e242bb http://autobuild.buildroot.net/results/aba522aa164267993fb1f1bbc57733be0cbea680 Signed-off-by: Martin Bark <martin@barkynet.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/iptuils: bump version to 3a86a2542c6fe29413c439bebeae11ec8a57ec7cMartin Bark2016-02-251-1/+1
| | | | | | | | | Remove 0001-ping-link-against-libm.patch as this has been fixed upstream. See https://github.com/iputils/iputils/pull/42 and https://github.com/iputils/iputils/commit/a5ddb78 Signed-off-by: Martin Bark <martin@barkynet.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/iputils: add support for libgcryptMartin Bark2016-02-251-0/+7
| | | | | Signed-off-by: Martin Bark <martin@barkynet.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/iputils: add support for nettleMartin Bark2016-02-251-0/+7
| | | | | Signed-off-by: Martin Bark <martin@barkynet.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/iputils: removed dependency on opensslMartin Bark2016-02-251-1/+7
| | | | | | | | iputils does not have to be built with openssl so remove selecting BR2_PACKAGE_OPENSSL and make the dependency optional Signed-off-by: Martin Bark <martin@barkynet.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* iputils: resolve musl compatibilityMatt Weber2016-01-211-10/+19
| | | | | | | | | | | | | | | | | | | | The new upstream is a fork of the original that consolidates other distro's patches. This fork resolves a series of musl build failures noted in the autobuilder log. http://autobuild.buildroot.net/results/12cb73f3def95efe706bcd957bc2c091e7931d5a/ - Updated to github fork, selected merge from Nov 3 2015 which provided musl fixes (last release was to old, 20150815) - Why the fork ? (http://www.spinics.net/lists/netdev/msg279881.html) - Added missing dependencies for kernel capabilies lib - Accounted for new consolidated ping (ipv4/6) Tested against a buildroot arm musl/glibc toolchains, as well as autobuilder defconfig. Signed-off-by: Matt Weber <matt@thewebers.ws> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* iputils: comma separate licensesGustavo Zacarias2015-12-151-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* packages: remove non-IPv6 dependencies and tweaksGustavo Zacarias2015-04-221-15/+6
| | | | | | | | Now that IPv6 is mandatory remove package dependencies and conditionals for it. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* packages: rename FOO_MAKE_OPT into FOO_MAKE_OPTSThomas De Schampheleire2014-10-041-3/+3
| | | | | | | | | | | | | | | | | | | | | While the autotools infrastructure was using FOO_MAKE_OPT, generic packages were typically using FOO_MAKE_OPTS. This inconsistency becomes a problem when a new infrastructure is introduced that wants to make use of FOO_MAKE_OPT(S), and can live alongside either generic-package or autotools-package. The new infrastructure will have to choose between either OPT or OPTS, and thus rule out transparent usage by respectively generic packages or generic packages. An example of such an infrastructure is kconfig-package, which provides kconfig-related make targets. The OPTS variant is more logical, as there are typically multiple options. This patch renames all occurrences of FOO_MAKE_OPT in FOO_MAKE_OPTS. Sed command used: find * -type f | xargs sed -i 's#_MAKE_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package: remove the trailing slash sign from <PKG>_SITE variableJerzy Grzegorek2014-07-311-1/+1
| | | | | | | | | | | | Since the trailing slash is stripped from $($(PKG)_SITE) by pkg-generic.mk: $(call DOWNLOAD,$($(PKG)_SITE:/=)/$($(PKG)_SOURCE)) so it is redundant. This patch removes it from $(PKG)_SITE variable for BR consistency. Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* iputils: new packageMatt Weber2013-09-191-0/+53
[Peter: fix _LICENSE_FILES] Signed-off-by: Matt Weber <mlweber1@rockwellcollins.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
OpenPOWER on IntegriCloud