Index: head/devel/boost-libs/Makefile =================================================================== --- head/devel/boost-libs/Makefile (revision 396344) +++ head/devel/boost-libs/Makefile (revision 396345) @@ -1,66 +1,66 @@ # Created by: Alexander Churanov # $FreeBSD$ PORTNAME= boost-libs COMMENT= Free portable C++ libraries (without Boost.Python) -PORTREVISION= 5 +PORTREVISION= 6 BUILD_DEPENDS+= bjam:${PORTSDIR}/devel/boost-jam OPTIONS_DEFINE= VERBOSE_BUILD DEBUG ICU OPTIMIZED_CFLAGS OPTIONS_DEFAULT= ICU VERBOSE_BUILD_DESC= Show compiler messages ICU_DESC= Boost.Regex with ICU unicode support .include "${.CURDIR}/../boost-all/common.mk" .include "${.CURDIR}/../boost-all/compiled.mk" BJAM_ARGS+= --without-python .if defined(X_BUILD_FOR) BJAM_ARGS+= --without-context --without-coroutine \ --without-locale --without-log PLIST_SUB+= COROUTINE="@comment " CONTEXT="@comment " \ LOCALE="@comment " LOG="@comment " .else PLIST_SUB+= COROUTINE="" CONTEXT="" LOCALE="" LOG="" .endif .if ${PORT_OPTIONS:MICU} LIB_DEPENDS+= libicuuc.so:${PORTSDIR}/devel/icu BJAM_ARGS+= -sICU_PATH=${LOCALBASE} .else USES+= iconv BJAM_ARGS+= -sICONV_PATH=${LOCALBASE} .endif do-build: @cd ${WRKSRC} && \ ${SETENV} ${MAKE_ENV} ${BJAM} ${BJAM_ARGS} stage #Compatibility layer to avoid rebuilding everything this time @cd ${WRKSRC}/stage/lib && \ ( for l in lib*.so.*; do ${LN} -sf $${l} $${l%.${PORTVERSION}}.5; done ) do-install: @cd ${WRKSRC} && \ ${SETENV} ${MAKE_ENV} ${BJAM} --prefix=${STAGEDIR}${PREFIX} ${BJAM_ARGS} install # For some reasons BJAM forget about the links @cd ${WRKSRC}/stage/ && ${FIND} lib -type l | ${PAX} -rw -p p ${STAGEDIR}${PREFIX} # display pkg-message post-install: @${TOUCH} ${PKGMESSAGE} @${CAT} ${PKG_MESSAGE_FILE_THREADS} >> ${PKGMESSAGE} @${ECHO_CMD} >> ${PKGMESSAGE} @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/*.so @${REINPLACE_CMD} \ -e "s|%%LOCALBASE%%|${LOCALBASE}|g" \ -e "s|%%PYTHON_INCLUDEDIR%%|${PYTHON_INCLUDEDIR}|g" \ -e "s|%%PYTHON_LIBDIR%%|${PYTHON_LIBDIR}|g" \ -e "s|%%PYTHON_VERSION%%|${PYTHON_VERSION}|g" ${PKGMESSAGE} .include Index: head/devel/boost-libs/files/patch-boost__archive__iterators__transorm_width.hpp =================================================================== --- head/devel/boost-libs/files/patch-boost__archive__iterators__transorm_width.hpp (revision 396344) +++ head/devel/boost-libs/files/patch-boost__archive__iterators__transorm_width.hpp (revision 396345) @@ -1,11 +1,29 @@ ---- 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 +#include // std::min + 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) + {} + };