1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

--with-collation argument for configure. Now one can for example use this:

./configure --with-charset=latin1 --with-collation=latin1_danish_ci
This commit is contained in:
bar@bar.mysql.r18.ru
2003-05-28 16:23:04 +05:00
parent 6b1793d2aa
commit 67c6703463
8 changed files with 178 additions and 14 deletions

View File

@ -38,7 +38,8 @@ static my_bool opt_alldbs = 0, opt_check_only_changed = 0, opt_extended = 0,
static uint verbose = 0, opt_mysql_port=0;
static my_string opt_mysql_unix_port = 0;
static char *opt_password = 0, *current_user = 0,
*default_charset = (char *)MYSQL_CHARSET, *current_host = 0;
*default_charset = (char *)MYSQL_DEFAULT_CHARSET_NAME,
*current_host = 0;
static int first_error = 0;
DYNAMIC_ARRAY tables4repair;
#ifdef HAVE_SMEM