Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r67513 - in sandbox/guild: . pool pool/boost pool/boost/pool pool/libs pool/libs/pool pool/libs/pool/test
From: john_at_[hidden]
Date: 2010-12-31 05:10:39


Author: johnmaddock
Date: 2010-12-31 05:10:24 EST (Fri, 31 Dec 2010)
New Revision: 67513
URL: http://svn.boost.org/trac/boost/changeset/67513

Log:
Initial commit of Boost.Pool copy
Added:
   sandbox/guild/
   sandbox/guild/Jamfile.v2
      - copied unchanged from r67476, /sandbox/Jamfile.v2
   sandbox/guild/Jamroot.jam
      - copied unchanged from r67476, /sandbox/Jamroot.jam
   sandbox/guild/README.txt
      - copied, changed from r67476, /sandbox/README.txt
   sandbox/guild/boost-build.jam
      - copied unchanged from r67476, /sandbox/boost-build.jam
   sandbox/guild/pool/
   sandbox/guild/pool/boost/
   sandbox/guild/pool/boost/pool/
      - copied from r67475, /trunk/boost/pool/
   sandbox/guild/pool/libs/
   sandbox/guild/pool/libs/pool/
      - copied from r67475, /trunk/libs/pool/
Text files modified:
   sandbox/guild/README.txt | 3 ++-
   sandbox/guild/pool/libs/pool/test/Jamfile.v2 | 11 ++++++++++-
   2 files changed, 12 insertions(+), 2 deletions(-)

Copied: sandbox/guild/README.txt (from r67476, /sandbox/README.txt)
==============================================================================
--- /sandbox/README.txt (original)
+++ sandbox/guild/README.txt 2010-12-31 05:10:24 EST (Fri, 31 Dec 2010)
@@ -13,9 +13,10 @@
 
 And then you can refer to a Boost library "foo" as:
 
-$(boost)/libs/foo/build//boost_foo
+$(boost-path)/libs/foo/build//boost_foo
 
 Note that if your project does not specify a Jamroot file, then a default one is provided for you,
 and that this file will automatically add $(BOOST)/ to your include path.
 
 
+

Modified: sandbox/guild/pool/libs/pool/test/Jamfile.v2
==============================================================================
--- /trunk/libs/pool/test/Jamfile.v2 (original)
+++ sandbox/guild/pool/libs/pool/test/Jamfile.v2 2010-12-31 05:10:24 EST (Fri, 31 Dec 2010)
@@ -2,9 +2,15 @@
 #~ Distributed under the Boost Software License, Version 1.0.
 #~ (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
 
+import modules ;
+
+local boost-path = [ modules.peek : BOOST ] ;
+
 project
     : requirements
- <library>/boost/test//boost_test_exec_monitor/<link>static
+ <library>$(boost-path)/libs/test/build//boost_test_exec_monitor/<link>static
+ <include>../../..
+ <define>BOOST_ALL_NO_LIB=1
     ;
 
 import testing ;
@@ -13,3 +19,6 @@
     [ run test_pool_alloc.cpp ]
     [ run pool_msvc_compiler_bug_test.cpp ]
     ;
+
+
+


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk