aboutsummaryrefslogtreecommitdiff
path: root/shell/Config.in
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2004-06-22 08:29:45 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2004-06-22 08:29:45 +0000
commit5d3b12c60ee497d5203d067e424864c992069401 (patch)
tree1f7b66f71f04cf66fab5fc0a385adb34d5d5b97b /shell/Config.in
parent3152f0fa8f49f1c122e204f654f6a072dca48f4c (diff)
downloadbusybox-w32-5d3b12c60ee497d5203d067e424864c992069401.tar.gz
busybox-w32-5d3b12c60ee497d5203d067e424864c992069401.tar.bz2
busybox-w32-5d3b12c60ee497d5203d067e424864c992069401.zip
Patch from Bastian Blank:
The updated patch adds a config option to explicitely enable 64 bit arithmetic. Also it removes the arith prototype from libbb.h as it is not used outside of ash. Bastian this patch has been slightly modified by Erik for cleanliness. git-svn-id: svn://busybox.net/trunk/busybox@8910 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell/Config.in')
-rw-r--r--shell/Config.in9
1 files changed, 9 insertions, 0 deletions
diff --git a/shell/Config.in b/shell/Config.in
index b064ed41b..c8f4a936c 100644
--- a/shell/Config.in
+++ b/shell/Config.in
@@ -67,6 +67,15 @@ config CONFIG_ASH_MATH_SUPPORT
67 help 67 help
68 Enable math support in the ash shell. 68 Enable math support in the ash shell.
69 69
70config CONFIG_ASH_MATH_SUPPORT_64
71 bool " Extend Posix math support to 64 bit"
72 default n
73 depends on CONFIG_ASH_MATH_SUPPORT
74 help
75 Enable 64-bit math support in the ash shell. This will make
76 the shell slightly larger, but will allow computation with very
77 large numbers.
78
70config CONFIG_ASH_GETOPTS 79config CONFIG_ASH_GETOPTS
71 bool " Enable getopt builtin to parse positional parameters" 80 bool " Enable getopt builtin to parse positional parameters"
72 default n 81 default n