summaryrefslogtreecommitdiff
path: root/strings
diff options
context:
space:
mode:
authorunknown <bar@bar.mysql.r18.ru>2003-05-26 20:22:23 +0500
committerunknown <bar@bar.mysql.r18.ru>2003-05-26 20:22:23 +0500
commit720584b0c6eb435fa87b5da42578f214d83735d1 (patch)
tree44e581c5024f3bc227c59de0debb99b118fac076 /strings
parent12604089b6acd8242a506d021449bdc515b72e14 (diff)
downloadmariadb-git-720584b0c6eb435fa87b5da42578f214d83735d1.tar.gz
--with-charset was not up to date
ctype_ucs2 and ctype_ujis were skipped in mistake
Diffstat (limited to 'strings')
-rw-r--r--strings/ctype-czech.c2
-rw-r--r--strings/ctype-euc_kr.c2
-rw-r--r--strings/ctype-win1250ch.c5
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