Config.in 839 B

1234567891011121314151617181920212223242526272829
  1. config ADK_PACKAGE_CTORRENT
  2. prompt "ctorrent.......................... console-based BitTorrent client"
  3. tristate
  4. default n
  5. help
  6. CTorrent is a BitTorrent client written in the C programming language, known to
  7. be a very robust and mature programming language, which produces fast and
  8. optimized application.
  9. http://www.rahul.net/dholmes/ctorrent/
  10. choice
  11. prompt "C++ library to use"
  12. depends on ADK_PACKAGE_CTORRENT
  13. default ADK_COMPILE_CTORRENT_WITH_STDCXX if ADK_TARGET_LIB_GLIBC || ADK_TARGET_LIB_EGLIBC
  14. default ADK_COMPILE_CTORRENT_WITH_UCLIBCXX if ADK_TARGET_LIB_UCLIBC
  15. config ADK_COMPILE_CTORRENT_WITH_STDCXX
  16. bool "Standard C++ library"
  17. select ADK_PACKAGE_LIBSTDCXX
  18. help
  19. config ADK_COMPILE_CTORRENT_WITH_UCLIBCXX
  20. bool "Embedded uClibc++ library"
  21. select ADK_PACKAGE_UCLIBCXX
  22. depends on ADK_BROKEN
  23. help
  24. endchoice