diff options
Diffstat (limited to 'strings')
-rw-r--r-- | strings/ctype-czech.c | 2 | ||||
-rw-r--r-- | strings/ctype-euc_kr.c | 2 | ||||
-rw-r--r-- | strings/ctype-win1250ch.c | 5 |
3 files changed, 7 insertions, 2 deletions
diff --git a/strings/ctype-czech.c b/strings/ctype-czech.c index fc3ff137778..2398bc33d45 100644 --- a/strings/ctype-czech.c +++ b/strings/ctype-czech.c @@ -77,7 +77,7 @@ #endif -#ifdef HAVE_CHARSET_czech +#ifdef HAVE_CHARSET_latin2 /* These are four tables for four passes of the algorithm. Please see diff --git a/strings/ctype-euc_kr.c b/strings/ctype-euc_kr.c index 4a5757bf5c4..8e288ee8e55 100644 --- a/strings/ctype-euc_kr.c +++ b/strings/ctype-euc_kr.c @@ -30,7 +30,7 @@ #include "m_string.h" #include "m_ctype.h" -#ifdef HAVE_CHARSET_euc_kr +#ifdef HAVE_CHARSET_euckr static uchar NEAR ctype_euc_kr[257] = diff --git a/strings/ctype-win1250ch.c b/strings/ctype-win1250ch.c index af4faca46e1..0b75a782b17 100644 --- a/strings/ctype-win1250ch.c +++ b/strings/ctype-win1250ch.c @@ -45,6 +45,9 @@ #include "m_string.h" #include "m_ctype.h" +#ifdef HAVE_CHARSET_cp1250 + + static uint16 tab_cp1250_uni[256]={ 0,0x0001,0x0002,0x0003,0x0004,0x0005,0x0006,0x0007, 0x0008,0x0009,0x000A,0x000B,0x000C,0x000D,0x000E,0x000F, @@ -674,3 +677,5 @@ CHARSET_INFO my_charset_cp1250_czech_ci = #endif + +#endif |