directfb: do not use inexistant configure options
[buildroot-gz.git] / package / tcl / Config.in
blob63d1b256198eebabb9cfb93d801d754acf60f1dd
1 config BR2_PACKAGE_TCL
2         bool "tcl"
3         # fork()
4         depends on BR2_USE_MMU
5         depends on BR2_TOOLCHAIN_HAS_THREADS
6         # See this mailing list thread:
7         # http://lists.busybox.net/pipermail/buildroot/2015-March/121198.html
8         depends on !BR2_STATIC_LIBS
9         help
10           TCL (Tool Command Language) is a simple textual language.
12           http://www.tcl.tk
14 comment "tcl needs a toolchain w/ threads, dynamic library"
15         depends on BR2_USE_MMU
16         depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
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