Index: head/devel/boost-libs/Makefile =================================================================== --- head/devel/boost-libs/Makefile (revision 474978) +++ head/devel/boost-libs/Makefile (revision 474979) @@ -1,60 +1,60 @@ # Created by: Alexander Churanov # $FreeBSD$ PORTNAME= boost-libs -PORTREVISION= 2 +PORTREVISION= 3 COMMENT= Free portable C++ libraries (without Boost.Python) BROKEN_sparc64= https://github.com/boostorg/context/commit/f2ef6326b6ed BUILD_DEPENDS+= bjam:devel/boost-jam # libs/config/test/boost_no_cxx11_thread_local.ipp fails (see base r303795) PLIST_SUB+= FIBER="${"${OPSYS}"=="FreeBSD" && ${OSREL:R} < 11:?@comment :}" OPTIONS_DEFINE= DEBUG OPTIMIZED_CFLAGS OPTIONS_MULTI= LOCALE OPTIONS_MULTI_LOCALE= ICONV ICU OPTIONS_DEFAULT= ICONV ICU ICONV_DESC= Boost.Locale with iconv encoding support ICU_DESC= Boost.Regex/Locale with ICU unicode support ICONV_USES= iconv ICONV_MAKE_ARGS= -sICONV_PATH=${ICONV_PREFIX} ICONV_MAKE_ARGS_OFF= boost.locale.iconv=off ICU_LIB_DEPENDS= libicuuc.so:devel/icu ICU_MAKE_ARGS= -sICU_PATH=${LOCALBASE} ICU_MAKE_ARGS_OFF= boost.locale.icu=off .include "${.CURDIR}/../boost-all/common.mk" .include "${.CURDIR}/../boost-all/compiled.mk" MAKE_ARGS+= --without-python MAKE_ARGS+= ${MAKE_ARGS_${CHOSEN_COMPILER_TYPE}} MAKE_ARGS_gcc= xdll-path=${_GCC_RUNTIME} ALL_TARGET= stage do-install: @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} \ ${MAKE_ARGS:NDESTDIR=*:S,^--prefix=,&${STAGEDIR},} ${INSTALL_TARGET} # 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-libs_filesystem_src_operations.cpp =================================================================== --- head/devel/boost-libs/files/patch-libs_filesystem_src_operations.cpp (nonexistent) +++ head/devel/boost-libs/files/patch-libs_filesystem_src_operations.cpp (revision 474979) @@ -0,0 +1,29 @@ +Fixes a null pointer dereference, patch origin: +https://github.com/boostorg/filesystem/pull/71 +--- libs/filesystem/src/operations.cpp.orig 2018-04-11 13:49:02 UTC ++++ libs/filesystem/src/operations.cpp +@@ -890,20 +890,20 @@ namespace detail + BOOST_FILESYSTEM_DECL + void copy(const path& from, const path& to, system::error_code* ec) + { +- file_status s(symlink_status(from, *ec)); ++ file_status s(detail::symlink_status(from, ec)); + if (ec != 0 && *ec) return; + + if(is_symlink(s)) + { +- copy_symlink(from, to, *ec); ++ detail::copy_symlink(from, to, ec); + } + else if(is_directory(s)) + { +- copy_directory(from, to, *ec); ++ detail::copy_directory(from, to, ec); + } + else if(is_regular_file(s)) + { +- copy_file(from, to, fs::copy_option::fail_if_exists, *ec); ++ detail::copy_file(from, to, detail::fail_if_exists, ec); + } + else + { Property changes on: head/devel/boost-libs/files/patch-libs_filesystem_src_operations.cpp ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property