Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 21 Jan 2016 11:02:04 +0000 (UTC)
From:      Raphael Kubo da Costa <rakuco@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r406847 - head/databases/sqlitestudio/files
Message-ID:  <201601211102.u0LB24Y9081536@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rakuco
Date: Thu Jan 21 11:02:03 2016
New Revision: 406847
URL: https://svnweb.freebsd.org/changeset/ports/406847

Log:
  Add a few patches to fix the build with the upcoming Qt 5.5.1.
  
  Several places were using QDataStream without including the proper headers.
  These fixes are not enough: the ports needs to explicitly depend on more Qt
  components, but we are still working on that and may end up creating a new,
  smaller port out of devel/qt5-designer.

Added:
  head/databases/sqlitestudio/files/
  head/databases/sqlitestudio/files/patch-coreSQLiteStudio_common_utils.cpp   (contents, props changed)
  head/databases/sqlitestudio/files/patch-coreSQLiteStudio_db_db.h   (contents, props changed)
  head/databases/sqlitestudio/files/patch-sqlitestudiocli_cli__config.h   (contents, props changed)

Added: head/databases/sqlitestudio/files/patch-coreSQLiteStudio_common_utils.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/sqlitestudio/files/patch-coreSQLiteStudio_common_utils.cpp	Thu Jan 21 11:02:03 2016	(r406847)
@@ -0,0 +1,10 @@
+--- coreSQLiteStudio/common/utils.cpp.orig	2016-01-21 10:31:10 UTC
++++ coreSQLiteStudio/common/utils.cpp
+@@ -2,6 +2,7 @@
+ #include "common/global.h"
+ #include "dbobjecttype.h"
+ #include "rsa/RSA.h"
++#include <QDataStream>
+ #include <QTextCodec>
+ #include <QString>
+ #include <QSet>

Added: head/databases/sqlitestudio/files/patch-coreSQLiteStudio_db_db.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/sqlitestudio/files/patch-coreSQLiteStudio_db_db.h	Thu Jan 21 11:02:03 2016	(r406847)
@@ -0,0 +1,10 @@
+--- coreSQLiteStudio/db/db.h.orig	2016-01-21 10:33:48 UTC
++++ coreSQLiteStudio/db/db.h
+@@ -17,6 +17,7 @@
+ #include <QRunnable>
+ #include <QStringList>
+ #include <QSet>
++#include <QDataStream>
+ 
+ /** @file */
+ 

Added: head/databases/sqlitestudio/files/patch-sqlitestudiocli_cli__config.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/sqlitestudio/files/patch-sqlitestudiocli_cli__config.h	Thu Jan 21 11:02:03 2016	(r406847)
@@ -0,0 +1,10 @@
+--- sqlitestudiocli/cli_config.h.orig	2016-01-21 10:44:03 UTC
++++ sqlitestudiocli/cli_config.h
+@@ -2,6 +2,7 @@
+ #define CLI_CONFIG_H
+ 
+ #include "config_builder.h"
++#include <QDataStream>
+ 
+ namespace CliResultsDisplay
+ {



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201601211102.u0LB24Y9081536>