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:
lemmi 2023-03-12 08:31:19 +01:00
parent c2d35eb48f
commit 621faa8772
1 changed files with 2 additions and 1 deletions

View File

@ -1,8 +1,9 @@
# Template file for 'libupnp'
pkgname=libupnp
version=1.14.12
revision=1
revision=2
build_style=gnu-configure
configure_args="--enable-reuseaddr --disable-blocking-tcp-connections"
hostmakedepends="automake libtool pkg-config"
short_desc="Portable Open Source UPnP Development Kit"
maintainer="Orphaned <orphan@voidlinux.org>"