From owner-svn-ports-all@freebsd.org Mon Sep 7 20:38:35 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2F26C9CB1E1; Mon, 7 Sep 2015 20:38:35 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repo.freebsd.org (repo.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 05EE21A5E; Mon, 7 Sep 2015 20:38:35 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t87KcY3I060798; Mon, 7 Sep 2015 20:38:34 GMT (envelope-from hrs@FreeBSD.org) Received: (from hrs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t87KcYLm060795; Mon, 7 Sep 2015 20:38:34 GMT (envelope-from hrs@FreeBSD.org) Message-Id: <201509072038.t87KcYLm060795@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: hrs set sender to hrs@FreeBSD.org using -f From: Hiroki Sato Date: Mon, 7 Sep 2015 20:38:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r396345 - in head/devel/boost-libs: . 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-all@freebsd.org X-Mailman-Version: 2.1.20 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, 07 Sep 2015 20:38:35 -0000 Author: hrs Date: Mon Sep 7 20:38:33 2015 New Revision: 396345 URL: https://svnweb.freebsd.org/changeset/ports/396345 Log: Fix compiler warning. This patch has been already merged into trunk. Obtained from: https://svn.boost.org/trac/boost/ticket/8525 Modified: head/devel/boost-libs/Makefile head/devel/boost-libs/files/patch-boost__archive__iterators__transorm_width.hpp Modified: head/devel/boost-libs/Makefile ============================================================================== --- head/devel/boost-libs/Makefile Mon Sep 7 19:47:00 2015 (r396344) +++ head/devel/boost-libs/Makefile Mon Sep 7 20:38:33 2015 (r396345) @@ -4,7 +4,7 @@ PORTNAME= boost-libs COMMENT= Free portable C++ libraries (without Boost.Python) -PORTREVISION= 5 +PORTREVISION= 6 BUILD_DEPENDS+= bjam:${PORTSDIR}/devel/boost-jam Modified: head/devel/boost-libs/files/patch-boost__archive__iterators__transorm_width.hpp ============================================================================== --- head/devel/boost-libs/files/patch-boost__archive__iterators__transorm_width.hpp Mon Sep 7 19:47:00 2015 (r396344) +++ head/devel/boost-libs/files/patch-boost__archive__iterators__transorm_width.hpp Mon Sep 7 20:38:33 2015 (r396345) @@ -1,5 +1,5 @@ ---- boost/archive/iterators/transform_width.hpp.orig 2013-04-28 18:07:27.000000000 +0200 -+++ boost/archive/iterators/transform_width.hpp 2014-06-09 17:27:54.615330893 +0200 +--- boost/archive/iterators/transform_width.hpp.orig 2013-04-29 01:07:27.000000000 +0900 ++++ boost/archive/iterators/transform_width.hpp 2015-08-30 04:46:06.968463000 +0900 @@ -30,6 +30,8 @@ #include #include @@ -9,3 +9,21 @@ namespace boost { namespace archive { namespace iterators { +@@ -112,6 +114,7 @@ + transform_width(BOOST_PFTO_WRAPPER(T) start) : + super_t(Base(BOOST_MAKE_PFTO_WRAPPER(static_cast< T >(start)))), + m_buffer_out_full(false), ++ m_buffer_in(0), + m_remaining_bits(0), + m_end_of_sequence(false) + {} +@@ -119,8 +122,8 @@ + transform_width(const transform_width & rhs) : + super_t(rhs.base_reference()), + m_buffer_out_full(rhs.m_buffer_out_full), +- m_remaining_bits(rhs.m_remaining_bits), + m_buffer_in(rhs.m_buffer_in), ++ m_remaining_bits(rhs.m_remaining_bits), + m_end_of_sequence(false) + {} + };