diff options
author | adam <adam@pkgsrc.org> | 2011-02-24 11:05:34 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2011-02-24 11:05:34 +0000 |
commit | 29dc7186a404e16bfbe9492f6e885baa55721331 (patch) | |
tree | 79bf95c5278d26a717d25adc8a50148249fadccc /devel/boost-jam | |
parent | 89469763af0bdf96ba5013df285658a43bd405b0 (diff) | |
download | pkgsrc-29dc7186a404e16bfbe9492f6e885baa55721331.tar.gz |
Changes 1.46.0:
New Libraries
* Icl: Interval Container Library, interval sets and maps and aggregation of
associated values, from Joachim Faulhaber.
Updated Libraries
* Array:
- Added support for cbegin/cend
- Fixed a problem with the Sun compiler
* Asio:
- Fixed a problem on older Linux kernels (where epoll is used without timerfd
support) that prevents timely delivery of deadline_timer handlers, after
the program has been running for some time
* Bind:
- make_adaptable now documented
* Concept Check:
- fixed warnings with self-assignment
* Filesystem:
- Version 3 of the library is now the default.
- IBM vacpp: Workaround for compiler bug affecting iterator_facade
- Verify, clarify, document that <boost/config/user.hpp> can be used to
specify BOOST_FILESYSTEM_VERSIO
- Replaced C-style assert with BOOST_ASSERT.
- Undeprecated unique_path(). Instead, add a note mentioning the workaround
for lack of thread safety and possible change to cwd. unique_path() is just
too convenient to deprecate!
- Cleared several GCC warnings.
- Changed V2 code to use BOOST_THROW_EXCEPTION.
- Windows: Fix status() to report non-symlink reparse point correctly.
- Add symlink_option to recursive_directory_iterator, allowing control over
recursion into directory symlinks. Note that the default is changed to not
recurse into directory symlinks.
- Reference documentation cleanup, including fixing missing and broken links,
and adding missing functions.
- Miscellaneous implementation code cleanup.
* Fusion:
- vector copy constructor now copies sequence members in the same order on different platforms
* Graph:
- Fixed Graphviz output to work on Visual C++ 7.1.
- Replaced assert with BOOST_ASSERT.
- Changed to Boost.Filesystem v3.
More...
Diffstat (limited to 'devel/boost-jam')
-rw-r--r-- | devel/boost-jam/bjam.mk | 6 | ||||
-rw-r--r-- | devel/boost-jam/buildlink3.mk | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/devel/boost-jam/bjam.mk b/devel/boost-jam/bjam.mk index 0d0417e3fc3..c403eff7670 100644 --- a/devel/boost-jam/bjam.mk +++ b/devel/boost-jam/bjam.mk @@ -1,4 +1,4 @@ -# $NetBSD: bjam.mk,v 1.8 2010/10/26 17:55:37 adam Exp $ +# $NetBSD: bjam.mk,v 1.9 2011/02/24 11:05:35 adam Exp $ .include "../../devel/boost-jam/buildlink3.mk" @@ -27,9 +27,9 @@ BJAM_CMD= ${SETENV} ${MAKE_ENV} ${BJAM} ${BJAM_ARGS} UNLIMIT_RESOURCES+= datasize bjam-build: - @${_ULIMIT_CMD} \ + ${_ULIMIT_CMD} \ cd ${WRKSRC} && ${BJAM_CMD} --prefix=${PREFIX} stage bjam-install: - @${_ULIMIT_CMD} \ + ${_ULIMIT_CMD} \ cd ${WRKSRC} && ${BJAM_CMD} --prefix=${DESTDIR}${PREFIX} install diff --git a/devel/boost-jam/buildlink3.mk b/devel/boost-jam/buildlink3.mk index 9766e04f096..bdc3d3d7d91 100644 --- a/devel/boost-jam/buildlink3.mk +++ b/devel/boost-jam/buildlink3.mk @@ -1,11 +1,11 @@ -# $NetBSD: buildlink3.mk,v 1.11 2010/11/26 20:47:00 adam Exp $ +# $NetBSD: buildlink3.mk,v 1.12 2011/02/24 11:05:35 adam Exp $ BUILDLINK_TREE+= boost-jam .if !defined(BOOST_JAM_BUILDLINK3_MK) BOOST_JAM_BUILDLINK3_MK:= -BUILDLINK_API_DEPENDS.boost-jam+= boost-jam-1.45.* +BUILDLINK_API_DEPENDS.boost-jam+= boost-jam-1.46.* BUILDLINK_DEPMETHOD.boost-jam?= build BUILDLINK_PKGSRCDIR.boost-jam?= ../../devel/boost-jam .endif # BOOST_JAM_BUILDLINK3_MK |