Files
CoreMP135_buildroot/package/cppcms/Config.in
T

45 lines
1.4 KiB
Plaintext
Raw Normal View History

2013-07-11 13:42:48 +02:00
config BR2_PACKAGE_CPPCMS
bool "cppcms"
depends on BR2_INSTALL_LIBSTDCPP
2016-07-04 01:48:34 +02:00
depends on BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS # libgcrypt
2014-05-13 00:09:19 +02:00
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
depends on !BR2_STATIC_LIBS # dlopen()
2014-09-06 16:04:33 +02:00
depends on BR2_USE_WCHAR
select BR2_PACKAGE_ZLIB
select BR2_PACKAGE_PCRE
select BR2_PACKAGE_LIBGCRYPT
2013-07-11 13:42:48 +02:00
help
CppCMS is a Free High Performance Web Development Framework
(not a CMS) aimed for Rapid Web Application Development. It
differs from most of other web development frameworks like:
Python Django or Java Servlets on the following aspects:
2013-11-11 17:23:23 +01:00
- It is designed and tuned to handle extremely high loads.
2013-07-11 13:42:48 +02:00
- It uses modern C++ as primary development language in
order to achieve the above goal.
2013-11-11 17:23:23 +01:00
- It is aimed on development of both Web Sites and Web
Services.
2013-07-11 13:42:48 +02:00
http://cppcms.com
if BR2_PACKAGE_CPPCMS
2013-07-11 13:42:48 +02:00
config BR2_PACKAGE_CPPCMS_ICU
bool "enable icu support"
depends on !BR2_BINFMT_FLAT # icu
2017-06-05 12:14:52 +02:00
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # icu
2013-07-11 13:42:48 +02:00
select BR2_PACKAGE_ICU
help
Using ICU allows advanced localization features into CppCMS,
in another hand ICU is heavier than iconv.
2019-10-26 16:53:24 +02:00
comment "icu support needs a toolchain w/ gcc >= 4.8"
2017-06-05 12:14:52 +02:00
depends on !BR2_BINFMT_FLAT
2019-10-26 16:53:24 +02:00
depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
2017-06-05 12:14:52 +02:00
endif
comment "cppcms needs a toolchain w/ C++, NPTL, wchar, dynamic library"
2014-05-13 00:09:19 +02:00
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS_NPTL || \
!BR2_USE_WCHAR || BR2_STATIC_LIBS