python-dataproperty: bump version to 0.17.0
[buildroot-gz.git] / package / tcl / Config.in
blobf1fa0541a1b318e175b9f52365da6cd2c1a524d5
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
5 config BR2_PACKAGE_TCL
6         bool "tcl"
7         # fork()
8         depends on BR2_USE_MMU
9         depends on BR2_TOOLCHAIN_HAS_THREADS
10         # See this mailing list thread:
11         # http://lists.busybox.net/pipermail/buildroot/2015-March/121198.html
12         depends on !BR2_STATIC_LIBS
13         help
14           TCL (Tool Command Language) is a simple textual language.
16           http://www.tcl.tk
18 if BR2_PACKAGE_TCL
20 config BR2_PACKAGE_TCL_DEL_ENCODINGS
21         bool "delete encodings (saves 1.6Mb)"
22         default y
23         help
24           Delete encoding files for TCL. If your programs do not use
25           various tcl character recoding functions, you may safely
26           choose Y here.
28           It saves approx. 1.6 Mb of space.
30 config BR2_PACKAGE_TCL_SHLIB_ONLY
31         bool "install only shared library"
32         default y
33         help
34           Install only TCL shared library and not binary tcl
35           interpreter (tclsh).
37           Saves ~14kb.
39 endif