aboutsummaryrefslogtreecommitdiff
path: root/shell/Config.in
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2009-04-02 10:02:37 +0000
committerMike Frysinger <vapier@gentoo.org>2009-04-02 10:02:37 +0000
commit98c52645c02dacebccae7d68d6c2627f9318fcf7 (patch)
treee0c64b5b24206f95e72fd060336f74cb459f2109 /shell/Config.in
parent551ffdccea39a9223ad451954db40fd7a6e20e79 (diff)
downloadbusybox-w32-98c52645c02dacebccae7d68d6c2627f9318fcf7.tar.gz
busybox-w32-98c52645c02dacebccae7d68d6c2627f9318fcf7.tar.bz2
busybox-w32-98c52645c02dacebccae7d68d6c2627f9318fcf7.zip
split math code out of ash and into a standalone library so we can use it in any shell (like hush!)
Diffstat (limited to 'shell/Config.in')
-rw-r--r--shell/Config.in32
1 files changed, 16 insertions, 16 deletions
diff --git a/shell/Config.in b/shell/Config.in
index afc429667..7daf17ff6 100644
--- a/shell/Config.in
+++ b/shell/Config.in
@@ -84,22 +84,6 @@ config ASH_ALIAS
84 help 84 help
85 Enable alias support in the ash shell. 85 Enable alias support in the ash shell.
86 86
87config ASH_MATH_SUPPORT
88 bool "Posix math support"
89 default y
90 depends on ASH
91 help
92 Enable math support in the ash shell.
93
94config ASH_MATH_SUPPORT_64
95 bool "Extend Posix math support to 64 bit"
96 default n
97 depends on ASH_MATH_SUPPORT
98 help
99 Enable 64-bit math support in the ash shell. This will make
100 the shell slightly larger, but will allow computation with very
101 large numbers.
102
103config ASH_GETOPTS 87config ASH_GETOPTS
104 bool "Builtin getopt to parse positional parameters" 88 bool "Builtin getopt to parse positional parameters"
105 default n 89 default n
@@ -267,6 +251,22 @@ config MSH
267comment "Bourne Shell Options" 251comment "Bourne Shell Options"
268 depends on MSH || LASH || HUSH || ASH 252 depends on MSH || LASH || HUSH || ASH
269 253
254config SH_MATH_SUPPORT
255 bool "POSIX math support"
256 default y
257 depends on ASH || HUSH
258 help
259 Enable math support in the shell via $((...)) syntax.
260
261config SH_MATH_SUPPORT_64
262 bool "Extend POSIX math support to 64 bit"
263 default n
264 depends on SH_MATH_SUPPORT
265 help
266 Enable 64-bit math support in the shell. This will make the shell
267 slightly larger, but will allow computation with very large numbers.
268 This is not in POSIX, so do not rely on this in portable code.
269
270config FEATURE_SH_EXTRA_QUIET 270config FEATURE_SH_EXTRA_QUIET
271 bool "Hide message on interactive shell startup" 271 bool "Hide message on interactive shell startup"
272 default n 272 default n