2013-07-11 13:42:48 +02:00
|
|
|
config BR2_PACKAGE_CPPCMS
|
|
|
|
bool "cppcms"
|
|
|
|
select BR2_PACKAGE_ZLIB
|
|
|
|
select BR2_PACKAGE_PCRE
|
|
|
|
select BR2_PACKAGE_LIBGCRYPT
|
|
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
2014-05-13 00:09:19 +02:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
|
2014-12-03 22:41:29 +01:00
|
|
|
depends on !BR2_STATIC_LIBS # dlopen()
|
2014-09-06 16:04:33 +02:00
|
|
|
depends on BR2_USE_WCHAR
|
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
|
|
|
|
|
2013-12-20 22:31:30 +01:00
|
|
|
if BR2_PACKAGE_CPPCMS
|
|
|
|
|
2013-07-11 13:42:48 +02:00
|
|
|
config BR2_PACKAGE_CPPCMS_ICU
|
|
|
|
bool "enable icu support"
|
2014-02-20 14:32:45 +01:00
|
|
|
depends on !BR2_BINFMT_FLAT # 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.
|
|
|
|
|
2013-12-20 22:31:30 +01:00
|
|
|
endif
|
|
|
|
|
2014-09-01 10:37:39 +02:00
|
|
|
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 || \
|
2014-12-03 22:41:29 +01:00
|
|
|
!BR2_USE_WCHAR || BR2_STATIC_LIBS
|