summaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2005-12-24 00:15:05 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2005-12-24 00:15:05 +0000
commitf8be4236ba4bc66ac22510d47db44427e946e64d (patch)
tree2e24ed00cdb40b5cd1d56c077d3f7baf405a10ee /extra
parent0eef7f38a16a540991dbc050b9643a031b91469e (diff)
Add new fnmatch code, for now mbstate_t and mbsrtowcs are depending on UCLIBC_HAS_LOCALE, making the new object about 5k, else it would be 10k
Diffstat (limited to 'extra')
-rw-r--r--extra/Configs/Config.in21
1 files changed, 21 insertions, 0 deletions
diff --git a/extra/Configs/Config.in b/extra/Configs/Config.in
index b0637b750..d6e57a846 100644
--- a/extra/Configs/Config.in
+++ b/extra/Configs/Config.in
@@ -1059,6 +1059,27 @@ config UCLIBC_HAS_REGEX_OLD
support, then stick with the old version (and say Y here).
Otherwise, you should use the new version (and say N here).
+config UCLIBC_HAS_FNMATCH
+ bool "fnmatch Support"
+ default y
+ help
+ POSIX fnmatch.
+
+config UCLIBC_HAS_FNMATCH_OLD
+ bool "Use the older (stable) fnmatch code"
+ depends on UCLIBC_HAS_FNMATCH
+ default y
+ help
+ There are two versions of fnmatch. The older (stable) version has
+ been in uClibc for quite a long time but hasn't seen too many
+ updates. It also has some known issues when dealing with uncommon
+ corner cases and multibyte/unicode strings. However, it is quite
+ a bit smaller than the newer version.
+
+ If the older version has worked for you and you don't need unicode
+ support, then stick with the old version (and say Y here).
+ Otherwise, you should use the new version (and say N here).
+
config UCLIBC_HAS_WORDEXP
bool "Support the wordexp() interface"
depends on UCLIBC_HAS_GLOB