Boost logo

Boost-Build :

From: Alexey Pakhunov (alexeypa_at_[hidden])
Date: 2005-10-14 01:11:13


David Abrahams wrote:
> Probably you should replace it with something that prints a warning
> and implements equivalent behavior for a while, first.

Right. I attached the patch.

Best regards/Venlig hilsen,
Alexey Pakhunov.
 --------------070909000709080706050309 Content-Type: text/plain;
name="remove-msvc-config.diff"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="remove-msvc-config.diff"

Index: msvc-config.jam
===================================================================
RCS file: /cvsroot/boost/boost/tools/build/v2/tools/msvc-config.jam,v
retrieving revision 1.2
diff -u -r1.2 msvc-config.jam
--- msvc-config.jam 20 Apr 2005 23:23:28 -0000 1.2
+++ msvc-config.jam 14 Oct 2005 06:09:30 -0000
@@ -4,25 +4,9 @@

# Automatic configuration for VisualStudio toolset. To use, just import this module.

-import os ;
import toolset : using ;

-if [ os.name ] = NT
-{
- for local R in 8.0 7.1 7.0
- {
- local vc-path = [ W32_GETREG
- "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\$(R)\\Setup\\VC"
- : "ProductDir" ] ;
- local vc-version = $(R) ;
-
- if $(vc-path)
- {
- if --debug-configuration in [ modules.peek : ARGV ]
- {
- ECHO "notice:" using msvc ":" $(vc-version) ":" "$(vc-path)\\bin\\cl.exe" ;
- }
- using msvc : $(vc-version) : "$(vc-path)\\bin\\cl.exe" ;
- }
- }
-}
+ECHO "warning: msvc-config.jam is deprecated. Use 'using msvc : all ;' instead." ;
+
+using msvc : all ;
+
 --------------070909000709080706050309--


Boost-Build 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