From owner-svn-ports-head@freebsd.org Mon Sep 3 11:30:20 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 423B3FE63C6; Mon, 3 Sep 2018 11:30:20 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EF01F803CC; Mon, 3 Sep 2018 11:30:19 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E55312743C; Mon, 3 Sep 2018 11:30:19 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w83BUJhk083005; Mon, 3 Sep 2018 11:30:19 GMT (envelope-from jhale@FreeBSD.org) Received: (from jhale@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w83BUJMW083004; Mon, 3 Sep 2018 11:30:19 GMT (envelope-from jhale@FreeBSD.org) Message-Id: <201809031130.w83BUJMW083004@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jhale set sender to jhale@FreeBSD.org using -f From: "Jason E. Hale" Date: Mon, 3 Sep 2018 11:30:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r478854 - head/games/solarus-quest-editor/files X-SVN-Group: ports-head X-SVN-Commit-Author: jhale X-SVN-Commit-Paths: head/games/solarus-quest-editor/files X-SVN-Commit-Revision: 478854 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Sep 2018 11:30:20 -0000 Author: jhale Date: Mon Sep 3 11:30:19 2018 New Revision: 478854 URL: https://svnweb.freebsd.org/changeset/ports/478854 Log: Fix build with Qt 5.11 PR: 230884 Obtained from: upstream Added: head/games/solarus-quest-editor/files/patch-qt511 (contents, props changed) Added: head/games/solarus-quest-editor/files/patch-qt511 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/solarus-quest-editor/files/patch-qt511 Mon Sep 3 11:30:19 2018 (r478854) @@ -0,0 +1,36 @@ +Fix build with Qt 5.11 +Fixed upstream: +https://gitlab.com/solarus-games/solarus-quest-editor/commit/8f308463030c18cd4f7c8a6052028fff3b7ca35a +https://gitlab.com/solarus-games/solarus-quest-editor/commit/f285beab62594f73e57190c49848c848487214cf + +--- include/widgets/map_view.h.orig 2017-04-03 11:37:49 UTC ++++ include/widgets/map_view.h +@@ -21,6 +21,8 @@ + #include + #include + ++class QActionGroup; ++ + namespace SolarusEditor { + + class MapModel; +--- src/widgets/map_view.cpp.orig 2017-04-03 11:37:49 UTC ++++ src/widgets/map_view.cpp +@@ -29,6 +29,7 @@ + #include "tileset_model.h" + #include "view_settings.h" + #include ++#include + #include + #include + #include +--- src/widgets/text_editor.cpp.orig 2017-04-03 11:37:49 UTC ++++ src/widgets/text_editor.cpp +@@ -26,6 +26,7 @@ + #include + #include + #include ++#include + #include + + namespace SolarusEditor {