summaryrefslogtreecommitdiffstats
path: root/rules/tk.in
diff options
context:
space:
mode:
authorJuergen Beisert <j.beisert@pengutronix.de>2009-01-28 19:36:37 +0000
committerJuergen Beisert <j.beisert@pengutronix.de>2009-01-28 19:36:37 +0000
commit4ed8dba3161acc82b45eb319432a9a9e52472a47 (patch)
tree031a51f7dcb50fbd864f6eca384267e4a1f09382 /rules/tk.in
parentcdda32d432581bce2f6ae91d614d6a11f5b6fd4b (diff)
downloadptxdist-4ed8dba3161acc82b45eb319432a9a9e52472a47.tar.gz
ptxdist-4ed8dba3161acc82b45eb319432a9a9e52472a47.tar.xz
* tk: compiles now with some restrictions
- BIG FAT WARNING: untested yet git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@9669 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/tk.in')
-rw-r--r--rules/tk.in44
1 files changed, 42 insertions, 2 deletions
diff --git a/rules/tk.in b/rules/tk.in
index ff04306a0..621bd2849 100644
--- a/rules/tk.in
+++ b/rules/tk.in
@@ -3,8 +3,48 @@
menuconfig TK
tristate
prompt "tk (tcl/tk) "
- select ROOTFS_DEV
- depends on TCL
+ select TCL
+ select LIBC_M
+ select LIBC_DL
+ select LIBC_PTHREAD
+ select XORG
+ select XORG_LIB_X11
+ select XORG_LIB_XFT if TK_XFT
depends on BROKEN
help
Tk is a graphical extension to Tcl (Tool Command Language)
+
+if TK
+
+config TK_WISH
+ bool
+ prompt "install wish"
+ help
+ Install the TK shell 'wish'. More for development, most of the time
+ not required.
+
+config TK_THREADS
+ bool
+ prompt "enable thread support"
+ help
+ Build the TK engine with thread support. This may speed down non
+ thread scripts.
+
+config TK_XFT
+ bool
+ prompt "use freetype/fontconfig/xft"
+ depends on BROKEN
+ help
+ Use freetype/fontconfig/xft for font handling.
+ Note: Currently very broken
+
+config TK_TTK
+ bool
+ prompt "install fancy new widgets"
+ # untested yet
+ depends on BROKEN
+ help
+ Install the fancy new TTK widgets on the target.
+ Note: Currently untested
+
+endif