buildroot/package/monkey/Config.in
Baruch Siach 5fea6e2a2f monkey: switch to cmake package
Since version 1.6.x the configure script is a wrapper around cmake. Use
cmake directly since we want to make sure that cmake is available.

monkey no longer provides the libmonkey.so shared library. Remove the
BR2_PACKAGE_MONKEY_SHARED option.

Fixes:
http://autobuild.buildroot.net/results/b07/b077720c16857b752f4f38b73619a6a62862f35f/
http://autobuild.buildroot.net/results/799/799bcbd332f254fbf3d3547e5e52ac9463d58bcc/
http://autobuild.buildroot.net/results/3b0/3b095ca77a900af724fbc79d9cc20cbb9931fe15/

Cc: Morgan Delestre <m.delestre@sinters.fr>
Cc: David Pierret <david.pierret@gmail.com>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2018-09-23 16:07:50 +02:00

25 lines
571 B
Plaintext

config BR2_PACKAGE_MONKEY
bool "monkey"
depends on BR2_TOOLCHAIN_HAS_THREADS
depends on !BR2_STATIC_LIBS # dlopen()
depends on BR2_USE_MMU # fork()
help
Monkey Server is a fast and lightweight web server for Linux
platforms.
http://monkey-project.com/
if BR2_PACKAGE_MONKEY
config BR2_PACKAGE_MONKEY_SSL
bool "enable SSL/TLS"
select BR2_PACKAGE_MBEDTLS
help
Enable build of the SSL/TLS plugin.
endif
comment "monkey needs an toolchain w/ threads, dynamic library"
depends on BR2_USE_MMU
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS