aboutsummaryrefslogtreecommitdiff
path: root/libs/libupnp
Commit message (Collapse)AuthorAge
* libupnp: update to 1.14.18Rosen Penev2024-02-14
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* treewide: remove AUTORELEASEPaul Fertser2023-04-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Automatically compute and substitute current values for all $(AUTORELEASE) instances as this feature is deprecated and shouldn't be used. The following temporary change was made to the core: diff --git a/rules.mk b/rules.mk index 57d7995d4fa8..f16367de87a8 100644 --- a/rules.mk +++ b/rules.mk @@ -429,7 +429,7 @@ endef abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1)))) COMMITCOUNT = $(if $(DUMP),0,$(call commitcount)) -AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1)) +AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile)) all: FORCE: ; And this command used to fix affected packages: for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \ sed 's^.*/\([^/]*\)/Makefile^\1^';); do make package/$i/download done Signed-off-by: Paul Fertser <fercerpav@gmail.com>
* libupnp: update to 1.14.12Rosen Penev2021-12-16
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* treewide: back to cmake.mkRosen Penev2021-06-12
| | | | | | Ninja was merged to base and therefore we can now use normal cmake.mk Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libupnp: update to 1.14.7Rosen Penev2021-06-01
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libupnp: restore building toolsAlexander Egorenkov2021-04-14
| | | | | | | | | | This enables tools again which has been disabled in commit 498506af9 ("libupnp: update to 1.14.5"). Disabling tools leads to the header upnptools.h not being installed into /usr/include. But e.g. mpd-full depends on this header. Fixes: 498506af9 ("libupnp: update to 1.14.5") Signed-off-by: Alexander Egorenkov <egorenar-dev@posteo.net>
* libupnp: update to 1.14.5Rosen Penev2021-04-13
| | | | | | Switch to compiling with CMake. Faster. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libupnp: add back autoreconfRosen Penev2020-12-22
| | | | | | | Fixes compilation under Arch Linux as it tries to link to host libraries. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libupnp: update to 1.14.0Rosen Penev2020-07-28
| | | | | | Remove flto as it breaks under GCC10 for some reason. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libupnp: update to 1.12.1Rosen Penev2020-05-02
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libupnp: update to 1.8.7Rosen Penev2020-04-13
| | | | | | remove upstreamed patch. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libupnp: do not use usleepRosen Penev2020-04-06
| | | | | | Deprecated and optionally unavailable under uClibc-ng. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libupnp: enable reuseaddrRosen Penev2020-03-23
| | | | | | | | | | | | Helps applications restart safely. Disabled optssdp. Not used by anything. Disabled scriptsupport. Not used by anything. Made all configure options explicit. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libupnp: downgrade to 1.8.6Rosen Penev2020-02-17
| | | | | | | | The newer libupnp is causing problems with libupnpp. While the latter has migraded to using a different library, it still has support for older libupnp. Keep using it. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libupnp: update to 1.12.0Rosen Penev2020-02-14
| | | | | | | | | | Remove outdated build options. Fix CPE ID. Add PKG_BUILD_PARALLEL for faster compilation. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* treewide: add PKG_CPE_ID for better cvescanner coverageJan Pavlinec2019-09-17
| | | | Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
* libupnp: add large file defines to CFLAGSMichael Heimpold2019-02-16
| | | | | | | | | | | | | | | | | This fixes compilation with glibc and uClibc for the included sample programs as reported by builtbots for e.g. arc target: -snip- In file included from ../../upnp/inc/upnp.h:402:0, from common/sample_util.h:49, from common/sample_util.c:42: ../../upnp/inc/FileInfo.h:22:2: error: #error libupnp uses large file support, so users must do that, too #error libupnp uses large file support, so users must do that, too ^~~~~ Makefile:577: recipe for target 'common/tv_ctrlpt-sample_util.o' failed -snap- Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* libs/libupnp: Update to 1.8.4Daniel Engberg2019-01-28
| | | | | | | | Update libupnp to 1.8.4 Add PR #104 to fix musl compatibility https://github.com/mrjimenez/pupnp/pull/104 Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
* libupnp: Update to 1.6.25Rosen Penev2018-09-01
| | | | | | | | Added PKG_BUILD_PARALLEL for faster compilation. Removed copyright line. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* treewide: run "make check FIXUP=1"Etienne Champetier2017-08-29
| | | | | | | | | | fix Makefile chmod (644) replace MD5SUM with HASH add PKG_MIRROR_HASH when PKG_SOURCE_PROTO:=git (PKG_SOURCE_PROTO:=svn tarballs are not reproducible for now) Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
* libupnp: Update version to 1.6.19, update copyright, add myself as pkg ↵thess2014-07-16
| | | | | | maintainer Signed-off-by: Ted Hess <thess@kitschensync.net>
* Import libupnp from oldpackagesTed Hess2014-07-16