From owner-svn-ports-head@FreeBSD.ORG Fri Sep 20 07:26:52 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 9657164B; Fri, 20 Sep 2013 07:26:52 +0000 (UTC) (envelope-from martymac@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6AD1223B1; Fri, 20 Sep 2013 07:26:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8K7Qq98061691; Fri, 20 Sep 2013 07:26:52 GMT (envelope-from martymac@svn.freebsd.org) Received: (from martymac@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8K7Qp16061688; Fri, 20 Sep 2013 07:26:51 GMT (envelope-from martymac@svn.freebsd.org) Message-Id: <201309200726.r8K7Qp16061688@svn.freebsd.org> From: Ganael LAPLANCHE Date: Fri, 20 Sep 2013 07:26:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r327663 - in head/deskutils/notecase: . files X-SVN-Group: ports-head 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.14 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: Fri, 20 Sep 2013 07:26:52 -0000 Author: martymac Date: Fri Sep 20 07:26:51 2013 New Revision: 327663 URL: http://svnweb.freebsd.org/changeset/ports/327663 Log: Add missing #includes to fix build on -CURRENT PR: ports/182094 Submitted by: Walter Hurry Added: head/deskutils/notecase/files/patch-src-gui-GuiLanguage.cpp (contents, props changed) head/deskutils/notecase/files/patch-src-lib-IniFile.cpp (contents, props changed) Modified: head/deskutils/notecase/Makefile Modified: head/deskutils/notecase/Makefile ============================================================================== --- head/deskutils/notecase/Makefile Fri Sep 20 07:07:48 2013 (r327662) +++ head/deskutils/notecase/Makefile Fri Sep 20 07:26:51 2013 (r327663) @@ -3,7 +3,7 @@ PORTNAME= notecase PORTVERSION= 1.9.8 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= deskutils textproc MASTER_SITES= SF DISTNAME= ${PORTNAME}-${PORTVERSION}_src Added: head/deskutils/notecase/files/patch-src-gui-GuiLanguage.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/notecase/files/patch-src-gui-GuiLanguage.cpp Fri Sep 20 07:26:51 2013 (r327663) @@ -0,0 +1,10 @@ +--- src/gui/GuiLanguage.cpp.orig 2013-09-18 16:02:26.000000000 +0200 ++++ src/gui/GuiLanguage.cpp 2013-09-18 16:03:53.000000000 +0200 +@@ -17,6 +17,7 @@ + #ifdef ENABLE_NLS + #include + #endif ++#include + #include + + #include "../lib/EnumDirectory.h" Added: head/deskutils/notecase/files/patch-src-lib-IniFile.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/notecase/files/patch-src-lib-IniFile.cpp Fri Sep 20 07:26:51 2013 (r327663) @@ -0,0 +1,10 @@ +--- src/lib/IniFile.cpp.orig 2013-09-18 16:05:10.000000000 +0200 ++++ src/lib/IniFile.cpp 2013-09-18 16:05:50.000000000 +0200 +@@ -8,6 +8,7 @@ + + #include "IniFile.h" + #include //find() function ++#include + #include + #include "File64.h" + #include "FilePath.h"