mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-13 23:34:05 +08:00
2b3d047870
utf8data.h contains a large database table which is an auto-generated decodification trie for the unicode normalization functions. Allow building it into a separate module. Based on a patch from Shreeya Patel <shreeya.patel@collabora.com>. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Gabriel Krisman Bertazi <krisman@collabora.com>
24 lines
737 B
Plaintext
24 lines
737 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# UTF-8 normalization
|
|
#
|
|
config UNICODE
|
|
bool "UTF-8 normalization and casefolding support"
|
|
help
|
|
Say Y here to enable UTF-8 NFD normalization and NFD+CF casefolding
|
|
support.
|
|
|
|
config UNICODE_UTF8_DATA
|
|
tristate "UTF-8 normalization and casefolding tables"
|
|
depends on UNICODE
|
|
default UNICODE
|
|
help
|
|
This contains a large table of case foldings, which can be loaded as
|
|
a separate module if you say M here. To be on the safe side stick
|
|
to the default of Y. Saying N here makes no sense, if you do not want
|
|
utf8 casefolding support, disable CONFIG_UNICODE instead.
|
|
|
|
config UNICODE_NORMALIZATION_SELFTEST
|
|
tristate "Test UTF-8 normalization support"
|
|
depends on UNICODE_UTF8_DATA
|