libupnp: fix configure args for gerbera
gerbera configure complains: ``` CMake Warning at CMakeLists.txt:405 (message): !! It is strongly recommended to build libupnp with --enable-reuseaddr !! Without this option Gerbera will be unable to restart with the same port number. CMake Warning at CMakeLists.txt:412 (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. ``` These issues are indeed present with gerbera without these options.
This commit is contained in:
parent
c2d35eb48f
commit
621faa8772
|
@ -1,8 +1,9 @@
|
||||||
# Template file for 'libupnp'
|
# Template file for 'libupnp'
|
||||||
pkgname=libupnp
|
pkgname=libupnp
|
||||||
version=1.14.12
|
version=1.14.12
|
||||||
revision=1
|
revision=2
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
|
configure_args="--enable-reuseaddr --disable-blocking-tcp-connections"
|
||||||
hostmakedepends="automake libtool pkg-config"
|
hostmakedepends="automake libtool pkg-config"
|
||||||
short_desc="Portable Open Source UPnP Development Kit"
|
short_desc="Portable Open Source UPnP Development Kit"
|
||||||
maintainer="Orphaned <orphan@voidlinux.org>"
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
||||||
|
|
Loading…
Reference in New Issue