diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-04-02 10:02:37 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-04-02 10:02:37 +0000 |
commit | 98c52645c02dacebccae7d68d6c2627f9318fcf7 (patch) | |
tree | e0c64b5b24206f95e72fd060336f74cb459f2109 /shell/Config.in | |
parent | 551ffdccea39a9223ad451954db40fd7a6e20e79 (diff) | |
download | busybox-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.in | 32 |
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 | ||
87 | config 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 | |||
94 | config 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 | |||
103 | config ASH_GETOPTS | 87 | config 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 | |||
267 | comment "Bourne Shell Options" | 251 | comment "Bourne Shell Options" |
268 | depends on MSH || LASH || HUSH || ASH | 252 | depends on MSH || LASH || HUSH || ASH |
269 | 253 | ||
254 | config 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 | |||
261 | config 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 | |||
270 | config FEATURE_SH_EXTRA_QUIET | 270 | config 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 |