diff options
author | Sergei Golubchik <serg@mariadb.org> | 2016-09-04 13:35:14 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2016-09-12 17:51:49 +0200 |
commit | ed0b84a0270bd99b001dd00654875d26e29b9432 (patch) | |
tree | ecdff364c7f3e6816bcdeae3e32d325b0681c01e /libmysql/libmysql_versions.ld.in | |
parent | 4ba198c6e3c7ccf4da2a87c14043bb3be08915f7 (diff) | |
download | mariadb-git-ed0b84a0270bd99b001dd00654875d26e29b9432.tar.gz |
remove libmysql/
also disable server's client plugins when C/C has the same
Diffstat (limited to 'libmysql/libmysql_versions.ld.in')
-rw-r--r-- | libmysql/libmysql_versions.ld.in | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/libmysql/libmysql_versions.ld.in b/libmysql/libmysql_versions.ld.in deleted file mode 100644 index 0cf5b45cc18..00000000000 --- a/libmysql/libmysql_versions.ld.in +++ /dev/null @@ -1,33 +0,0 @@ -/* - This version script is heavily inspired by Fedora's and Mageia's version - scripts for MySQL client shared library. - But it was modified to support Debian-compatible versioning too. - - In RedHat universe, symbols from old libmysqlclient.so.16 - keep their libmysqlclient_16 version. New symbols added in - libmysqlclient.so.18 get the new libmysqlclient_18 version. - - In Debian all symbols in libmysqlclient.so.18 have libmysqlclient_18 version, - including symbols that existed in libmysqlclient.so.16 - - We solve this by putting all symbols into libmysqlclient_18 version node, - but creating aliases for old symbols in the libmysqlclient_16 version node. -*/ - -@CLIENT_API_5_1_ALIASES@ - -/* - On Fedora the following symbols are exported, but renamed into a mysql_ - namespace. We export them as aliases, but keep original symbols too. See - MDEV-4127. -*/ -mysql_default_charset_info = default_charset_info; -mysql_get_charset = get_charset; -mysql_get_charset_by_csname = get_charset_by_csname; -mysql_net_realloc = net_realloc; -mysql_client_errors = client_errors; - -@VERSION_HEADER@ -@CLIENT_API_5_1_LIST@ -@CLIENT_API_5_5_LIST@ -@VERSION_FOOTER@ |