Config.in 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. depends on BR2_USE_WCHAR
  10. help
  11. CppCMS is a Free High Performance Web Development Framework
  12. (not a CMS) aimed for Rapid Web Application Development. It
  13. differs from most of other web development frameworks like:
  14. Python Django or Java Servlets on the following aspects:
  15. - It is designed and tuned to handle extremely high loads.
  16. - It uses modern C++ as primary development language in
  17. order to achieve the above goal.
  18. - It is aimed on development of both Web Sites and Web
  19. Services.
  20. http://cppcms.com
  21. if BR2_PACKAGE_CPPCMS
  22. config BR2_PACKAGE_CPPCMS_ICU
  23. bool "enable icu support"
  24. depends on !BR2_BINFMT_FLAT # icu
  25. depends on BR2_ARCH_HAS_ATOMICS # 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. endif
  31. comment "cppcms needs a toolchain w/ C++, NPTL, wchar, dynamic library"
  32. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS_NPTL || \
  33. !BR2_USE_WCHAR || BR2_PREFER_STATIC_LIB