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