xref: /OK3568_Linux_fs/buildroot/package/tcl/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1comment "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
5config 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.
15
16	  http://www.tcl.tk
17
18if BR2_PACKAGE_TCL
19
20config 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.
27
28	  It saves approx. 1.6 Mb of space.
29
30config 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).
36
37	  Saves ~14kb.
38
39endif
40