Kaydet (Commit) dd4aa4de authored tarafından Lionel Elie Mamane's avatar Lionel Elie Mamane

update to newer libmariadb

Updated to bzr/launchpad snapshot revision 40
Solves:
 - missing symbols mysql_library_init and mysql_library_end
 - missing parameter "cipher" to mysql_ssl_set

Change-Id: I0266fbfa0fca89eb665cf6320afa5fb0dbfd7c84
üst 4dfbd5d0
...@@ -22,6 +22,7 @@ $(eval $(call gb_UnpackedTarball_set_patchlevel,mariadb,1)) ...@@ -22,6 +22,7 @@ $(eval $(call gb_UnpackedTarball_set_patchlevel,mariadb,1))
$(eval $(call gb_UnpackedTarball_add_patches,mariadb,\ $(eval $(call gb_UnpackedTarball_add_patches,mariadb,\
libmariadb/mariadb-thread.patch \ libmariadb/mariadb-thread.patch \
libmariadb/mariadb-swap.patch \ libmariadb/mariadb-swap.patch \
libmariadb/mariadb-trunk-40.patch \
)) ))
# vim: set noet sw=4 ts=4: # vim: set noet sw=4 ts=4:
This diff is collapsed.
...@@ -115,33 +115,3 @@ ...@@ -115,33 +115,3 @@
namespace sql namespace sql
{ {
--- misc/mysql-connector-c++-1.1.0/driver/nativeapi/libmysql_static_proxy.cpp 2010-09-10 11:47:47.000000000 +0200
+++ misc/build/mysql-connector-c++-1.1.0/driver/nativeapi/libmysql_static_proxy.cpp 2013-03-14 11:10:14.850848088 +0100
@@ -213,7 +213,8 @@
int
LibmysqlStaticProxy::library_init(int argc,char **argv,char **groups)
{
- return ::mysql_library_init(argc, argv, groups);
+// return ::mysql_library_init(argc, argv, groups);
+ return 0;
}
/* }}} */
@@ -222,7 +223,7 @@
void
LibmysqlStaticProxy::library_end()
{
- return ::mysql_library_end();
+// return ::mysql_library_end();
}
/* }}} */
@@ -352,7 +353,7 @@
const char * capath,
const char * cipher)
{
- return ::mysql_ssl_set(mysql, key, cert, ca, capath, cipher);
+ return ::mysql_ssl_set(mysql, key, cert, ca, capath);
}
/* }}} */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment