svn commit: r406843 - head/comms/wsjtx/files

Raphael Kubo da Costa rakuco at FreeBSD.org
Thu Jan 21 10:45:02 UTC 2016


Author: rakuco
Date: Thu Jan 21 10:45:01 2016
New Revision: 406843
URL: https://svnweb.freebsd.org/changeset/ports/406843

Log:
  Add patch to fix the build with the upcoming Qt 5.5.1.
  
    ./WFPalette.hpp:53:1: error: unknown type name 'Q_DECLARE_METATYPE'
    Q_DECLARE_METATYPE (WFPalette::Colours);

Added:
  head/comms/wsjtx/files/patch-WFPalette.hpp   (contents, props changed)

Added: head/comms/wsjtx/files/patch-WFPalette.hpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/comms/wsjtx/files/patch-WFPalette.hpp	Thu Jan 21 10:45:01 2016	(r406843)
@@ -0,0 +1,14 @@
+Fix build with Qt >= 5.5:
+
+./WFPalette.hpp:53:1: error: unknown type name 'Q_DECLARE_METATYPE'
+Q_DECLARE_METATYPE (WFPalette::Colours);
+--- WFPalette.hpp.orig	2016-01-21 09:38:31 UTC
++++ WFPalette.hpp
+@@ -4,6 +4,7 @@
+ #include <QList>
+ #include <QVector>
+ #include <QColor>
++#include <QMetaType>
+ 
+ class QString;
+ 


More information about the svn-ports-head mailing list