Config.in 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. config BR2_PACKAGE_CPPCMS
  2. bool "cppcms"
  3. select BR2_PACKAGE_ZLIB
  4. select BR2_PACKAGE_PCRE
  5. select BR2_PACKAGE_LIBGCRYPT
  6. depends on BR2_INSTALL_LIBSTDCPP
  7. depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
  8. depends on !BR2_PREFER_STATIC_LIB # dlopen()
  9. help
  10. CppCMS is a Free High Performance Web Development Framework
  11. (not a CMS) aimed for Rapid Web Application Development. It
  12. differs from most of other web development frameworks like:
  13. Python Django or Java Servlets on the following aspects:
  14. - It is designed and tuned to handle extremely high loads.
  15. - It uses modern C++ as primary development language in
  16. order to achieve the above goal.
  17. - It is aimed on development of both Web Sites and Web
  18. Services.
  19. http://cppcms.com
  20. if BR2_PACKAGE_CPPCMS
  21. config BR2_PACKAGE_CPPCMS_ICU
  22. bool "enable icu support"
  23. depends on !BR2_BINFMT_FLAT # icu
  24. depends on BR2_USE_WCHAR # icu
  25. depends on BR2_TOOLCHAIN_HAS_ATOMIC_INTRINSICS # icu
  26. select BR2_PACKAGE_ICU
  27. help
  28. Using ICU allows advanced localization features into CppCMS,
  29. in another hand ICU is heavier than iconv.
  30. comment "icu support needs a toolchain w/ wchar, atomic intrinsics"
  31. depends on !BR2_BINFMT_FLAT || !BR2_TOOLCHAIN_HAS_ATOMIC_INTRINSICS
  32. depends on !BR2_USE_WCHAR
  33. endif
  34. comment "cppcms needs a toolchain w/ C++, NPTL, dynamic library"
  35. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS_NPTL || \
  36. BR2_PREFER_STATIC_LIB