967857908e
New Libraries * Chrono: Useful time utilities * Geometry: Geometry Library * Phoenix: Define small unnamed function objects at the actual call site, and more * Ratio: Compile time rational arithmetic More: http://www.boost.org/users/history/version_1_47_0.html
23 lines
800 B
Text
23 lines
800 B
Text
$NetBSD: patch-aa,v 1.9 2011/10/11 10:02:08 adam Exp $
|
|
|
|
--- boostcpp.jam.orig 2011-06-06 20:39:27.000000000 +0000
|
|
+++ boostcpp.jam
|
|
@@ -276,6 +276,7 @@ rule declare_install_and_stage_proper_ta
|
|
: <location>$(stage-locate)/lib
|
|
<install-dependencies>on <install-type>LIB
|
|
<install-no-version-symlinks>on
|
|
+ <dll-path>@PREFIX@/lib
|
|
;
|
|
$(p).mark-target-as-explicit stage-proper ;
|
|
|
|
@@ -529,6 +530,10 @@ rule libraries-to-install ( existing-lib
|
|
ECHO "error: both --with-<library> and --without-<library> specified" ;
|
|
EXIT ;
|
|
}
|
|
+ if $(without-parameter) && $(without-parameter) = "*"
|
|
+ {
|
|
+ without-parameter = $(existing-libraries) ;
|
|
+ }
|
|
|
|
local wrong = [ set.difference $(with-parameter) : $(existing-libraries) ] ;
|
|
if $(wrong)
|