summaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2006-02-27 14:47:55 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2006-02-27 14:47:55 +0000
commit2ecbc559282fd45c9557838be6129a2575f3c4c4 (patch)
tree576758058c7711158b8ee8d6761433b90c7d28c3 /extra
parent22f05b29610faa5eaabec5821c8f6cd12ed0294e (diff)
Rich Felker's glob() ported to uClibc
Diffstat (limited to 'extra')
-rw-r--r--extra/Configs/Config.in17
1 files changed, 16 insertions, 1 deletions
diff --git a/extra/Configs/Config.in b/extra/Configs/Config.in
index f556a4993..b0334d078 100644
--- a/extra/Configs/Config.in
+++ b/extra/Configs/Config.in
@@ -1165,12 +1165,27 @@ config UCLIBC_HAS_GLOB
default y
help
- The glob interface is somewhat large (weighing in at about 4k). It
+ The glob interface is somewhat large (weighing in at about 2,5k). It
is used fairly often, but is an option since people wanting to go for
absolute minimum size may wish to omit it.
Most people will answer Y.
+config UCLIBC_HAS_GNU_GLOB
+ bool "Support gnu glob() interface"
+ depends on UCLIBC_HAS_GLOB
+ default y
+ help
+ The gnu glob interface is somewhat larger (weighing in at about 4,2k) than
+ it's SuSv3 counterpart (and is out of date). It is an old copy from glibc and
+ does not support all the GNU specific options.
+
+ Answer Y if you want to include full gnu glob() instead of the smaller SUSv3
+ compatible glob().
+ It is only default, because it is the old/stable version.
+
+ Most people will answer N.
+
endmenu