diff options
author | adam <adam> | 2012-07-02 07:02:25 +0000 |
---|---|---|
committer | adam <adam> | 2012-07-02 07:02:25 +0000 |
commit | 421ade24e626fa4c5f8e21a147bd012973f5983d (patch) | |
tree | 00e0e7ad08bdeaf2d58e5f11da35abbc900e60b5 /devel/boost-libs/Makefile | |
parent | da150b72de3473af20c465067bfffc0120c0e56d (diff) | |
download | pkgsrc-421ade24e626fa4c5f8e21a147bd012973f5983d.tar.gz |
Changes 1.50:0
New Libraries
* Algorithm: A collection of useful generic algorithms, from Marshall Clow.
This includes several different searching algorithms, as well as most of the
new algorithms from the C++11 standard library
* Functional/OverloadedFunction: Overload different functions into a single
function object, from Lorenzo Caminiti.
* LocalFunction: Program functions locally, within other functions, directly
within the scope where they are needed, from Lorenzo Caminiti.
* Utility/IdentityType: Wrap types within round parenthesis so they can always
be passed as macro parameters, from Lorenzo Caminiti.
More http://www.boost.org/users/history/version_1_50_0.html
Diffstat (limited to 'devel/boost-libs/Makefile')
-rw-r--r-- | devel/boost-libs/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/devel/boost-libs/Makefile b/devel/boost-libs/Makefile index f89090fa371..e2927d8ebf2 100644 --- a/devel/boost-libs/Makefile +++ b/devel/boost-libs/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.21 2012/06/01 10:26:09 jdc Exp $ +# $NetBSD: Makefile,v 1.22 2012/07/02 07:02:25 adam Exp $ BOOST_PACKAGE= libs BOOST_COMMENT= (binary libraries) @@ -9,6 +9,8 @@ PKG_DESTDIR_SUPPORT= user-destdir .include "../../meta-pkgs/boost/Makefile.common" +INSTALLATION_DIRS+= lib + BJAM_ARGS+= --without-python .if !empty(OPSYS:MNetBSD) && !empty(MACHINE_ARCH:Msparc64) BJAM_ARGS+= pch=off @@ -18,7 +20,7 @@ BJAM_ARGS+= pch=off # Hack: gcc on sparc64 catches an illegal instruction compiling graphml.o .if ${MACHINE_ARCH} == "sparc64" && !empty(CC_VERSION:Mgcc*) -BUILDLINK_TRANSFORM+= rename:-O3:-O1 +BUILDLINK_TRANSFORM+= rename:-O3:-O1 .endif do-build: bjam-build |