From owner-svn-ports-all@freebsd.org Mon Apr 2 20:12:16 2018 Return-Path: Delivered-To: svn-ports-all@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 6B927F8253D; Mon, 2 Apr 2018 20:12:16 +0000 (UTC) (envelope-from adridg@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 170EB6FD74; Mon, 2 Apr 2018 20:12:16 +0000 (UTC) (envelope-from adridg@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 11E7C1A5F3; Mon, 2 Apr 2018 20:12:16 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w32KCFeJ071835; Mon, 2 Apr 2018 20:12:15 GMT (envelope-from adridg@FreeBSD.org) Received: (from adridg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w32KCFks071833; Mon, 2 Apr 2018 20:12:15 GMT (envelope-from adridg@FreeBSD.org) Message-Id: <201804022012.w32KCFks071833@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adridg set sender to adridg@FreeBSD.org using -f From: Adriaan de Groot Date: Mon, 2 Apr 2018 20:12:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r466260 - in head/graphics/drawpile: . files X-SVN-Group: ports-head X-SVN-Commit-Author: adridg X-SVN-Commit-Paths: in head/graphics/drawpile: . files X-SVN-Commit-Revision: 466260 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Apr 2018 20:12:16 -0000 Author: adridg Date: Mon Apr 2 20:12:15 2018 New Revision: 466260 URL: https://svnweb.freebsd.org/changeset/ports/466260 Log: Fix graphics/Drawfile ahead of CMake 3.11. The order in which files are placed in mocs_compilation.cpp has changed in CMake 3.11 compared to CMake 3.10. This shows up places where not all of the includes needed for a bit of code, are included -- because by chance, everywhere else they are already included by the time the compiler gets to the offending header. In switching the order around, compiles fail. The error message is in the patch -- just a missing type declaration. Approved by: tcberner (mentor, implicit) Differential Revision: https://reviews.freebsd.org/D14770 Added: head/graphics/drawpile/files/patch-src_desktop_widgets_userlistwidget.h (contents, props changed) Modified: head/graphics/drawpile/Makefile Modified: head/graphics/drawpile/Makefile ============================================================================== --- head/graphics/drawpile/Makefile Mon Apr 2 20:11:58 2018 (r466259) +++ head/graphics/drawpile/Makefile Mon Apr 2 20:12:15 2018 (r466260) @@ -2,6 +2,7 @@ PORTNAME= Drawpile DISTVERSION= 2.0.10 +PORTREVISION= 1 CATEGORIES= graphics python MAINTAINER= yuri@FreeBSD.org Added: head/graphics/drawpile/files/patch-src_desktop_widgets_userlistwidget.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/drawpile/files/patch-src_desktop_widgets_userlistwidget.h Mon Apr 2 20:12:15 2018 (r466260) @@ -0,0 +1,13 @@ +Missing include: + userlistwidget.h:64:30: error: unknown type name 'QItemSelection' + +--- src/desktop/widgets/userlistwidget.h.orig 2018-03-17 15:25:30 UTC ++++ src/desktop/widgets/userlistwidget.h +@@ -23,6 +23,7 @@ + + #include + #include ++#include + + class Ui_UserBox; +