diff options
author | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-12-11 03:09:05 +0000 |
---|---|---|
committer | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-12-11 03:09:05 +0000 |
commit | b4278a33a965c9c950574c829265edd018dbe4fc (patch) | |
tree | c6410295b7270b93ffab84419419b9b05586e370 /sysdeps/linux | |
parent | 9ce34d9eb4a006d94cb631c54a5f1bda9b79356f (diff) | |
download | busybox-w32-b4278a33a965c9c950574c829265edd018dbe4fc.tar.gz busybox-w32-b4278a33a965c9c950574c829265edd018dbe4fc.tar.bz2 busybox-w32-b4278a33a965c9c950574c829265edd018dbe4fc.zip |
Add build options to control SuS compatability, allows numeric
option handling to be disabled.
Defaults to enabled, so no changes in default behaviour
git-svn-id: svn://busybox.net/trunk/busybox@12835 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'sysdeps/linux')
-rw-r--r-- | sysdeps/linux/Config.in | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sysdeps/linux/Config.in b/sysdeps/linux/Config.in index 95491c9a0..fb97c8f05 100644 --- a/sysdeps/linux/Config.in +++ b/sysdeps/linux/Config.in | |||
@@ -203,6 +203,21 @@ config EXTRA_CFLAGS_OPTIONS | |||
203 | if you want to add some simple compiler switches (like -march=i686), | 203 | if you want to add some simple compiler switches (like -march=i686), |
204 | or check for warnings using -Werror, just those options here. | 204 | or check for warnings using -Werror, just those options here. |
205 | 205 | ||
206 | config CONFIG_FEATURE_SUSv2 | ||
207 | bool "Enable features that are in SuSv2 but not SuSv3?" | ||
208 | default y | ||
209 | help | ||
210 | This option will enable backwards compatability with SuSv2, | ||
211 | specifically, numeric options such as 'head -1 <file>' will be | ||
212 | supported. | ||
213 | |||
214 | config CONFIG_FEATURE_SUSv2_OBSOLETE | ||
215 | bool "Enable features that are obsolete in SuSv2" | ||
216 | depends on CONFIG_FEATURE_SUSv2 | ||
217 | default y | ||
218 | help | ||
219 | Disables support for numeric arguments in fold. | ||
220 | |||
206 | endmenu | 221 | endmenu |
207 | 222 | ||
208 | menu 'Installation Options' | 223 | menu 'Installation Options' |