diff --git a/example/boost-build.jam b/example/boost-build.jam index 776bf004a..efcc231fe 100644 --- a/example/boost-build.jam +++ b/example/boost-build.jam @@ -1,2 +1,6 @@ +# Copyright 2002, 2003 Vladimir Prus +# 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) -boost-build ../kernel ; \ No newline at end of file + +boost-build ../kernel ; diff --git a/example/customization/Jamfile b/example/customization/Jamfile index 08e0f8b8a..eee0f4f4c 100644 --- a/example/customization/Jamfile +++ b/example/customization/Jamfile @@ -1,3 +1,7 @@ +# Copyright 2003, 2004 Vladimir Prus +# 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) + exe codegen : codegen.cpp class.verbatim usage.verbatim - t1.verbatim ; \ No newline at end of file + t1.verbatim ; diff --git a/example/customization/inline_file.py b/example/customization/inline_file.py index 4b8d82751..a48c5fc9d 100644 --- a/example/customization/inline_file.py +++ b/example/customization/inline_file.py @@ -1,9 +1,8 @@ #!/usr/bin/python -# Copyright (C) Vladimir Prus 2003. Permission to copy, use, modify, sell and -# distribute this software is granted provided this copyright notice appears in -# all copies. This software is provided "as is" without express or implied -# warranty, and with no claim as to its suitability for any purpose. +# Copyright 2003 Vladimir Prus +# 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) import sys from string import strip diff --git a/example/customization/project-root.jam b/example/customization/project-root.jam index b822c673d..ab8bbf880 100644 --- a/example/customization/project-root.jam +++ b/example/customization/project-root.jam @@ -1,2 +1,6 @@ +# Copyright 2003 Vladimir Prus +# 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) -import verbatim ; \ No newline at end of file + +import verbatim ; diff --git a/example/customization/verbatim.jam b/example/customization/verbatim.jam index a6bbf8b41..931fdce33 100644 --- a/example/customization/verbatim.jam +++ b/example/customization/verbatim.jam @@ -1,9 +1,7 @@ -# Copyright (C) Vladimir Prus 2003-2004. Permission to copy, use, modify, sell and -# distribute this software is granted provided this copyright notice appears in -# all copies. This software is provided "as is" without express or implied -# warranty, and with no claim as to its suitability for any purpose. +# Copyright 2003, 2004 Vladimir Prus +# 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) -# # This file shows some of the primary customization mechanisms in Boost.Build V2 # and should serve as a basic for your own customization. # Each part has a comment describing its purpose, and you can pick the parts @@ -50,4 +48,4 @@ generators.register-standard verbatim.inline-file : VERBATIM : CPP ; actions inline-file { "./inline_file.py" $(<) $(>) -} \ No newline at end of file +} diff --git a/example/gettext/Jamfile b/example/gettext/Jamfile index f937bcb4f..d5096df30 100644 --- a/example/gettext/Jamfile +++ b/example/gettext/Jamfile @@ -1,3 +1,7 @@ +# Copyright 2003, 2006 Vladimir Prus +# 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) + # Declare a main target. exe main : main.cpp ; diff --git a/example/gettext/project-root.jam b/example/gettext/project-root.jam index ad03c4d23..862f8930c 100644 --- a/example/gettext/project-root.jam +++ b/example/gettext/project-root.jam @@ -1,2 +1,6 @@ +# Copyright 2003 Vladimir Prus +# 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) -using gettext ; \ No newline at end of file + +using gettext ; diff --git a/example/libraries/app/Jamfile b/example/libraries/app/Jamfile index 1d542039c..ed2054e13 100644 --- a/example/libraries/app/Jamfile +++ b/example/libraries/app/Jamfile @@ -1,5 +1,9 @@ +# Copyright 2002, 2003, 2005 Vladimir Prus +# 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) + # Declare a executable file, which uses a library. Note that # includes that for library will be automatically used # when compiling 'app.cpp' -exe app : app.cpp /library-example/foo//bar ; \ No newline at end of file +exe app : app.cpp /library-example/foo//bar ; diff --git a/example/libraries/util/foo/Jamfile b/example/libraries/util/foo/Jamfile index c5a6e91d2..7b6359ea4 100644 --- a/example/libraries/util/foo/Jamfile +++ b/example/libraries/util/foo/Jamfile @@ -1,5 +1,9 @@ +# Copyright 2005 Vladimir Prus +# 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) + project : usage-requirements include ; -lib bar : bar.cpp ; \ No newline at end of file +lib bar : bar.cpp ; diff --git a/example/site-config.jam b/example/site-config.jam index f2734a111..ad22d6744 100644 --- a/example/site-config.jam +++ b/example/site-config.jam @@ -1 +1,4 @@ -# No copyright, since this file is empty +# Copyright 2002, 2003 Vladimir Prus +# 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) + diff --git a/example/user-config.jam b/example/user-config.jam index 2df39ab43..db327685c 100644 --- a/example/user-config.jam +++ b/example/user-config.jam @@ -1,7 +1,8 @@ -# Copyright (C) Vladimir Prus 2003. Permission to copy, use, modify, sell and -# distribute this software is granted provided this copyright notice appears in -# all copies. This software is provided "as is" without express or implied -# warranty, and with no claim as to its suitability for any purpose. +# Copyright 2003, 2005 Douglas Gregor +# Copyright 2004 John Maddock +# Copyright 2002, 2003, 2004 Vladimir Prus +# 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) # This file is used to configure your Boost.Build installation. Please read # the user manual to find out where to put it. diff --git a/example/variant/Jamfile b/example/variant/Jamfile index a14fe282b..8ae5990d0 100644 --- a/example/variant/Jamfile +++ b/example/variant/Jamfile @@ -1,3 +1,7 @@ +# Copyright 2004 Vladimir Prus +# 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) + # By default, build the project with two variants # we've defined in project-root.jam diff --git a/example/variant/libs/Jamfile b/example/variant/libs/Jamfile index e3749a26a..4366b7624 100644 --- a/example/variant/libs/Jamfile +++ b/example/variant/libs/Jamfile @@ -1,2 +1,6 @@ +# Copyright 2004 Vladimir Prus +# 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) -lib l : l.cpp ; \ No newline at end of file + +lib l : l.cpp ; diff --git a/example/variant/project-root.jam b/example/variant/project-root.jam index 0de93a8e7..e19476ccc 100644 --- a/example/variant/project-root.jam +++ b/example/variant/project-root.jam @@ -1,3 +1,7 @@ +# Copyright 2004 Vladimir Prus +# 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) + # Define a build variant which is just combination # of four properties. @@ -7,4 +11,4 @@ variant crazy : speed off # Define a built variant inherited from 'release'. # It defines one new property and get all properties # from parent variant. -variant super_release : release : USE_ASM ; \ No newline at end of file +variant super_release : release : USE_ASM ; diff --git a/example/versioned/jamfile.jam b/example/versioned/jamfile.jam index ef30354db..913cdf4d7 100644 --- a/example/versioned/jamfile.jam +++ b/example/versioned/jamfile.jam @@ -1,7 +1,6 @@ -# (C) Copyright Rene Rivera, 2003. -# -# See accompanying license for terms and conditions of use. -# +# Copyright 2003 Rene Rivera +# 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) #~ exe hello : hello.cpp : 1.0 ; lib hello : hello.cpp : 1.0 ; diff --git a/example/versioned/project-root.jam b/example/versioned/project-root.jam index dec7f8d33..981d3eb50 100644 --- a/example/versioned/project-root.jam +++ b/example/versioned/project-root.jam @@ -1,7 +1,7 @@ -# (C) Copyright Rene Rivera, 2003. -# -# See accompanying license for terms and conditions of use. -# +# Copyright 2003 Rene Rivera +# 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) + import gcc ; import toolset ; diff --git a/generators_prototype.py b/generators_prototype.py index 45f10c01e..80d910a09 100644 --- a/generators_prototype.py +++ b/generators_prototype.py @@ -1,8 +1,6 @@ -# Copyright David Abrahams 2003. Permission to copy, use, -# modify, sell and distribute this software is granted provided this -# copyright notice appears in all copies. This software is provided -# "as is" without express or implied warranty, and with no claim as -# to its suitability for any purpose. +# Copyright 2003 Dave Abrahams +# 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) # Importing by a different name keeps PyChecker happy from __future__ import generators as generators_ diff --git a/scripts/nightly.sh b/scripts/nightly.sh index 8ccb1cda4..14298c13f 100644 --- a/scripts/nightly.sh +++ b/scripts/nightly.sh @@ -1,5 +1,9 @@ #!/bin/bash +# Copyright 2004, 2005, 2006 Vladimir Prus +# 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) + # This script create a nightly tarball of Boost.Build V2 # and updates the web site. diff --git a/scripts/roll.sh b/scripts/roll.sh index eb0415b46..5fa840f0c 100644 --- a/scripts/roll.sh +++ b/scripts/roll.sh @@ -1,5 +1,11 @@ #!/bin/bash +# Copyright 2004 Aleksey Gurtovoy +# Copyright 2006 Rene Rivera +# Copyright 2003, 2004, 2005, 2006 Vladimir Prus +# 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) + set -e # Do some renames/rearrangments @@ -48,4 +54,4 @@ chmod -R u+w * # Upload docs to sourceforge perl -pi -e 's%%SourceForge.net Logo%' index.html doc/*.html scp -r doc example *.html hacking.txt vladimir_prus@shell.sourceforge.net:/home/groups/b/bo/boost/htdocs/boost-build2 -scp ../userman.pdf vladimir_prus@shell.sourceforge.net:/home/groups/b/bo/boost/htdocs/boost-build2/doc \ No newline at end of file +scp ../userman.pdf vladimir_prus@shell.sourceforge.net:/home/groups/b/bo/boost/htdocs/boost-build2/doc diff --git a/src/kernel/boost-build.jam b/src/kernel/boost-build.jam index 561c362af..377f6ec02 100755 --- a/src/kernel/boost-build.jam +++ b/src/kernel/boost-build.jam @@ -1,6 +1,5 @@ -# Copyright David Abrahams 2003. Permission to copy, use, -# modify, sell and distribute this software is granted provided this -# copyright notice appears in all copies. This software is provided -# "as is" without express or implied warranty, and with no claim as -# to its suitability for any purpose. -boost-build . ; \ No newline at end of file +# Copyright 2003 Dave Abrahams +# 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) + +boost-build . ; diff --git a/src/kernel/bootstrap.jam b/src/kernel/bootstrap.jam index 67b681449..59b46762d 100755 --- a/src/kernel/bootstrap.jam +++ b/src/kernel/bootstrap.jam @@ -1,8 +1,8 @@ -# (C) Copyright David Abrahams, 2001. -# (C) Copyright Rene Rivera, 2003 2006. -# -# See accompanying license for terms and conditions of use. -# +# Copyright 2003 Dave Abrahams +# Copyright 2003, 2005, 2006 Rene Rivera +# Copyright 2003, 2005, 2006 Vladimir Prus +# 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) # First of all, check the jam version diff --git a/src/kernel/class.jam b/src/kernel/class.jam index 92b970ad8..2857718ab 100644 --- a/src/kernel/class.jam +++ b/src/kernel/class.jam @@ -1,7 +1,8 @@ -# (C) Copyright David Abrahams 2002. Permission to copy, use, modify, sell and -# distribute this software is granted provided this copyright notice appears in -# all copies. This software is provided "as is" without express or implied -# warranty, and with no claim as to its suitability for any purpose. +# Copyright 2001, 2002, 2003 Dave Abrahams +# Copyright 2002, 2005 Rene Rivera +# Copyright 2002, 2003 Vladimir Prus +# 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) # Polymorphic class system built on top of core Jam facilities. # @@ -427,4 +428,4 @@ local rule __test__ ( ) assert.true is-a $(c) : derived2 ; assert.true is-a $(d) : myclass ; assert.false is-a literal : myclass ; -} \ No newline at end of file +} diff --git a/src/kernel/errors.jam b/src/kernel/errors.jam index 20e61092c..40bb7c94f 100755 --- a/src/kernel/errors.jam +++ b/src/kernel/errors.jam @@ -1,7 +1,7 @@ -# (C) Copyright David Abrahams 2001. Permission to copy, use, modify, sell and -# distribute this software is granted provided this copyright notice appears in -# all copies. This software is provided "as is" without express or implied -# warranty, and with no claim as to its suitability for any purpose. +# Copyright 2003 Dave Abrahams +# Copyright 2004 Vladimir Prus +# 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) # Print a stack backtrace leading to this rule's caller. Each # argument represents a line of output to be printed after the first diff --git a/src/kernel/modules.jam b/src/kernel/modules.jam index 0ee2b27eb..580c1bac4 100755 --- a/src/kernel/modules.jam +++ b/src/kernel/modules.jam @@ -1,7 +1,7 @@ -# (C) Copyright David Abrahams 2001. Permission to copy, use, modify, sell and -# distribute this software is granted provided this copyright notice appears in -# all copies. This software is provided "as is" without express or implied -# warranty, and with no claim as to its suitability for any purpose. +# Copyright 2003 Dave Abrahams +# Copyright 2003, 2005 Vladimir Prus +# 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) # Essentially an include guard; ensures that no module is loaded multiple times .loaded ?= ; diff --git a/src/options/help.jam b/src/options/help.jam index c087592ee..16e448457 100755 --- a/src/options/help.jam +++ b/src/options/help.jam @@ -1,8 +1,8 @@ -# (C) Copyright David Abrahams, 2003. -# (C) Copyright Rene Rivera, 2003. -# -# See accompanying license for terms and conditions of use. -# +# Copyright 2003 Dave Abrahams +# Copyright 2003, 2006 Rene Rivera +# Copyright 2003, 2006 Vladimir Prus +# 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) # This module is the plug-in handler for the --help and --help-.* # command-line options diff --git a/src/tools/bison.jam b/src/tools/bison.jam index 4e6c8de9f..0689d4bd8 100644 --- a/src/tools/bison.jam +++ b/src/tools/bison.jam @@ -1,7 +1,6 @@ -# Copyright (C) Vladimir Prus 2002. Permission to copy, use, modify, sell and -# distribute this software is granted provided this copyright notice appears in -# all copies. This software is provided "as is" without express or implied -# warranty, and with no claim as to its suitability for any purpose. +# Copyright 2003 Vladimir Prus +# 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) import generators ; import feature ; @@ -30,4 +29,4 @@ rule bison ( dst dst_header : src : properties * ) actions bison { bison $(PREFIX_OPT) -d -o $(<[1]) $(>) -} \ No newline at end of file +} diff --git a/src/tools/boostbook.jam b/src/tools/boostbook.jam index c92dbce74..e1b5db19a 100644 --- a/src/tools/boostbook.jam +++ b/src/tools/boostbook.jam @@ -1,8 +1,9 @@ -# Copyright (C) 2003 Doug Gregor. Permission to copy, use, modify, -# sell and distribute this software is granted provided this -# copyright notice appears in all copies. This software is provided -# "as is" without express or implied warranty, and with no claim as -# to its suitability for any purpose. +# Copyright 2003, 2004, 2005 Dave Abrahams +# Copyright 2003, 2004, 2005 Douglas Gregor +# Copyright 2005 Rene Rivera +# Copyright 2003, 2004, 2005 Vladimir Prus +# 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) # This module defines rules to handle generation of documentation # from BoostBook sources. diff --git a/src/tools/borland.jam b/src/tools/borland.jam index e19c9005b..1c099d6d2 100644 --- a/src/tools/borland.jam +++ b/src/tools/borland.jam @@ -1,10 +1,8 @@ -# (C) Copyright David Abrahams 2001. -# (C) Copyright Vladimir Prus 2003. -# (C) Copyright Rene Rivera 2003. -# Permission to copy, use, modify, sell and distribute this software -# is granted provided this copyright notice appears in all copies. This -# software is provided "as is" without express or implied warranty, and -# with no claim as to its suitability for any purpose. +# Copyright 2005 Dave Abrahams +# Copyright 2003 Rene Rivera +# Copyright 2003, 2004, 2005 Vladimir Prus +# 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) # Support for the Borland's command line compiler diff --git a/src/tools/builtin.jam b/src/tools/builtin.jam index 8e63d2c53..e057567d8 100644 --- a/src/tools/builtin.jam +++ b/src/tools/builtin.jam @@ -1,7 +1,10 @@ -# Copyright (C) Vladimir Prus 2002. Permission to copy, use, modify, sell and -# distribute this software is granted provided this copyright notice appears in -# all copies. This software is provided "as is" without express or implied -# warranty, and with no claim as to its suitability for any purpose. +# Copyright 2002, 2003, 2004, 2005 Dave Abrahams +# Copyright 2002, 2005, 2006 Rene Rivera +# Copyright 2006 Juergen Hunold +# Copyright 2005 Toon Knapen +# Copyright 2002, 2003, 2004, 2005, 2006 Vladimir Prus +# 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) # Defines standard features and rules. diff --git a/src/tools/common.jam b/src/tools/common.jam index 2e188742b..fee26a2b2 100644 --- a/src/tools/common.jam +++ b/src/tools/common.jam @@ -1,7 +1,9 @@ -# Copyright (C) Vladimir Prus 2002. Permission to copy, use, modify, sell and -# distribute this software is granted provided this copyright notice appears in -# all copies. This software is provided "as is" without express or implied -# warranty, and with no claim as to its suitability for any purpose. +# Copyright 2003, 2005 Dave Abrahams +# Copyright 2005, 2006 Rene Rivera +# Copyright 2005 Toon Knapen +# Copyright 2002, 2003, 2004, 2005, 2006 Vladimir Prus +# 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) # Provides actions common to all toolsets, for as making directoies and # removing files. diff --git a/src/tools/como-linux.jam b/src/tools/como-linux.jam index c6e6a23fe..4af2628c3 100644 --- a/src/tools/como-linux.jam +++ b/src/tools/como-linux.jam @@ -1,7 +1,6 @@ -# modify, sell and distribute this software is granted provided this -# copyright notice appears in all copies. This software is provided -# "as is" without express or implied warranty, and with no claim as -# to its suitability for any purpose. +# Copyright 2004, 2005, 2006 Vladimir Prus +# 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) # The following #// line will be used by the regression test table generation # program as the column heading for HTML tables. Must not include version number. diff --git a/src/tools/darwin.jam b/src/tools/darwin.jam index 14dd0008e..b14ff5407 100644 --- a/src/tools/darwin.jam +++ b/src/tools/darwin.jam @@ -1,8 +1,8 @@ -# Copyright (C) Christopher Currie 2003. Permission to copy, use, -# modify, sell and distribute this software is granted provided this -# copyright notice appears in all copies. This software is provided -# "as is" without express or implied warranty, and with no claim as to -# its suitability for any purpose. +# Copyright 2003 Christopher Currie +# Copyright 2006 Dave Abrahams +# Copyright 2003, 2004, 2005, 2006 Vladimir Prus +# 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) # Please see http://article.gmane.org/gmane.comp.lib.boost.build/3389/ # for explanation why it's a separate toolset. diff --git a/src/tools/doxygen.jam b/src/tools/doxygen.jam index 8acbea5ff..e471e99fe 100644 --- a/src/tools/doxygen.jam +++ b/src/tools/doxygen.jam @@ -1,8 +1,7 @@ -# Copyright (C) 2003 Doug Gregor. Permission to copy, use, modify, -# sell and distribute this software is granted provided this -# copyright notice appears in all copies. This software is provided -# "as is" without express or implied warranty, and with no claim as -# to its suitability for any purpose. +# Copyright 2003, 2004 Douglas Gregor +# Copyright 2003, 2004, 2005 Vladimir Prus +# 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) # This module defines rules to handle generation of BoostBook XML # from Doxygen XML output. @@ -186,4 +185,4 @@ rule doxygen ( target-name : sources * : requirements * : default-build * ) : [ targets.main-target-requirements $(requirements) . : $(project) ] : [ targets.main-target-default-build $(default-build) : $(project) ] ] ; -} \ No newline at end of file +} diff --git a/src/tools/gettext.jam b/src/tools/gettext.jam index 604fbc4fe..c72eb9e8b 100644 --- a/src/tools/gettext.jam +++ b/src/tools/gettext.jam @@ -1,7 +1,6 @@ -# Copyright (C) Vladimir Prus 2003. Permission to copy, use, modify, sell and -# distribute this software is granted provided this copyright notice appears in -# all copies. This software is provided "as is" without express or implied -# warranty, and with no claim as to its suitability for any purpose. +# Copyright 2003, 2004, 2005, 2006 Vladimir Prus +# 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) # This module support GNU gettext internationalization utilities. # @@ -232,4 +231,4 @@ actions gettext.compile IMPORT $(__name__) : update : : gettext.update ; - \ No newline at end of file + diff --git a/src/tools/kylix.jam b/src/tools/kylix.jam index 2a4162593..342aee089 100644 --- a/src/tools/kylix.jam +++ b/src/tools/kylix.jam @@ -1,7 +1,6 @@ -# Copyright (C) Vladimir Prus 2002. Permission to copy, use, modify, sell and -# distribute this software is granted provided this copyright notice appears in -# all copies. This software is provided "as is" without express or implied -# warranty, and with no claim as to its suitability for any purpose. +# Copyright 2003 Vladimir Prus +# 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) # Support for the Borland's Kylix command line compiler diff --git a/src/tools/lex.jam b/src/tools/lex.jam index 1f0126901..75d641318 100644 --- a/src/tools/lex.jam +++ b/src/tools/lex.jam @@ -1,7 +1,6 @@ -# Copyright (C) Vladimir Prus 2002. Permission to copy, use, modify, sell and -# distribute this software is granted provided this copyright notice appears in -# all copies. This software is provided "as is" without express or implied -# warranty, and with no claim as to its suitability for any purpose. +# Copyright 2003 Vladimir Prus +# 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) import type ; import generators ; @@ -31,4 +30,4 @@ rule lex ( target : source : properties * ) actions lex { flex -P$(PREFIX) -o$(<) $(>) -} \ No newline at end of file +} diff --git a/src/tools/make.jam b/src/tools/make.jam index 4880eeee1..0328b6c1b 100644 --- a/src/tools/make.jam +++ b/src/tools/make.jam @@ -1,7 +1,9 @@ -# Copyright (C) Vladimir Prus 2002. Permission to copy, use, modify, sell and -# distribute this software is granted provided this copyright notice appears in -# all copies. This software is provided "as is" without express or implied -# warranty, and with no claim as to its suitability for any purpose. +# Copyright 2003 Dave Abrahams +# Copyright 2003 Douglas Gregor +# Copyright 2006 Rene Rivera +# Copyright 2002, 2003, 2004, 2005, 2006 Vladimir Prus +# 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) # This module defines the 'make' main target rule. diff --git a/src/tools/qt3.jam b/src/tools/qt3.jam index ba7c63928..bf8036631 100644 --- a/src/tools/qt3.jam +++ b/src/tools/qt3.jam @@ -1,7 +1,6 @@ -# Copyright (C) Vladimir Prus 2002. Permission to copy, use, modify, sell and -# distribute this software is granted provided this copyright notice appears in -# all copies. This software is provided "as is" without express or implied -# warranty, and with no claim as to its suitability for any purpose. +# Copyright 2006 Vladimir Prus +# 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) # Support for the Qt GUI library version 3 # (http://www.trolltech.com/products/qt3/index.html). diff --git a/src/tools/stage.jam b/src/tools/stage.jam index aa27dfcc9..d955f40b3 100644 --- a/src/tools/stage.jam +++ b/src/tools/stage.jam @@ -1,7 +1,8 @@ -# Copyright (C) Vladimir Prus 2002. Permission to copy, use, modify, sell and -# distribute this software is granted provided this copyright notice appears in -# all copies. This software is provided "as is" without express or implied -# warranty, and with no claim as to its suitability for any purpose. +# Copyright 2003 Dave Abrahams +# Copyright 2005, 2006 Rene Rivera +# Copyright 2002, 2003, 2004, 2005, 2006 Vladimir Prus +# 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) # This module defines the 'install' rule, used to copy a set of targets to # a single location diff --git a/src/tools/stlport.jam b/src/tools/stlport.jam index ad1c1eb15..3e83d7365 100644 --- a/src/tools/stlport.jam +++ b/src/tools/stlport.jam @@ -1,11 +1,8 @@ -# (C) Copyright Gennadiy Rozental 2002. -# (C) Copyright Vladimir Prus 2003. -# (C) Copyright Rene Rivera 2006. -# Permission to copy, use, -# modify, sell and distribute this software is granted provided this -# copyright notice appears in all copies. This software is provided -# "as is" without express or implied warranty, and with no claim as -# to its suitability for any purpose. +# Copyright Gennadiy Rozental +# Copyright 2006 Rene Rivera +# Copyright 2003, 2004, 2006 Vladimir Prus +# 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) # The STLPort is usable by means of 'stdlib' feature. When # stdlib=stlport is specified, default version of STLPort will be used, diff --git a/src/tools/symlink.jam b/src/tools/symlink.jam index ae785d08c..deec452cb 100644 --- a/src/tools/symlink.jam +++ b/src/tools/symlink.jam @@ -1,7 +1,8 @@ -# (C) Copyright Rene Rivera, 2002-2003. -# -# See accompanying license for terms and conditions of use. -# +# Copyright 2003 Dave Abrahams +# Copyright 2002, 2003 Rene Rivera +# Copyright 2002, 2003, 2004, 2005 Vladimir Prus +# 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) # Defines the "symlink" special target. 'symlink' targets make symbolic links # to the sources. diff --git a/src/tools/testing.jam b/src/tools/testing.jam index 542c9f525..e195c93d2 100644 --- a/src/tools/testing.jam +++ b/src/tools/testing.jam @@ -1,9 +1,7 @@ -# (C) Copyright David Abrahams 2002. -# (C) Copyright Vladimir Prus 2002-2003. -# Permission to copy, use, modify, sell and -# distribute this software is granted provided this copyright notice appears in -# all copies. This software is provided "as is" without express or implied -# warranty, and with no claim as to its suitability for any purpose. +# Copyright 2005 Dave Abrahams +# Copyright 2002, 2003, 2004, 2005, 2006 Vladimir Prus +# 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) # This module implements regression testing framework. It declares a number of # main target rules, which perform some action, and if the results are ok, diff --git a/src/util/assert.jam b/src/util/assert.jam index 2c526d92a..d4eacc47d 100644 --- a/src/util/assert.jam +++ b/src/util/assert.jam @@ -1,7 +1,8 @@ -# (C) Copyright David Abrahams 2001. Permission to copy, use, modify, sell and -# distribute this software is granted provided this copyright notice appears in -# all copies. This software is provided "as is" without express or implied -# warranty, and with no claim as to its suitability for any purpose. +# Copyright 2001, 2002, 2003 Dave Abrahams +# Copyright 2006 Rene Rivera +# Copyright 2002, 2003 Vladimir Prus +# 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) import errors : error-skip-frames lol->list ; import modules ; @@ -138,4 +139,4 @@ rule not-in ( element : list * ) error-skip-frames 3 assertion failure: did not expect $(element) in "[" $(list) "]" ; } -} \ No newline at end of file +} diff --git a/src/util/container.jam b/src/util/container.jam index 6ad63d857..673f11ac6 100644 --- a/src/util/container.jam +++ b/src/util/container.jam @@ -1,7 +1,8 @@ -# (C) Copyright Rene Rivera, 2002. -# -# See accompanying license for terms and conditions of use. -# +# Copyright 2003 Dave Abrahams +# Copyright 2002, 2003 Rene Rivera +# Copyright 2002, 2003, 2004 Vladimir Prus +# 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) # Various container classes. diff --git a/src/util/doc.jam b/src/util/doc.jam index 5f4829709..697bff487 100644 --- a/src/util/doc.jam +++ b/src/util/doc.jam @@ -1,7 +1,8 @@ -# (C) Copyright Rene Rivera, 2002-2003. -# -# See accompanying license for terms and conditions of use. -# +# Copyright 2002, 2005 Dave Abrahams +# Copyright 2002, 2003, 2006 Rene Rivera +# Copyright 2003 Vladimir Prus +# 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) # Documentation system, handles --help requests. # It defines rules that attach documentation to modules, rules, and variables. diff --git a/src/util/indirect.jam b/src/util/indirect.jam index 1ed0c9799..41fda47d1 100755 --- a/src/util/indirect.jam +++ b/src/util/indirect.jam @@ -1,8 +1,8 @@ -# Copyright David Abrahams 2003. Permission to copy, use, -# modify, sell and distribute this software is granted provided this -# copyright notice appears in all copies. This software is provided -# "as is" without express or implied warranty, and with no claim as -# to its suitability for any purpose. +# Copyright 2003 Dave Abrahams +# Copyright 2003 Vladimir Prus +# 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) + import modules ; import numbers ; @@ -100,4 +100,4 @@ rule __test__ call [ make foo-barr! : [ CALLER_MODULE ] ] x ; -} \ No newline at end of file +} diff --git a/src/util/numbers.jam b/src/util/numbers.jam index 2a23af698..1d3d68692 100644 --- a/src/util/numbers.jam +++ b/src/util/numbers.jam @@ -1,7 +1,7 @@ -# (C) Copyright David Abrahams 2001. Permission to copy, use, modify, sell and -# distribute this software is granted provided this copyright notice appears in -# all copies. This software is provided "as is" without express or implied -# warranty, and with no claim as to its suitability for any purpose. +# Copyright 2001, 2002 Dave Abrahams +# Copyright 2002, 2003 Vladimir Prus +# 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) digits = 0 1 2 3 4 5 6 7 8 9 ; powers = 1 ; diff --git a/src/util/os.jam b/src/util/os.jam index 9e2ea1925..f95c69a24 100644 --- a/src/util/os.jam +++ b/src/util/os.jam @@ -1,7 +1,8 @@ -# (C) Copyright David Abrahams 2001. Permission to copy, use, modify, sell and -# distribute this software is granted provided this copyright notice appears in -# all copies. This software is provided "as is" without express or implied -# warranty, and with no claim as to its suitability for any purpose. +# Copyright 2001, 2002, 2003, 2005 Dave Abrahams +# Copyright 2006 Rene Rivera +# Copyright 2003, 2005 Vladimir Prus +# 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) import modules ; diff --git a/src/util/print.jam b/src/util/print.jam index ceaeaace9..63ee70023 100644 --- a/src/util/print.jam +++ b/src/util/print.jam @@ -1,7 +1,8 @@ -# (C) Copyright Rene Rivera, 2002-2003. -# -# See accompanying license for terms and conditions of use. -# +# Copyright 2003 Douglas Gregor +# Copyright 2002, 2003, 2005 Rene Rivera +# Copyright 2002, 2003, 2004, 2005 Vladimir Prus +# 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) # Utilities for generating format independent output. Using these # will help in generation of documentation in at minimum plain/console diff --git a/src/util/regex.jam b/src/util/regex.jam index 1b9b885e9..c805abb2c 100644 --- a/src/util/regex.jam +++ b/src/util/regex.jam @@ -1,7 +1,9 @@ -# (C) Copyright David Abrahams 2001. Permission to copy, use, modify, sell and -# distribute this software is granted provided this copyright notice appears in -# all copies. This software is provided "as is" without express or implied -# warranty, and with no claim as to its suitability for any purpose. +# Copyright 2001, 2002 Dave Abrahams +# Copyright 2003 Douglas Gregor +# Copyright 2003 Rene Rivera +# Copyright 2002, 2003, 2004, 2005 Vladimir Prus +# 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) # # Returns a list of the following substrings: diff --git a/src/util/sequence.jam b/src/util/sequence.jam index 4b2d4e935..00a60c5aa 100644 --- a/src/util/sequence.jam +++ b/src/util/sequence.jam @@ -1,7 +1,8 @@ -# (C) Copyright David Abrahams 2002. Permission to copy, use, modify, sell and -# distribute this software is granted provided this copyright notice appears in -# all copies. This software is provided "as is" without express or implied -# warranty, and with no claim as to its suitability for any purpose. +# Copyright 2001, 2002, 2003 Dave Abrahams +# Copyright 2006 Rene Rivera +# Copyright 2002, 2003 Vladimir Prus +# 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) import assert ; import numbers ; diff --git a/src/util/set.jam b/src/util/set.jam index af05cfa5b..6e75546be 100644 --- a/src/util/set.jam +++ b/src/util/set.jam @@ -1,7 +1,7 @@ -# (C) Copyright David Abrahams 2001. Permission to copy, use, modify, sell and -# distribute this software is granted provided this copyright notice appears in -# all copies. This software is provided "as is" without express or implied -# warranty, and with no claim as to its suitability for any purpose. +# Copyright 2001, 2002 Dave Abrahams +# Copyright 2003 Vladimir Prus +# 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) # difference # returns the elements of B that are not in A diff --git a/src/util/string.jam b/src/util/string.jam index 153d8deec..dc19b2d13 100644 --- a/src/util/string.jam +++ b/src/util/string.jam @@ -1,8 +1,7 @@ -# (C) Copyright David Abrahams, 2002. -# (C) Copyright Rene Rivera, 2003. -# -# See accompanying license for terms and conditions of use. -# +# Copyright 2002 Dave Abrahams +# Copyright 2002, 2003 Rene Rivera +# 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) import regex ; diff --git a/src/util/utility.jam b/src/util/utility.jam index 8d2524931..01d100806 100644 --- a/src/util/utility.jam +++ b/src/util/utility.jam @@ -1,7 +1,7 @@ -# (C) Copyright David Abrahams 2001. Permission to copy, use, modify, sell and -# distribute this software is granted provided this copyright notice appears in -# all copies. This software is provided "as is" without express or implied -# warranty, and with no claim as to its suitability for any purpose. +# Copyright 2001, 2002 Dave Abrahams +# Copyright 2002, 2003, 2004, 2005 Vladimir Prus +# 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) import "class" : is-instance ; import errors ;