OSDN Git Service

Make internalization support optional
[android-x86/external-toybox.git] / Config.in
1 mainmenu "ToyBox Configuration"
2
3
4 source generated/Config.probed
5 source generated/Config.in
6
7 comment ""
8
9 menu "Toybox global settings"
10
11 config TOYBOX
12         bool
13         default n
14         help
15           usage: toybox [command] [arguments...]
16
17           With no arguments, shows available commands.  First argument is
18           name of a command to run, followed by any arguments to that command.
19
20 config TOYBOX_SUID
21         bool "SUID support"
22         default y
23         help
24           Support for suid commands, which run as root.  This means toybox must
25           be installed suid root, and drops permissions before running commands
26           which do not require root access.
27
28 config TOYBOX_FLOAT
29         bool "Floating point support"
30         default y
31         help
32           Include floating point support infrastructure and commands that
33           require it.
34
35 config TOYBOX_I18N
36         bool "Internalization support"
37         default y
38         help
39           Add support for locales in commands.
40
41 config TOYBOX_FREE
42         bool "Free memory unnecessarily"
43         default n
44         help
45           When a program exits, the operating system will clean up after it
46           (free memory, close files, etc).  To save size, toybox usually relies
47           on this behavior.  If you're running toybox under a debugger or
48           without a real OS (ala newlib+libgloss), enable this to make toybox
49           clean up after itself.
50
51 config TOYBOX_DEBUG
52         bool "Debugging tests"
53         default n
54         help
55           Enable extra checks for debugging purposes.
56
57 endmenu