summaryrefslogtreecommitdiffstats
path: root/rules/less.in
diff options
context:
space:
mode:
authorRobert Schwebel <r.schwebel@pengutronix.de>2008-06-03 12:06:42 +0000
committerRobert Schwebel <r.schwebel@pengutronix.de>2008-06-03 12:06:42 +0000
commite7ef576203aa5bb9d6e5007d8b7b4af6ea8fe7ef (patch)
tree300d20a855ceb06f2833adbdadbff5f1486065a7 /rules/less.in
parentf73ac226742b77d119996a2c820cac01e368fda8 (diff)
downloadptxdist-e7ef576203aa5bb9d6e5007d8b7b4af6ea8fe7ef.tar.gz
ptxdist-e7ef576203aa5bb9d6e5007d8b7b4af6ea8fe7ef.tar.xz
* less: fix library dependencies; version update
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@8266 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/less.in')
-rw-r--r--rules/less.in66
1 files changed, 62 insertions, 4 deletions
diff --git a/rules/less.in b/rules/less.in
index 2459f7df9..4f9d31e87 100644
--- a/rules/less.in
+++ b/rules/less.in
@@ -1,32 +1,90 @@
menuconfig LESS
bool
prompt "less "
+# select LIBPW if LESS_USE_PW
+# select CURSES if LESS_USE_CURSES
+# select TINFO if LESS_USE_TINFO
+# select XCURSES if LESS_USE_XCURSES
+ select NCURSES if LESS_USE_NCURSES
+ select NCURSES if LESS_USE_NCURSESW
+ select NCURSES_WIDE_CHAR if LESS_USE_NCURSESW
+ select TERMCAP if LESS_USE_TERMCAP
+# select TERMLIB if LESS_USE_TERMLIB
+# select GEN if LESS_USE_GEN
+# select INTL if LESS_USE_INTL
help
Less is a pager. A pager is a program
that displays text files. More info:
http://www.greenwoodsoftware.com/less/
+if LESS
+
config LESS_BIN
bool
default y
- depends on LESS && !BB_CONFIG_LESS
+ depends on !BB_CONFIG_LESS
prompt "install less pager "
help
less - a pager
config LESS_KEY
bool
- depends on LESS && !BB_CONFIG_LESS
+ depends on !BB_CONFIG_LESS
prompt "install lesskey "
help
lesskey - specify key bindings for less
config LESS_ECHO
bool
- depends on LESS && !BB_CONFIG_LESS
+ depends on !BB_CONFIG_LESS
prompt "install lessecho "
help
lessecho - expand metacharacters
comment "busy box' less is selected!"
- depends on LESS && BB_CONFIG_LESS
+ depends on BB_CONFIG_LESS
+
+# library dependencies
+
+config LESS_USE_PW
+ bool
+# prompt "use libPW"
+
+config LESS_USE_CURSES
+ bool
+# prompt "use curses"
+
+config LESS_USE_TINFO
+ bool
+# prompt "use tinfo"
+
+config LESS_USE_XCURSES
+ bool
+# prompt "use xcurses"
+
+config LESS_USE_NCURSES
+ bool
+ prompt "use ncurses"
+
+config LESS_USE_NCURSESW
+ bool
+ prompt "use ncursesw"
+
+config LESS_USE_TERMCAP
+ bool
+ prompt "use termcap"
+
+config LESS_USE_TERMLIB
+ bool
+# prompt "use termlib"
+
+config LESS_USE_GEN
+ bool
+# prompt "use libgen"
+
+config LESS_USE_INTL
+ bool
+# prompt "use libintl"
+
+endif
+