Config.in 1.5 KB

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