mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 00:20:38 -09:00
Suggested by Gerbera:
fcf3147223
CMake Warning at CMakeLists.txt:583 (message):
!! It is strongly recommended to build libupnp with --disable-blocking-tcp-connections !!
Without this option non-responsive control points can cause libupnp to hang.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
32 lines
915 B
Makefile
32 lines
915 B
Makefile
################################################################################
|
|
#
|
|
# libupnp
|
|
#
|
|
################################################################################
|
|
|
|
LIBUPNP_VERSION = 1.14.25
|
|
LIBUPNP_SOURCE = libupnp-$(LIBUPNP_VERSION).tar.bz2
|
|
LIBUPNP_SITE = \
|
|
https://downloads.sourceforge.net/project/pupnp/release-$(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 += \
|
|
--disable-blocking-tcp-connections \
|
|
--disable-samples \
|
|
--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))
|