diff options
author | adam <adam@pkgsrc.org> | 2010-11-26 20:46:59 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2010-11-26 20:46:59 +0000 |
commit | 6e1fc4a01183af9f440317ffeac35b41792bde95 (patch) | |
tree | 329399b4cd596a201e5b04be6f6c9cfabfb34a77 /devel/boost-build/Makefile | |
parent | b4a558490d59d618f2e8afb5c718cdd8a0b3fd5a (diff) | |
download | pkgsrc-6e1fc4a01183af9f440317ffeac35b41792bde95.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-build/Makefile')
-rw-r--r-- | devel/boost-build/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/boost-build/Makefile b/devel/boost-build/Makefile index 4c682256eef..bdc666c40fb 100644 --- a/devel/boost-build/Makefile +++ b/devel/boost-build/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2010/08/26 17:40:58 adam Exp $ +# $NetBSD: Makefile,v 1.12 2010/11/26 20:46:59 adam Exp $ BOOST_PACKAGE= build BOOST_COMMENT= (Boost.Build framework) @@ -41,7 +41,7 @@ do-build: do-install: ${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/boost-build - cd ${WRKSRC}/tools/build/v2 && pax -rw -pp -pm \ + cd ${WRKSRC}/tools/build/v2 && pax -r -w -p pm -s ':^./engine.*$$::' \ -s ':^.*\.orig$$::' . ${DESTDIR}${PREFIX}/share/boost-build ${INSTALL_DATA_DIR} ${DESTDIR}${EGDIR} ${INSTALL_DATA} ${WRKDIR}/site-config.jam ${DESTDIR}${EGDIR} |