$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: jurko.gospodnetic_at_[hidden]
Date: 2008-04-06 18:36:59
Author: jurko
Date: 2008-04-06 18:36:59 EDT (Sun, 06 Apr 2008)
New Revision: 44086
URL: http://svn.boost.org/trac/boost/changeset/44086
Log:
Made the msvc toolset registration example consistent with its comment and added an additional one specifying the exact msvc version. Many stylistic comment changes.
Text files modified: 
   trunk/tools/build/v2/user-config.jam |   108 +++++++++++++++++++++------------------ 
   1 files changed, 58 insertions(+), 50 deletions(-)
Modified: trunk/tools/build/v2/user-config.jam
==============================================================================
--- trunk/tools/build/v2/user-config.jam	(original)
+++ trunk/tools/build/v2/user-config.jam	2008-04-06 18:36:59 EDT (Sun, 06 Apr 2008)
@@ -1,78 +1,86 @@
-# Copyright 2003, 2005 Douglas Gregor 
-# Copyright 2004 John Maddock 
-# Copyright 2002, 2003, 2004, 2007 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) 
+# Copyright 2003, 2005 Douglas Gregor
+# Copyright 2004 John Maddock
+# Copyright 2002, 2003, 2004, 2007 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.
-#  You can modify this file in place, or you can place it it
-#  permanent location so that it's not overwritten should you
-#  get new version of Boost.Build. See:
+#   This file is used to configure your Boost.Build installation. You can modify
+# this file in place, or you can place it in a permanent location so that it
+# does not get overwritten should you get a new version of Boost.Build. See:
 #
-#    http://boost.org/boost-build2/doc/html/bbv2/reference.html#bbv2.reference.init
+#   http://boost.org/boost-build2/doc/html/bbv2/reference.html#bbv2.reference.init
 #
-#  for documentation about permanent location.
+# for documentation about possible permanent locations.
 
-#  This file specifies which toolsets (C++ compilers), libraries,
-#  and other tools are available.  Often, you should be able to
-#  just uncomment existing example lines and adjust them to taste.
-#  The complete list of supported tools, and configuration instructions
-#  can be found at:
+#   This file specifies which toolsets (C++ compilers), libraries, and other
+# tools are available. Often, you should be able to just uncomment existing
+# example lines and adjust them to taste. The complete list of supported tools,
+# and configuration instructions can be found at:
 #
-#    http://boost.org/boost-build2/doc/html/bbv2/reference/tools.html
+#   http://boost.org/boost-build2/doc/html/bbv2/reference/tools.html
 #
 
-#  This file uses Jam language syntax to describe available tools.
-#  Mostly, there are 'using' lines, that contain the name of the used
-#  tools, and parameters to pass to those tools -- where paremeters
-#  are separated by semicolons.
-#  Important syntax notes:
+#   This file uses Jam language syntax to describe available tools. Mostly,
+# there are 'using' lines, that contain the name of the used tools, and
+# parameters to pass to those tools -- where paremeters are separated by
+# semicolons. Important syntax notes:
 #
-#    - Both ':' and ';' must be separated from other tokens by whitespace
-#    - The '\' symbol is quote character, so when specifying Windows paths
-#      it's recommended to use '/' instead, or use '\\'.
+#   - Both ':' and ';' must be separated from other tokens by whitespace
+#   - The '\' symbol is a quote character, so when specifying Windows paths you
+#     should use '/' or '\\' instead.
 #
-#  More details about syntax can be found at:
+# More details about the syntax can be found at:
 #
-#    http://boost.org/boost-build2/doc/html/bbv2/advanced.html#bbv2.advanced.jam_language
+#   http://boost.org/boost-build2/doc/html/bbv2/advanced.html#bbv2.advanced.jam_language
 #
 
 
+# ------------------
+# GCC configuration.
+# ------------------
 
-#  GCC configuration
+# Configure gcc (default version).
+# using gcc ;
 
-#  Configure gcc (default version)
-#  using gcc ;
+# Configure specific gcc version, giving alternative name to use.
+# using gcc : 3.2 : g++-3.2 ;
 
-#  Configure specific gcc version, giving alternative name to use
-#  using gcc : 3.2 : g++-3.2 ;
 
-#  MSVC configuration
+# -------------------
+# MSVC configuration.
+# -------------------
 
-#  Configure msvc (default version, searched in standard location
-#  and PATH).
-#  using msvc : 8.0 : ;
+# Configure msvc (default version, searched for in standard locations and PATH).
+# using msvc ;
 
-#  Borland configuration
-#  using borland ;
+# Configure specific msvc version (searched for in standard locations and PATH).
+# using msvc : 8.0 ;
 
 
-#  STLPort configuration
+# ----------------------
+# Borland configuration.
+# ----------------------
+# using borland ;
 
-#  Configure, specifying location of STLPort headers. 
-#  Libraries must be either not needed, or available to
-#  the compiler by default
-#  using stlport : : /usr/include/stlport ;
 
-#  Configure, specifying locatioh of both headers and libraries
-#  using stlport : : /usr/include/stlport /usr/lib ;
+# ----------------------
+# STLPort configuration.
+# ----------------------
 
+#   Configure specifying location of STLPort headers. Libraries must be either
+# not needed or available to the compiler by default.
+# using stlport : : /usr/include/stlport ;
 
-#  QT configuration
+# Configure specifying location of both headers and libraries explicitly.
+# using stlport : : /usr/include/stlport /usr/lib ;
 
-#  Configure, assuming QTDIR gives the installation prefix
-#  using qt ;
 
-#  Configure with explicit installation prefix
-#  using qt : /usr/opt/qt ;
+# -----------------
+# QT configuration.
+# -----------------
 
+# Configure assuming QTDIR gives the installation prefix.
+# using qt ;
+
+# Configure with an explicit installation prefix.
+# using qt : /usr/opt/qt ;