Config.in 979 B

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