- add a colorful "valid HTML 4.01 Transitional" button to be able to check the refere...
[oweals/busybox.git] / coreutils / Config.in
index 3b742dc6c063780c2aaa8b7b1ae481ea798edd82..62c5c327d5dbdc0a1d853bba65654eb1c15653e6 100644 (file)
@@ -109,6 +109,38 @@ config CONFIG_DF
          df reports the amount of disk space used and available
          on filesystems.
 
+config CONFIG_DIFF
+       bool "diff"
+       default n
+       help
+         diff compares two files or directories and outputs the
+         differences between them in a form that can be given to
+         the patch command.
+
+config CONFIG_FEATURE_DIFF_BINARY
+       bool "  Enable checks for binary files"
+       default y
+       depends on CONFIG_DIFF
+       help
+         This option enables support for checking for binary files
+         before a comparison is carried out.
+
+config CONFIG_FEATURE_DIFF_DIR
+       bool "  Enable directory support"
+       default y
+       depends on CONFIG_DIFF
+       help
+         This option enables support for directory and subdirectory
+         comparison.
+
+config CONFIG_FEATURE_DIFF_MINIMAL
+       bool "  Enable -d option to find smaller sets of changes"
+       default n
+       depends on CONFIG_DIFF
+       help
+         Enabling this option allows the use of -d to make diff
+         try hard to find the smallest possible set of changes.
+
 config CONFIG_DIRNAME
        bool "dirname"
        default n
@@ -171,6 +203,15 @@ config CONFIG_EXPR
          expr is used to calculate numbers and print the result
          to standard output.
 
+config CONFIG_EXPR_MATH_SUPPORT_64
+       bool "    Extend Posix numbers support to 64 bit"
+       default n
+       depends on CONFIG_EXPR
+       help
+         Enable 64-bit math support in the expr applet.  This will make
+         the applet slightly larger, but will allow computation with very
+         large numbers.
+
 config CONFIG_FALSE
        bool "false"
        default n
@@ -306,21 +347,6 @@ config CONFIG_MD5SUM
        help
          md5sum is used to print or check MD5 checksums.
 
-config CONFIG_MD5SUM_SIZE_VS_SPEED
-       int "  Trade Bytes for Speed"
-       default 2
-       range 0 3
-       depends on CONFIG_MD5SUM
-       help
-         Trade binary size versus speed for the md5sum algorithm.
-         Approximate values running uClibc and hashing
-         linux-2.4.4.tar.bz2 were:
-                           user times (sec)  text size (386)
-         0 (fastest)         1.1                6144
-         1                   1.4                5392
-         2                   3.0                5088
-         3 (smallest)        5.1                4912
-
 config CONFIG_MKDIR
        bool "mkdir"
        default n
@@ -457,8 +483,8 @@ config CONFIG_FEATURE_STAT_FORMAT
        default n
        depends on CONFIG_STAT
        help
-         Without this, stat will not support the '-c format' option where 
-         users can pass a custom format string for output.  This adds about 
+         Without this, stat will not support the '-c format' option where
+         users can pass a custom format string for output.  This adds about
          7k to a nonstatic build on amd64.
 
 config CONFIG_STTY
@@ -645,19 +671,19 @@ config CONFIG_FEATURE_PRESERVE_HARDLINKS
        help
          Allow cp and mv to preserve hard links.
 
-comment "Common options for ls and more"
-       depends on CONFIG_LS || CONFIG_MORE
+comment "Common options for ls, more and telnet"
+       depends on CONFIG_LS || CONFIG_MORE || CONFIG_TELNET
 
 config CONFIG_FEATURE_AUTOWIDTH
        bool "  Calculate terminal & column widths"
        default y
-       depends on CONFIG_LS || CONFIG_MORE
+       depends on CONFIG_LS || CONFIG_MORE || CONFIG_TELNET
        help
-         This option allows utilities such as 'ls' and 'more' to determine the
-         width of the screen, which can allow them to display additional text
-         or avoid wrapping text onto the next line.  If you leave this
-         disabled, your utilities will be especially primitive and will be
-         unable to determine the current screen width.
+         This option allows utilities such as 'ls', 'more' and 'telnet'
+         to determine the width of the screen, which can allow them to 
+         display additional text or avoid wrapping text onto the next line.
+         If you leave this disabled, your utilities will be especially 
+         primitive and will be unable to determine the current screen width.
 
 comment "Common options for df, du, ls"
        depends on CONFIG_DF || CONFIG_DU || CONFIG_LS