diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2009-09-18 16:18:25 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2009-10-08 16:56:33 +0200 |
commit | 946b7b5ab8508fa8bf32fdd89d55d9e2f0b4fe25 (patch) | |
tree | 1cf74543b8e81168aadbd6f6de386a91a38d604f /extra | |
parent | 3aa8bd943485ae7c3e05bfe4e99ec8daf4cfd2fa (diff) |
ftw() is obsolescent in SUSv4
Apps should switch to nftw()
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'extra')
-rw-r--r-- | extra/Configs/Config.in | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/extra/Configs/Config.in b/extra/Configs/Config.in index 3d1a92953..8fa9a47ae 100644 --- a/extra/Configs/Config.in +++ b/extra/Configs/Config.in @@ -1754,15 +1754,27 @@ config UCLIBC_HAS_WORDEXP This interface is rarely used, and very large. Unless you have a pressing need for wordexp(), you should probably answer N. +config UCLIBC_HAS_NFTW + bool "Support the nftw() interface" + default n + help + The SuSv3 nftw() interface is used to recursively descend + directory paths while repeatedly calling a function. + + This interface is rarely used, and adds around 4.5k. Unless you have + a pressing need for nftw(), you should probably answer N. + config UCLIBC_HAS_FTW - bool "Support the ftw() and nftw() interfaces" + bool "Support the ftw() interface" default n + depends on UCLIBC_SUSV4_LEGACY help - The SuSv3 ftw() and nftw() interfaces are used to recursively descend + The SuSv3 ftw() interface is used to recursively descend directory paths while repeatedly calling a function. This interface is rarely used, and adds around 4.5k. Unless you have - a pressing need for ftw() or nftw(), you should probably answer N. + a pressing need for ftw(), you should probably answer N. + config UCLIBC_HAS_GLOB bool "Support the glob() interface" |