Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 21 Jan 2016 10:45:01 +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: r406843 - head/comms/wsjtx/files
Message-ID:  <201601211045.u0LAj16w075317@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;
+ 



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