diff options
author | Sergei Golubchik <sergii@pisem.net> | 2014-05-05 12:51:11 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2014-05-05 12:51:11 +0200 |
commit | 2221029f5455d8fe5c55f72e4b8402622fc74d31 (patch) | |
tree | ba67c1391e383377a2ba551b1e7430ae38d2c8db /libmysql/CMakeLists.txt | |
parent | ddc960db4bbbcb38ad1413c4aaedb742c12cc5d3 (diff) | |
download | mariadb-git-2221029f5455d8fe5c55f72e4b8402622fc74d31.tar.gz |
MDEV-6131 Unable to build Connector/ODBC 5.2.5 undefined reference to `my_charset_latin1'
Add charsets to the client API
(they are declared with MYSQL_PLUGIN_IMPORT, meaning the intention is to have them public)
Diffstat (limited to 'libmysql/CMakeLists.txt')
-rw-r--r-- | libmysql/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libmysql/CMakeLists.txt b/libmysql/CMakeLists.txt index 810726168bd..c3be25f7d43 100644 --- a/libmysql/CMakeLists.txt +++ b/libmysql/CMakeLists.txt @@ -139,6 +139,10 @@ my_print_help SET(CLIENT_API_FUNCTIONS_5_5 mysql_stmt_next_result +# Charsets +my_charset_bin +my_charset_latin1 +my_charset_utf8_general_ci # Client plugins mysql_client_find_plugin mysql_client_register_plugin |