Config.in 954 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. help
  13. TCL (Tool Command Language) is a simple textual language.
  14. http://www.tcl.tk
  15. if BR2_PACKAGE_TCL
  16. config BR2_PACKAGE_TCL_DEL_ENCODINGS
  17. bool "delete encodings (saves 1.6Mb)"
  18. default y
  19. help
  20. Delete encoding files for TCL. If your programs do not use
  21. various tcl character recoding functions, you may safely
  22. choose Y here.
  23. It saves approx. 1.6 Mb of space.
  24. config BR2_PACKAGE_TCL_SHLIB_ONLY
  25. bool "install only shared library"
  26. default y
  27. help
  28. Install only TCL shared library and not binary tcl
  29. interpreter (tclsh).
  30. Saves ~14kb.
  31. endif