svn commit: r469165 - in head/databases: qt4-mysql-plugin qt4-mysql-plugin/files qt5-sqldrivers-mysql qt5-sqldrivers-mysql/files

Tobias C. Berner tcberner at FreeBSD.org
Sat May 5 20:05:11 UTC 2018


Author: tcberner
Date: Sat May  5 20:05:08 2018
New Revision: 469165
URL: https://svnweb.freebsd.org/changeset/ports/469165

Log:
  databases/qt4-mysql-plugin & databases/qt5-sqldrivers-mysql: fix build against mysql >= 8.0.1.
  
  From the mysql release notes [1]:
  
    Incompatible Change: The my_bool type is no longer used in MySQL source code.
    Any third-party code that used this type to represent C boolean variables should
    use the bool or int C type instead.
  
    Note
      The change from my_bool to bool means that the mysql.h header file now requires
      a C++ or C99 compiler to compile.
  
    (Bug #25597667)
  
  --
  
  [1] https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-1.html
  
  PR:		227813
  Reported by:	mikhail.rokhin at gmail.com

Added:
  head/databases/qt4-mysql-plugin/files/
  head/databases/qt4-mysql-plugin/files/patch-src_sql_drivers_mysql_qsql__mysql.cpp   (contents, props changed)
  head/databases/qt5-sqldrivers-mysql/files/
  head/databases/qt5-sqldrivers-mysql/files/patch-src_plugins_sqldrivers_mysql_qsql__mysql.cpp   (contents, props changed)
Modified:
  head/databases/qt4-mysql-plugin/Makefile
  head/databases/qt5-sqldrivers-mysql/Makefile

Modified: head/databases/qt4-mysql-plugin/Makefile
==============================================================================
--- head/databases/qt4-mysql-plugin/Makefile	Sat May  5 19:51:58 2018	(r469164)
+++ head/databases/qt4-mysql-plugin/Makefile	Sat May  5 20:05:08 2018	(r469165)
@@ -1,7 +1,7 @@
 # Created by: Kay Lehmann <kay_lehmann at web.de>
 # $FreeBSD$
 
-PORTREVISION=	3
+PORTREVISION=	4
 
 COMMENT=	Qt MySQL database plugin
 DB=		mysql

Added: head/databases/qt4-mysql-plugin/files/patch-src_sql_drivers_mysql_qsql__mysql.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/qt4-mysql-plugin/files/patch-src_sql_drivers_mysql_qsql__mysql.cpp	Sat May  5 20:05:08 2018	(r469165)
@@ -0,0 +1,74 @@
+https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-1.html 
+
+Incompatible Change: The my_bool type is no longer used in MySQL 
+source code. Any third-party code that used this type to represent 
+C boolean variables should use the bool or int C type instead.
+
+Note
+The change from my_bool to bool means that the mysql.h header file 
+now requires a C++ or C99 compiler to compile.
+
+(Bug #25597667)
+
+--- src/sql/drivers/mysql/qsql_mysql.cpp.orig	2015-05-07 14:14:48 UTC
++++ src/sql/drivers/mysql/qsql_mysql.cpp
+@@ -74,6 +74,14 @@ Q_DECLARE_METATYPE(MYSQL_STMT*)
+ #  define Q_CLIENT_MULTI_STATEMENTS 0
+ #endif
+ 
++// MYSQL 8.0.1 no longer uses the my_bool type:
++// https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-1.html
++#if MYSQL_VERSION_ID >= 80001
++typedef bool mysql_bool;
++#else
++typedef my_bool mysql_bool;
++#endif
++
+ QT_BEGIN_NAMESPACE
+ 
+ class QMYSQLDriverPrivate
+@@ -194,7 +202,7 @@ class QMYSQLResultPrivate : public QObject (public)
+               myField(0), type(QVariant::Invalid)
+         {}
+         char *outField;
+-        my_bool nullIndicator;
++        mysql_bool nullIndicator;
+         ulong bufLength;
+         MYSQL_FIELD *myField;
+         QVariant::Type type;
+@@ -930,7 +938,7 @@ bool QMYSQLResult::exec()
+     MYSQL_BIND* currBind;
+     QVector<MYSQL_TIME *> timeVector;
+     QVector<QByteArray> stringVector;
+-    QVector<my_bool> nullVector;
++    QVector<mysql_bool> nullVector;
+ 
+     const QVector<QVariant> values = boundValues();
+ 
+@@ -951,7 +959,7 @@ bool QMYSQLResult::exec()
+ 
+             currBind = &d->outBinds[i];
+ 
+-            nullVector[i] = static_cast<my_bool>(val.isNull());
++            nullVector[i] = static_cast<mysql_bool>(val.isNull());
+             currBind->is_null = &nullVector[i];
+             currBind->length = 0;
+             currBind->is_unsigned = 0;
+@@ -1048,7 +1056,7 @@ bool QMYSQLResult::exec()
+     d->rowsAffected = mysql_stmt_affected_rows(d->stmt);
+ 
+     if (isSelect()) {
+-        my_bool update_max_length = true;
++        mysql_bool update_max_length = true;
+ 
+         r = mysql_stmt_bind_result(d->stmt, d->inBinds);
+         if (r != 0) {
+@@ -1245,7 +1253,7 @@ bool QMYSQLDriver::open(const QString& db,
+     const QStringList opts(connOpts.split(QLatin1Char(';'), QString::SkipEmptyParts));
+     QString unixSocket;
+ #if MYSQL_VERSION_ID >= 50000
+-    my_bool reconnect=false;
++    mysql_bool reconnect=false;
+ #endif
+ 
+     // extract the real options from the string

Modified: head/databases/qt5-sqldrivers-mysql/Makefile
==============================================================================
--- head/databases/qt5-sqldrivers-mysql/Makefile	Sat May  5 19:51:58 2018	(r469164)
+++ head/databases/qt5-sqldrivers-mysql/Makefile	Sat May  5 20:05:08 2018	(r469165)
@@ -1,4 +1,5 @@
 # $FreeBSD$
+PORTREVISION=	1
 
 DB=		MYSQL
 DB_DESC=	MySQL

Added: head/databases/qt5-sqldrivers-mysql/files/patch-src_plugins_sqldrivers_mysql_qsql__mysql.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/qt5-sqldrivers-mysql/files/patch-src_plugins_sqldrivers_mysql_qsql__mysql.cpp	Sat May  5 20:05:08 2018	(r469165)
@@ -0,0 +1,74 @@
+https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-1.html
+
+Incompatible Change: The my_bool type is no longer used in MySQL
+source code. Any third-party code that used this type to represent
+C boolean variables should use the bool or int C type instead.
+
+Note
+The change from my_bool to bool means that the mysql.h header file
+now requires a C++ or C99 compiler to compile.
+
+(Bug #25597667)
+
+--- src/plugins/sqldrivers/mysql/qsql_mysql.cpp.orig	2018-04-29 07:25:09 UTC
++++ src/plugins/sqldrivers/mysql/qsql_mysql.cpp
+@@ -74,6 +74,14 @@ Q_DECLARE_METATYPE(MYSQL_STMT*)
+ #  define Q_CLIENT_MULTI_STATEMENTS 0
+ #endif
+
++// MYSQL 8.0.1 no longer uses the my_bool type:
++// https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-1.html
++#if MYSQL_VERSION_ID >= 80001
++typedef bool mysql_bool;
++#else
++typedef my_bool mysql_bool;
++#endif
++
+ QT_BEGIN_NAMESPACE
+
+ class QMYSQLDriverPrivate : public QSqlDriverPrivate
+@@ -232,7 +240,7 @@ class QMYSQLResultPrivate: public QSqlResultPrivate (p
+               myField(0), type(QVariant::Invalid)
+         {}
+         char *outField;
+-        my_bool nullIndicator;
++        mysql_bool nullIndicator;
+         ulong bufLength;
+         MYSQL_FIELD *myField;
+         QVariant::Type type;
+@@ -983,7 +991,7 @@ bool QMYSQLResult::exec()
+     MYSQL_BIND* currBind;
+     QVector<MYSQL_TIME *> timeVector;
+     QVector<QByteArray> stringVector;
+-    QVector<my_bool> nullVector;
++    QVector<mysql_bool> nullVector;
+
+     const QVector<QVariant> values = boundValues();
+
+@@ -1004,7 +1012,7 @@ bool QMYSQLResult::exec()
+
+             currBind = &d->outBinds[i];
+
+-            nullVector[i] = static_cast<my_bool>(val.isNull());
++            nullVector[i] = static_cast<mysql_bool>(val.isNull());
+             currBind->is_null = &nullVector[i];
+             currBind->length = 0;
+             currBind->is_unsigned = 0;
+@@ -1101,7 +1109,7 @@ bool QMYSQLResult::exec()
+     d->rowsAffected = mysql_stmt_affected_rows(d->stmt);
+
+     if (isSelect()) {
+-        my_bool update_max_length = true;
++        mysql_bool update_max_length = true;
+
+         r = mysql_stmt_bind_result(d->stmt, d->inBinds);
+         if (r != 0) {
+@@ -1312,7 +1320,7 @@ bool QMYSQLDriver::open(const QString& db,
+     QString sslCAPath;
+     QString sslCipher;
+ #if MYSQL_VERSION_ID >= 50000
+-    my_bool reconnect=false;
++    mysql_bool reconnect=false;
+     uint connectTimeout = 0;
+     uint readTimeout = 0;
+     uint writeTimeout = 0;


More information about the svn-ports-all mailing list