Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
198b6117
Commit
198b6117
authored
Apr 11, 2005
by
joerg@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Proper handling of "utf8-general-cs" clollation: Missing parts in configuration.
parents
588559e3
ea39dffb
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
3 deletions
+12
-3
BUILD/compile-pentium-cybozu
BUILD/compile-pentium-cybozu
+9
-0
mysys/charset-def.c
mysys/charset-def.c
+2
-2
strings/ctype-utf8.c
strings/ctype-utf8.c
+1
-1
No files found.
BUILD/compile-pentium-cybozu
0 → 100755
View file @
198b6117
#! /bin/sh
path
=
`
dirname
$0
`
.
"
$path
/SETUP.sh"
extra_flags
=
"
$pentium_cflags
$fast_cflags
-g"
extra_configs
=
"
$pentium_configs
--with-charset=utf8 --with-collation=utf8_general_cs"
.
"
$path
/FINISH.sh"
mysys/charset-def.c
View file @
198b6117
...
...
@@ -62,7 +62,7 @@ extern CHARSET_INFO my_charset_utf8_slovak_uca_ci;
extern
CHARSET_INFO
my_charset_utf8_spanish2_uca_ci
;
extern
CHARSET_INFO
my_charset_utf8_roman_uca_ci
;
extern
CHARSET_INFO
my_charset_utf8_persian_uca_ci
;
#ifdef HAVE_
CYBOZU_COLLATION
#ifdef HAVE_
UTF8_GENERAL_CS
extern
CHARSET_INFO
my_charset_utf8_general_cs
;
#endif
#endif
...
...
@@ -159,7 +159,7 @@ my_bool init_compiled_charsets(myf flags __attribute__((unused)))
#ifdef HAVE_CHARSET_utf8
add_compiled_collation
(
&
my_charset_utf8_general_ci
);
add_compiled_collation
(
&
my_charset_utf8_bin
);
#ifdef HAVE_
CYBOZU_COLLATION
#ifdef HAVE_
UTF8_GENERAL_CS
add_compiled_collation
(
&
my_charset_utf8_general_cs
);
#endif
#ifdef HAVE_UCA_COLLATIONS
...
...
strings/ctype-utf8.c
View file @
198b6117
...
...
@@ -2405,7 +2405,7 @@ CHARSET_INFO my_charset_utf8_bin=
&
my_collation_mb_bin_handler
};
#ifdef HAVE_
CYBOZU_COLLATION
#ifdef HAVE_
UTF8_GENERAL_CS
/*
* These functions bacically do the same as their original, except
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment