118648d161
- Fix CallStranger a.k.a. CVE-2020-12695 as well as CVE-2020-13848 - Update indentation in hash file (two spaces) - Backport all changes from libupnp18 to libupnp: - Use COPYING instead of LICENSE (no license change) - Add host-pkgconf dependency - Add --enable-reuseaddr - Add openssl optional dependency Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
29 lines
857 B
Makefile
29 lines
857 B
Makefile
################################################################################
|
|
#
|
|
# libupnp
|
|
#
|
|
################################################################################
|
|
|
|
LIBUPNP_VERSION = 1.14.0
|
|
LIBUPNP_SOURCE = libupnp-$(LIBUPNP_VERSION).tar.bz2
|
|
LIBUPNP_SITE = \
|
|
http://downloads.sourceforge.net/project/pupnp/pupnp/libupnp-$(LIBUPNP_VERSION)
|
|
LIBUPNP_CONF_ENV = ac_cv_lib_compat_ftime=no
|
|
LIBUPNP_INSTALL_STAGING = YES
|
|
LIBUPNP_LICENSE = BSD-3-Clause
|
|
LIBUPNP_LICENSE_FILES = COPYING
|
|
LIBUPNP_CPE_ID_VALID = YES
|
|
LIBUPNP_DEPENDENCIES = host-pkgconf
|
|
|
|
# Bind the internal miniserver socket with reuseaddr to allow clean restarts.
|
|
LIBUPNP_CONF_OPTS += --enable-reuseaddr
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
LIBUPNP_CONF_OPTS += --enable-open-ssl
|
|
LIBUPNP_DEPENDENCIES += openssl
|
|
else
|
|
LIBUPNP_CONF_OPTS += --disable-open-ssl
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|