- New upstream version 3.0.5 - 3.0.5 important changes: * CONC-336: Allow multiple initialization of client library * Fixed string to MYSQL_TIME conversion (prepared statements) * CONC-334: Copy all members of MYSQL_FIELD to internal statement structure * Fixed double free in dynamic column library * Added checks for corrupted packets in protocol * MDEV-15450: Added default connection attribute _server_host * CONC-326: fixed wrong openssl thread id callback - 3.0.4 important changes: * Added option MYSQL_OPT_CAN_HANDLE_EXPIRED_PASSWORDS for mysql_options()/mysql_optionsv(): * New plugin configuration interface: The default configuration for a specific plugin can be specified via cmake parameter -DCLIENT_PLUGIN_${PLUGIN}=[DYNAMIC|STATIC|OFF]. * Added support for linux abstract socket (MDEV-15655). * CONC-320: Added asynchronous/non-blocking support for OpenSSL and GnuTLS * CONC-294: Access violation in mysql_close when using a connection plugin. * MDEV-14977: If built dynamically the old_password plugin could not be located due to wrong filename (must be mysql_old_password.so instead of old_password.so). * CONC-315: If no default client character set was specified, the utf8 character set will be used by default (instead of setting the client character set to server character set) * CONC-317: Parsing of configuration file fails if key/value pairs contain white spaces. * CONC-322: Correct handling of EAGAIN and EINPROGRESS in OBS-URL: https://build.opensuse.org/request/show/623451 OBS-URL: https://build.opensuse.org/package/show/server:database/mariadb-connector-c?expand=0&rev=30
15 lines
681 B
Diff
15 lines
681 B
Diff
Index: mariadb-connector-c-3.0.5-src/plugins/auth/CMakeLists.txt
|
|
===================================================================
|
|
--- mariadb-connector-c-3.0.5-src.orig/plugins/auth/CMakeLists.txt
|
|
+++ mariadb-connector-c-3.0.5-src/plugins/auth/CMakeLists.txt
|
|
@@ -16,7 +16,8 @@ REGISTER_PLUGIN(TARGET dialog
|
|
CONFIGURATIONS DYNAMIC STATIC OFF
|
|
DEFAULT DYNAMIC
|
|
SOURCES ${CC_SOURCE_DIR}/plugins/auth/dialog.c
|
|
- ${CC_SOURCE_DIR}/libmariadb/get_password.c)
|
|
+ ${CC_SOURCE_DIR}/libmariadb/get_password.c
|
|
+ LIBRARIES dl)
|
|
|
|
#GSSAPI client authentication plugin
|
|
IF(NOT WIN32)
|