From owner-svn-ports-head@FreeBSD.ORG Sun Mar 22 16:43:57 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DDFE5929; Sun, 22 Mar 2015 16:43:57 +0000 (UTC) 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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C96C767B; Sun, 22 Mar 2015 16:43:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2MGhvxK090655; Sun, 22 Mar 2015 16:43:57 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2MGhvcu090654; Sun, 22 Mar 2015 16:43:57 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201503221643.t2MGhvcu090654@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 22 Mar 2015 16:43:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r381936 - head/editors/libreoffice/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.18-1 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: Sun, 22 Mar 2015 16:43:58 -0000 Author: marino Date: Sun Mar 22 16:43:56 2015 New Revision: 381936 URL: https://svnweb.freebsd.org/changeset/ports/381936 QAT: https://qat.redports.org/buildarchive/r381936/ Log: editors/libreoffice: Fix build on gcc-5 PR: 197947 Submitted by: marino Approved by: maintainer timeout Added: head/editors/libreoffice/files/patch-include_unotools_streamwrap.hxx (contents, props changed) Added: head/editors/libreoffice/files/patch-include_unotools_streamwrap.hxx ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/libreoffice/files/patch-include_unotools_streamwrap.hxx Sun Mar 22 16:43:56 2015 (r381936) @@ -0,0 +1,17 @@ +--- include/unotools/streamwrap.hxx.orig 2014-12-11 21:00:24 UTC ++++ include/unotools/streamwrap.hxx +@@ -125,12 +125,12 @@ typedef ::cppu::ImplHelper1 < ::com::s + /** helper class for wrapping an SvStream into an com.sun.star.io::XOutputStream + which is seekable (i.e. supports the com.sun.star.io::XSeekable interface). + */ +-class OSeekableOutputStreamWrapper ++class UNOTOOLS_DLLPUBLIC OSeekableOutputStreamWrapper + :public OOutputStreamWrapper + ,public OSeekableOutputStreamWrapper_Base + { + public: +- UNOTOOLS_DLLPUBLIC OSeekableOutputStreamWrapper(SvStream& _rStream); ++ OSeekableOutputStreamWrapper(SvStream& _rStream); + + private: + virtual ~OSeekableOutputStreamWrapper();