mirror of
https://github.com/UberGames/RPG-X2.git
synced 2024-11-14 00:40:59 +00:00
57 lines
1.9 KiB
C
57 lines
1.9 KiB
C
/* Copyright (C) 2008 Sun Microsystems, Inc.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; version 2 of the License.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
|
|
|
/* Character set configuration (hard-coded) */
|
|
#define HAVE_CHARSET_armscii8 1
|
|
#define HAVE_CHARSET_ascii 1
|
|
#define HAVE_CHARSET_big5 1
|
|
#define HAVE_CHARSET_cp1250 1
|
|
#define HAVE_CHARSET_cp1251 1
|
|
#define HAVE_CHARSET_cp1256 1
|
|
#define HAVE_CHARSET_cp1257 1
|
|
#define HAVE_CHARSET_cp850 1
|
|
#define HAVE_CHARSET_cp852 1
|
|
#define HAVE_CHARSET_cp866 1
|
|
#define HAVE_CHARSET_cp932 1
|
|
#define HAVE_CHARSET_dec8 1
|
|
#define HAVE_CHARSET_eucjpms 1
|
|
#define HAVE_CHARSET_euckr 1
|
|
#define HAVE_CHARSET_gb2312 1
|
|
#define HAVE_CHARSET_gbk 1
|
|
#define HAVE_CHARSET_greek 1
|
|
#define HAVE_CHARSET_hebrew 1
|
|
#define HAVE_CHARSET_hp8 1
|
|
#define HAVE_CHARSET_keybcs2 1
|
|
#define HAVE_CHARSET_koi8r 1
|
|
#define HAVE_CHARSET_koi8u 1
|
|
#define HAVE_CHARSET_latin1 1
|
|
#define HAVE_CHARSET_latin2 1
|
|
#define HAVE_CHARSET_latin5 1
|
|
#define HAVE_CHARSET_latin7 1
|
|
#define HAVE_CHARSET_macce 1
|
|
#define HAVE_CHARSET_macroman 1
|
|
#define HAVE_CHARSET_sjis 1
|
|
#define HAVE_CHARSET_swe7 1
|
|
#define HAVE_CHARSET_tis620 1
|
|
#define HAVE_CHARSET_ucs2 1
|
|
#define HAVE_CHARSET_ujis 1
|
|
#define HAVE_CHARSET_utf16 1
|
|
#define HAVE_CHARSET_utf32 1
|
|
#define HAVE_CHARSET_utf8mb3 1
|
|
#define HAVE_CHARSET_utf8mb4 1
|
|
#define HAVE_UCA_COLLATIONS 1
|
|
#define MYSQL_DEFAULT_CHARSET_NAME "latin1"
|
|
#define MYSQL_DEFAULT_COLLATION_NAME "latin1_swedish_ci"
|
|
#define USE_MB 1
|