diff options
author | Rosen Penev <rosenp@gmail.com> | 2020-03-24 16:11:32 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-24 16:11:32 -0700 |
commit | 15d7a73f19982437d81944d40ce776d539524d5d (patch) | |
tree | 6c2c9ab7b7cafa3016cb9cbe794a9910ed65e671 | |
parent | 46c88779b2643b7b25b78f0500f1473e2156743e (diff) | |
parent | 8e065c147f7822ca32e053a1da7cc500d0dae2fb (diff) |
Merge pull request #11649 from neheb/upnp2
libupnp: enable reuseaddr
-rw-r--r-- | libs/libupnp/Makefile | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/libs/libupnp/Makefile b/libs/libupnp/Makefile index 39c3e0f1a..d4c23d5ca 100644 --- a/libs/libupnp/Makefile +++ b/libs/libupnp/Makefile @@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libupnp PKG_VERSION:=1.8.6 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=@SF/pupnp @@ -48,6 +48,25 @@ define Package/libupnp-sample/description TVcontrolpoint & tvdevice sample applications run inside /etc/upnp-tvdevice/ endef +CONFIGURE_ARGS += \ + --enable-client \ + --enable-device \ + --enable-gena \ + --enable-reuseaddr \ + --enable-gena \ + --enable-webserver \ + --enable-ssdp \ + --enable-soap \ + --enable-tools \ + --enable-blocking_tcp_connections \ + --enable-samples \ + --disable-debug \ + --disable-optssdp \ + --disable-unspecified_server \ + --disable-open_ssl \ + --disable-scriptsupport \ + --disable-postwrite + TARGET_CFLAGS += -flto TARGET_LDFLAGS += -flto |