From owner-svn-ports-all@freebsd.org Fri Aug 31 04:27:44 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 0AE03F72D2B; Fri, 31 Aug 2018 04:27:44 +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 A8E9E81163; Fri, 31 Aug 2018 04:27:43 +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 7C51D165CA; Fri, 31 Aug 2018 04:27:43 +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 w7V4Rh17015829; Fri, 31 Aug 2018 04:27:43 GMT (envelope-from jhale@FreeBSD.org) Received: (from jhale@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7V4RhxR015828; Fri, 31 Aug 2018 04:27:43 GMT (envelope-from jhale@FreeBSD.org) Message-Id: <201808310427.w7V4RhxR015828@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jhale set sender to jhale@FreeBSD.org using -f From: "Jason E. Hale" Date: Fri, 31 Aug 2018 04:27:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r478516 - head/security/keepassx-devel/files X-SVN-Group: ports-head X-SVN-Commit-Author: jhale X-SVN-Commit-Paths: head/security/keepassx-devel/files X-SVN-Commit-Revision: 478516 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.27 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: Fri, 31 Aug 2018 04:27:44 -0000 Author: jhale Date: Fri Aug 31 04:27:42 2018 New Revision: 478516 URL: https://svnweb.freebsd.org/changeset/ports/478516 Log: Fix build with Qt 5.11 PR: 230884 Obtained from: upstream PR (https://github.com/keepassx/keepassx/pull/214) Added: head/security/keepassx-devel/files/patch-PR214 (contents, props changed) Added: head/security/keepassx-devel/files/patch-PR214 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/keepassx-devel/files/patch-PR214 Fri Aug 31 04:27:42 2018 (r478516) @@ -0,0 +1,29 @@ +Obtained from: https://github.com/keepassx/keepassx/pull/214 + +From 40220fd61c4094ae16d8a4d86df2b5d84c16e6e8 Mon Sep 17 00:00:00 2001 +From: Anuraag Sridhar +Date: Sun, 12 Aug 2018 14:23:33 +1000 +Subject: [PATCH] Fix build issues with Qt5.11 on OS X. + +Minor forward declaration issues. + +--- src/gui/entry/EditEntryWidget.h.orig ++++ src/gui/entry/EditEntryWidget.h +@@ -18,6 +18,7 @@ + #ifndef KEEPASSX_EDITENTRYWIDGET_H + #define KEEPASSX_EDITENTRYWIDGET_H + ++#include + #include + #include + +--- src/gui/entry/EntryView.h.orig ++++ src/gui/entry/EntryView.h +@@ -18,6 +18,7 @@ + #ifndef KEEPASSX_ENTRYVIEW_H + #define KEEPASSX_ENTRYVIEW_H + ++#include + #include + + #include "gui/entry/EntryModel.h"