From 31d0d44919eebfc5f83fe82ae38312f13541144a Mon Sep 17 00:00:00 2001 From: "bar@bar.mysql.r18.ru" <> Date: Mon, 26 May 2003 20:22:23 +0500 Subject: --with-charset was not up to date ctype_ucs2 and ctype_ujis were skipped in mistake --- strings/ctype-czech.c | 2 +- strings/ctype-euc_kr.c | 2 +- strings/ctype-win1250ch.c | 5 +++++ 3 files changed, 7 insertions(+), 2 deletions(-) (limited to 'strings') 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, @@ -673,4 +676,6 @@ CHARSET_INFO my_charset_cp1250_czech_ci = }; +#endif + #endif -- cgit v1.2.1