2
1

Config.in 835 B

12345678910111213141516171819202122232425262728293031323334353637
  1. config BR2_PACKAGE_TCL
  2. bool "tcl"
  3. # fork()
  4. depends on BR2_USE_MMU
  5. depends on BR2_INET_IPV6
  6. depends on BR2_TOOLCHAIN_HAS_THREADS
  7. help
  8. TCL (Tool Command Language) is a simple textual language.
  9. http://www.tcl.tk
  10. comment "tcl needs a toolchain w/ ipv6, threads"
  11. depends on BR2_USE_MMU
  12. depends on !BR2_INET_IPV6 || !BR2_TOOLCHAIN_HAS_THREADS
  13. if BR2_PACKAGE_TCL
  14. config BR2_PACKAGE_TCL_DEL_ENCODINGS
  15. bool "delete encodings (saves 1.6Mb)"
  16. default y
  17. help
  18. Delete encoding files for TCL. If your programs do not use
  19. various tcl character recoding functions, you may safely
  20. choose Y here.
  21. It saves approx. 1.6 Mb of space.
  22. config BR2_PACKAGE_TCL_SHLIB_ONLY
  23. bool "install only shared library"
  24. default y
  25. help
  26. Install only TCL shared library and not binary tcl
  27. interpreter (tclsh).
  28. Saves ~14kb.
  29. endif