diff options
author | adam <adam> | 2010-11-26 20:46:59 +0000 |
---|---|---|
committer | adam <adam> | 2010-11-26 20:46:59 +0000 |
commit | c838d7eb9b0cf5e159bdbe9cf82e0866c2737513 (patch) | |
tree | 329399b4cd596a201e5b04be6f6c9cfabfb34a77 /devel/boost-jam | |
parent | 070201d508b7c9ff6db4cb18d54b998a41328195 (diff) | |
download | pkgsrc-c838d7eb9b0cf5e159bdbe9cf82e0866c2737513.tar.gz |
Changes 1.45.0:
* Fixed a problem on kqueue-based platforms where a deadline_timer
may never fire if the io_service is running in a background thread
* Fixed a const-correctness issue that prevented valid uses of
has_service<> from compiling
* Fixed MinGW cross-compilation
* Removed dependency on deprecated Boost.System functions
* Ensured close()/closesocket() failures are correctly propagated
* Added a check for errors returned by
InitializeCriticalSectionAndSpinCount
* Added support for hardware flow control on QNX
* Always use pselect() on HP-UX, if it is available.
* Ensured handler arguments are passed as lvalues
* Fixed Windows build when thread support is disabled
* Fixed a Windows-specific problem where deadline_timer objects with
expiry times set more than 5 minutes in the future may never expire
* Fixed the resolver backend on BSD platforms so that an empty service
name resolves to port number 0, as per the documentation
* Fixed read operations so that they do not accept buffer sequences of
type const_buffers_1
* Redefined Protocol and id to avoid clashing with Objective-C++ keywords
* Fixed a vector reallocation performance issue that can occur when
there are many active deadline_timer objects
* Fixed the kqueue backend so that it compiles on NetBSD
* Fixed the socket io_control() implementation on 64-bit Mac OS X and
BSD platforms
* Fixed a Windows-specific problem where failures from accept() are
incorrectly treated as successes
* Deprecated the separate compilation header <boost/asio/impl/src.cpp>
in favour of <boost/asio/impl/src.hpp>
Diffstat (limited to 'devel/boost-jam')
-rw-r--r-- | devel/boost-jam/Makefile | 10 | ||||
-rw-r--r-- | devel/boost-jam/buildlink3.mk | 4 |
2 files changed, 7 insertions, 7 deletions
diff --git a/devel/boost-jam/Makefile b/devel/boost-jam/Makefile index c3c10e02e6f..048ec88af5a 100644 --- a/devel/boost-jam/Makefile +++ b/devel/boost-jam/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2009/10/14 06:40:08 adam Exp $ +# $NetBSD: Makefile,v 1.5 2010/11/26 20:47:00 adam Exp $ PKG_DESTDIR_SUPPORT= user-destdir @@ -21,11 +21,11 @@ SUBST_SED.bb= -e 's,/usr/share/boost-build,${PREFIX}/share/boost-build,g' INSTALLATION_DIRS= bin do-build: - cd ${WRKSRC}/tools/jam/src && \ - ${SETENV} ${MAKE_ENV} ${SH} ./build.sh ${BOOST_TOOLSET} + cd ${WRKSRC}/tools/build/v2/engine/src && \ + ${SETENV} ${MAKE_ENV} ${SH} ./build.sh ${BOOST_TOOLSET} do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/tools/jam/src/bin.*/bjam \ - ${DESTDIR}${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/tools/build/v2/engine/src/bin.*/bjam \ + ${DESTDIR}${PREFIX}/bin .include "../../mk/bsd.pkg.mk" diff --git a/devel/boost-jam/buildlink3.mk b/devel/boost-jam/buildlink3.mk index 052332cfc4b..9766e04f096 100644 --- a/devel/boost-jam/buildlink3.mk +++ b/devel/boost-jam/buildlink3.mk @@ -1,11 +1,11 @@ -# $NetBSD: buildlink3.mk,v 1.10 2010/08/26 17:40:58 adam Exp $ +# $NetBSD: buildlink3.mk,v 1.11 2010/11/26 20:47:00 adam Exp $ BUILDLINK_TREE+= boost-jam .if !defined(BOOST_JAM_BUILDLINK3_MK) BOOST_JAM_BUILDLINK3_MK:= -BUILDLINK_API_DEPENDS.boost-jam+= boost-jam-1.44.* +BUILDLINK_API_DEPENDS.boost-jam+= boost-jam-1.45.* BUILDLINK_DEPMETHOD.boost-jam?= build BUILDLINK_PKGSRCDIR.boost-jam?= ../../devel/boost-jam .endif # BOOST_JAM_BUILDLINK3_MK |