package/sconeserver: pcre is optional, not mandatory

pcre is optional not mandatory since
98ec61436c

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Fabrice Fontaine 2021-03-03 19:12:28 +01:00 committed by Thomas Petazzoni
parent d3b818c3cf
commit 754633fe8c
2 changed files with 4 additions and 2 deletions

View file

@ -3,7 +3,6 @@ menuconfig BR2_PACKAGE_SCONESERVER
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
depends on !BR2_STATIC_LIBS # dlopen()
select BR2_PACKAGE_PCRE
select BR2_PACKAGE_ZLIB
help
Sconeserver is a modular, object-orientated and extremely

View file

@ -10,7 +10,10 @@ SCONESERVER_LICENSE = GPL-2.0+
SCONESERVER_LICENSE_FILES = COPYING
# fetching from Git, we need to generate the configure script
SCONESERVER_AUTORECONF = YES
SCONESERVER_DEPENDENCIES = host-pkgconf pcre zlib
SCONESERVER_DEPENDENCIES = \
host-pkgconf \
$(if $(BR2_PACKAGE_PCRE),pcre) \
zlib
# disable markdown module because its git submodule cmark
# https://github.com/sconemad/sconeserver/tree/master/markdown
# has no cross-compile support provided by the sconeserver build system