summaryrefslogtreecommitdiff
path: root/databases/mysql-connector-c++/Makefile
diff options
context:
space:
mode:
authoradam <adam>2015-08-01 09:35:52 +0000
committeradam <adam>2015-08-01 09:35:52 +0000
commit45ae69e799d2e9a4b6d706fb41814768905da40a (patch)
tree0688767e50c535407f196833eccff5c20b110b0b /databases/mysql-connector-c++/Makefile
parent74a1ce50948f7bac0fa1a14351626fc0a913b551 (diff)
downloadpkgsrc-45ae69e799d2e9a4b6d706fb41814768905da40a.tar.gz
Changes 1.1.6:
* Security Fix: Connector/C++ 1.1.6 Commercial upgrades the linked OpenSSL library to version 1.0.1m which has been publicly reported as not vulnerable to CVE-2015-0286. * The std::auto_ptr class template is deprecated in C++11, and its usage has been replaced with boost::scoped_ptr/shared_ptr. * Connector/C++ now provides macros to indicate the versions of libraries against which it was built: MYCPPCONN_STATIC_MYSQL_VERSION and MYCPPCONN_STATIC_MYSQL_VERSION_ID (MySQL client library version, string and numeric), and MYCPPCONN_BOOST_VERSION (Boost library version, numeric). * With defaultStatementResultType=FORWARD_ONLY and a row position after the last row, using getter methods such as getInt() or getString() resulted in a segmentation fault. * For prepared statements, calling wasNull() before fetching data resulted in an assertion failure. * Result sets from prepared statements were not freed. * Connector/C++ failed to build against Boost-devel-1.41.0-25 on OLE6. * Configuration failed if the MYSQL_CONFIG_EXECUTABLE option was specified and the MySQL installation path contained the characters -m. Installation failed if the build directory was not in the top source directory. * For prepared statements, getString() did not return the fractional seconds part from temporal columns that had a fractional sections part. * For queries of the form SELECT MAX(bit_col) FROM table_with_bit_col, getString() returned an incorrect result. * For Connector/C++ builds from source, make install failed if only the static library had been built without the dynamic library.
Diffstat (limited to 'databases/mysql-connector-c++/Makefile')
-rw-r--r--databases/mysql-connector-c++/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/databases/mysql-connector-c++/Makefile b/databases/mysql-connector-c++/Makefile
index ab0483a64f8..73612a54aa2 100644
--- a/databases/mysql-connector-c++/Makefile
+++ b/databases/mysql-connector-c++/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.4 2014/11/29 16:41:25 adam Exp $
+# $NetBSD: Makefile,v 1.5 2015/08/01 09:35:52 adam Exp $
-DISTNAME= mysql-connector-c++-1.1.5
+DISTNAME= mysql-connector-c++-1.1.6
CATEGORIES= databases
MASTER_SITES= ${MASTER_SITE_MYSQL:=Connector-C++/}