summaryrefslogtreecommitdiffstats
path: root/rules/tcl.in
diff options
context:
space:
mode:
authorJuergen Beisert <j.beisert@pengutronix.de>2009-01-10 20:29:11 +0000
committerJuergen Beisert <j.beisert@pengutronix.de>2009-01-10 20:29:11 +0000
commit81fb674e58d6ffdb52f8d5bad2c07cba9eed55fe (patch)
treeff5b153208e1fcad85f13cd49f7a58e6f4ad220f /rules/tcl.in
parent3d6f5fa6e7c0bed8d6fc1e611e7cc0f23e53ea62 (diff)
downloadptxdist-81fb674e58d6ffdb52f8d5bad2c07cba9eed55fe.tar.gz
ptxdist-81fb674e58d6ffdb52f8d5bad2c07cba9eed55fe.tar.xz
* tcl-8.5: marked as not broken now
- tested on x86 target at runtime - tested for PowerPC at compile time - test suite added to check the port on other architectures on demand git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@9475 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/tcl.in')
-rw-r--r--rules/tcl.in24
1 files changed, 23 insertions, 1 deletions
diff --git a/rules/tcl.in b/rules/tcl.in
index c1b617e63..f5917a2c7 100644
--- a/rules/tcl.in
+++ b/rules/tcl.in
@@ -2,7 +2,9 @@
menuconfig TCL
tristate
prompt "tcl "
- depends on BROKEN
+ select LIBC_M
+ select LIBC_DL
+ select LIBC_PTHREAD
help
From the FAQ (refer http://tcl.sourceforge.net/faqs/):
Tcl and Tk originated with Dr. John Ousterhout while teaching at the
@@ -17,6 +19,8 @@ menuconfig TCL
release of Tk was in 1991. [...]
The current implementation uses a byte code interpreter and runtime
compilation.
+ Note: To install this package you must have a working TCL on your
+ host (only required for the install stage).
if TCL
@@ -27,4 +31,22 @@ config TCL_THREADS
Build the TCL engine with thread support. This may speed down non
thread scripts.
+config TCL_ENCODING
+ bool
+ prompt "install encodings"
+ help
+ Install support for various encodings (iso8859-1, iso8859-15,
+ cp437, cp850, ascii, big5).
+
+config TCL_TESTING
+ bool
+ prompt "prepare for testing"
+ help
+ If your are a ptxdist user only, leave this entry unchecked.
+ Enable this if you are a ptxdist developer and you want to run the
+ TCL test suite on your target to check if this TCL port is correct.
+ To run the test suite, run single tests from '/usr/share/tcl-tests'
+ or run the whole suite with '/usr/share/tcl-tests/all.tcl' from
+ inside a tcl shell.
+
endif