mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.encodings: Add compat with ICU before version 58
This commit is contained in:
parent
56728cf598
commit
183b42baa0
1 changed files with 5 additions and 0 deletions
|
@ -324,6 +324,11 @@ UStringPrepProfile *icu_resourceprep;
|
||||||
UStringPrepProfile *icu_saslprep;
|
UStringPrepProfile *icu_saslprep;
|
||||||
USpoofChecker *icu_spoofcheck;
|
USpoofChecker *icu_spoofcheck;
|
||||||
|
|
||||||
|
#if (U_ICU_VERSION_MAJOR_NUM < 58)
|
||||||
|
/* COMPAT */
|
||||||
|
#define USPOOF_CONFUSABLE (USPOOF_SINGLE_SCRIPT_CONFUSABLE | USPOOF_MIXED_SCRIPT_CONFUSABLE | USPOOF_WHOLE_SCRIPT_CONFUSABLE)
|
||||||
|
#endif
|
||||||
|
|
||||||
/* initialize global ICU stringprep profiles */
|
/* initialize global ICU stringprep profiles */
|
||||||
void init_icu() {
|
void init_icu() {
|
||||||
UErrorCode err = U_ZERO_ERROR;
|
UErrorCode err = U_ZERO_ERROR;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue