Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r74580 - in sandbox/big_number/libs/math: . config doc test
From: john_at_[hidden]
Date: 2011-09-26 13:01:24


Author: johnmaddock
Date: 2011-09-26 13:01:23 EDT (Mon, 26 Sep 2011)
New Revision: 74580
URL: http://svn.boost.org/trac/boost/changeset/74580

Log:
Giant file and directory rename: changed directory name from math to multiprecision and updated code to match.
Removed:
   sandbox/big_number/libs/math/Jamroot.jam
   sandbox/big_number/libs/math/boost-build.jam
   sandbox/big_number/libs/math/config/
   sandbox/big_number/libs/math/doc/
   sandbox/big_number/libs/math/test/

Deleted: sandbox/big_number/libs/math/Jamroot.jam
==============================================================================
--- sandbox/big_number/libs/math/Jamroot.jam 2011-09-26 13:01:23 EDT (Mon, 26 Sep 2011)
+++ (empty file)
@@ -1,9 +0,0 @@
-
-import modules ;
-
-local boost = [ modules.peek : BOOST ] ;
-
-project sandbox : requirements <include>$(boost) ;
-
-# This seems to prevent some Boost.Build errors that otherwise occur :-(
-use-project /boost : $(boost) ;

Deleted: sandbox/big_number/libs/math/boost-build.jam
==============================================================================
--- sandbox/big_number/libs/math/boost-build.jam 2011-09-26 13:01:23 EDT (Mon, 26 Sep 2011)
+++ (empty file)
@@ -1,72 +0,0 @@
-# Copyright Rene Rivera 2007.
-#
-# 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)
-
-# For instructions see Jamfile.v2, or "bjam --help".
-
-local rule if-has-file ( file + : dir * )
-{
- local result ;
- if $(dir)
- {
- result = [ GLOB $(dir) : $(file) ] ;
- }
- return $(result[1]:P) ;
-}
-
-#~ Attempts to find the Boost source tree...
-
-local boost-src = [ if-has-file LICENSE_1_0.txt :
- [ MATCH --boost=(.*) : $(ARGV) ]
- $(BOOST)
- $(BOOST_ROOT)
- $(.boost-build-file:D)/../boost
- $(.boost-build-file:D)/../Trunk
- ] ;
-
-# error handling:
-if ! $(boost-src)
-{
- ECHO Unable to find the Boost source tree in the locations searched. ;
- ECHO Try setting the environment variable BOOST to point to your ;
- ECHO Boost tree, or else invoke bjam with the --boost=path option. ;
- ECHO The Boost include path will not be automatically set. ;
- ECHO The paths searched were [ MATCH --boost=(.*) : $(ARGV) ] $(BOOST) $(.boost-build-file:D)/../boost $(.boost-build-file:D)/../Trunk ;
- ECHO But the file LICENSE_1_0.txt was not found in any of them ;
-}
-
-#~ Attempts to find the Boost.Build files...
-
-local boost-build-src = [ if-has-file bootstrap.jam :
- [ MATCH --boost-build=(.*) : $(ARGV) ]
- $(BOOST_BUILD_PATH)
- $(BOOST_BUILD)
- $(boost-src)/tools/build/v2
- ] ;
-
-# error handling:
-if ! $(boost-build-src)
-{
- ECHO Unable to find the Boost.Build source tree in the locations searched. ;
- ECHO Try setting the environment variable BOOST_BUILD to point to your ;
- ECHO Boost.Build tree, or else invoke bjam with the --boost-build=path option. ;
- ECHO The paths searched were [ MATCH --boost-build=(.*) : $(ARGV) ] $(BOOST_BUILD_PATH) $(BOOST_BUILD) $(boost-src)/tools/build/v2 ;
- ECHO But bootstrap.jam was not found in any of these ;
- ECHO More failures will very likely follow... ;
-}
-
-#~ Set some common vars to refer to the Boost sources...
-
-BOOST ?= $(boost-src) ;
-BOOST_ROOT ?= $(boost-src) ;
-
-#~ And load up Boost.Build...
-
-boost-build $(boost-build-src) ;
-
-
-
-
-


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