diff options
author | Thomas Graf <tgraf@suug.ch> | 2005-06-23 23:49:30 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2005-06-23 23:49:30 -0400 |
commit | 2de4ff7bd658c97fb357efa3095a509674dacb5a (patch) | |
tree | 49036dbf594317a6a17ff4e56f65158a6aeacbda /lib/Kconfig | |
parent | 5f8ef48d240963093451bcf83df89f1a1364f51d (diff) |
[LIB]: Textsearch infrastructure.
The textsearch infrastructure provides text searching
facitilies for both linear and non-linear data.
Individual search algorithms are implemented in modules
and chosen by the user.
Signed-off-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'lib/Kconfig')
-rw-r--r-- | lib/Kconfig | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/Kconfig b/lib/Kconfig index 2d4d4e3bc4aa..5bc2d523e6d1 100644 --- a/lib/Kconfig +++ b/lib/Kconfig | |||
@@ -63,5 +63,11 @@ config REED_SOLOMON_ENC16 | |||
63 | config REED_SOLOMON_DEC16 | 63 | config REED_SOLOMON_DEC16 |
64 | boolean | 64 | boolean |
65 | 65 | ||
66 | endmenu | 66 | config TEXTSEARCH |
67 | boolean "Textsearch infrastructure" | ||
68 | default y | ||
69 | help | ||
70 | Say Y here if you want to provide a textsearch infrastructure | ||
71 | to other subsystems. | ||
67 | 72 | ||
73 | endmenu | ||