Boost logo

Boost-Commit :

From: bdawes_at_[hidden]
Date: 2007-09-05 05:25:15


Author: bemandawes
Date: 2007-09-05 05:25:12 EDT (Wed, 05 Sep 2007)
New Revision: 39129
URL: http://svn.boost.org/trac/boost/changeset/39129

Log:
Remove V1 Jamfiles
Removed:
   branches/libs/system/system/build/Jamfile
   branches/libs/system/system/test/Jamfile

Deleted: branches/libs/system/system/build/Jamfile
==============================================================================
--- branches/libs/system/system/build/Jamfile 2007-09-05 05:25:12 EDT (Wed, 05 Sep 2007)
+++ (empty file)
@@ -1,56 +0,0 @@
-# Boost System Library Build Jamfile
-
-# (C) Copyright Beman Dawes 2002, 2006
-
-# Distributed under the Boost Software License, Version 1.0.
-# (See accompanying file LICENSE_1_0.txt or www.boost.org/LICENSE_1_0.txt)
-
-# See library home page at http://www.boost.org/libs/system
-
-subproject libs/system/build ;
-
-SOURCES = error_code ;
-
-lib boost_system
- : ../src/$(SOURCES).cpp
- : # build requirements
- <define>BOOST_SYSTEM_STATIC_LINK
- <sysinclude>$(BOOST_AUX_ROOT) <sysinclude>$(BOOST_ROOT)
- # common-variant-tag ensures that the library will
- # be named according to the rules used by the install
- # and auto-link features:
- common-variant-tag
- : debug release # build variants
- ;
-
-dll boost_system
- : ../src/$(SOURCES).cpp
- : # build requirements
- <define>BOOST_SYSTEM_DYN_LINK=1 # tell source we're building dll's
- <runtime-link>dynamic # build only for dynamic runtimes
- <sysinclude>$(BOOST_AUX_ROOT) <sysinclude>$(BOOST_ROOT)
- # common-variant-tag ensures that the library will
- # be named according to the rules used by the install
- # and auto-link features:
- common-variant-tag
- : debug release # build variants
- ;
-
-install system lib
- : <lib>boost_system <dll>boost_system
- ;
-
-stage stage/lib : <lib>boost_system <dll>boost_system
- :
- # copy to a path rooted at BOOST_ROOT:
- <locate>$(BOOST_ROOT)
- # make sure the names of the libraries are correctly named:
- common-variant-tag
- # add this target to the "stage" and "all" psuedo-targets:
- <target>stage
- <target>all
- :
- debug release
- ;
-
-# end

Deleted: branches/libs/system/system/test/Jamfile
==============================================================================
--- branches/libs/system/system/test/Jamfile 2007-09-05 05:25:12 EDT (Wed, 05 Sep 2007)
+++ (empty file)
@@ -1,51 +0,0 @@
-# Boost System Library test Jamfile
-
-# Copyright Beman Dawes 2003, 2006
-
-# Distributed under the Boost Software License, Version 1.0.
-# See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt
-
-# See library home page at http://www.boost.org/libs/system
-
-subproject libs/system/test ;
-
-# bring in rules for testing
-import testing ;
-
-# Make tests run by default.
-DEPENDS all : test ;
-
-{
- # look in BOOST_ROOT for sources first, just in this Jamfile
- local SEARCH_SOURCE = $(BOOST_ROOT) $(SEARCH_SOURCE) ;
-
- test-suite "system"
- : [ run libs/system/test/error_code_test.cpp
- <lib>../build/boost_system
- : : : <sysinclude>$(BOOST_AUX_ROOT) <sysinclude>$(BOOST_ROOT) <define>BOOST_ALL_NO_LIB <define>BOOST_SYSTEM_STATIC_LINK
- ]
- [ run libs/system/test/error_code_test.cpp
- <dll>../build/boost_system
- : : : <sysinclude>$(BOOST_AUX_ROOT) <sysinclude>$(BOOST_ROOT) <define>BOOST_ALL_NO_LIB <define>BOOST_SYSTEM_DYN_LINK <runtime-link>dynamic
- : error_code_test_dll
- ]
- [ run libs/system/test/error_code_user_test.cpp
- <lib>../build/boost_system
- : : : <sysinclude>$(BOOST_AUX_ROOT) <sysinclude>$(BOOST_ROOT) <define>BOOST_ALL_NO_LIB <define>BOOST_SYSTEM_STATIC_LINK
- ]
- [ run libs/system/test/error_code_user_test.cpp
- <dll>../build/boost_system
- : : : <sysinclude>$(BOOST_AUX_ROOT) <sysinclude>$(BOOST_ROOT) <define>BOOST_ALL_NO_LIB <define>BOOST_SYSTEM_DYN_LINK <runtime-link>dynamic
- : error_code_user_test_dll
- ]
- [ run libs/system/test/system_error_test.cpp
- <lib>../build/boost_system
- : : : <sysinclude>$(BOOST_AUX_ROOT) <sysinclude>$(BOOST_ROOT) <define>BOOST_ALL_NO_LIB <define>BOOST_SYSTEM_STATIC_LINK
- ]
- [ run libs/system/test/system_error_test.cpp
- <dll>../build/boost_system
- : : : <sysinclude>$(BOOST_AUX_ROOT) <sysinclude>$(BOOST_ROOT) <define>BOOST_ALL_NO_LIB <define>BOOST_SYSTEM_DYN_LINK <runtime-link>dynamic
- : system_error_test_dll
- ]
- ;
-}


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