$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: sixtrillion_at_[hidden]
Date: 2007-05-29 23:24:26
Author: sixtrillion
Date: 2007-05-29 23:24:26 EDT (Tue, 29 May 2007)
New Revision: 4362
URL: http://svn.boost.org/trac/boost/changeset/4362
Log:
Fixed the Jamfiles to only conditionally include ld.lib. (when using GCC)
Text files modified: 
   sandbox/libs/extension/examples/Jamfile.v2 |     6 +++---                                  
   sandbox/libs/extension/test/Jamfile.v2     |     3 ++-                                     
   2 files changed, 5 insertions(+), 4 deletions(-)
Modified: sandbox/libs/extension/examples/Jamfile.v2
==============================================================================
--- sandbox/libs/extension/examples/Jamfile.v2	(original)
+++ sandbox/libs/extension/examples/Jamfile.v2	2007-05-29 23:24:26 EDT (Tue, 29 May 2007)
@@ -9,7 +9,7 @@
     : requirements
       <include>../../../
       <include>$(BOOST_ROOT)
-      <find-static-library>dl
+      <toolset>gcc:<find-static-library>dl
     :
     ;
 
@@ -35,8 +35,8 @@
 exe RegistryExample : registry/registry_example.cpp ;
 
 install ../bin : 
-  HelloWorld HelloWorldLib Vehicle Boat FlyingCar 
-  CarOfTheFuture MultipleInheritance RegistryLibrary
+  HelloWorld HelloWorldLib Vehicle Boat FlyingCar Car Plane
+  CarOfTheFuture MultipleInheritance RegistryLibrary Computer
   RegistryExample
   :
  # <install-dependencies>on 
Modified: sandbox/libs/extension/test/Jamfile.v2
==============================================================================
--- sandbox/libs/extension/test/Jamfile.v2	(original)
+++ sandbox/libs/extension/test/Jamfile.v2	2007-05-29 23:24:26 EDT (Tue, 29 May 2007)
@@ -8,6 +8,7 @@
       <include>../../../
       <include>$(BOOST_ROOT)
       <define>BOOST_TEST_NO_AUTO_LINK=1
+      <toolset>gcc:<find-static-library>dl
     :
     ;
 
@@ -20,4 +21,4 @@
   [ run counted_factory_test.cpp ]
   [ run registry_test.cpp ]
 : 
-;
\ No newline at end of file
+;