Merge platform fixes from HEAD

[SVN r36168]
This commit is contained in:
Aleksey Gurtovoy
2006-11-23 19:57:11 +00:00
parent c50567d0c0
commit 0fb7bfb970
4 changed files with 12 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
# Copyright Aleksey Gurtovoy 2001-2004 # Copyright Aleksey Gurtovoy 2001-2006
# #
# Distributed under the Boost Software License, Version 1.0. # Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at # (See accompanying file LICENSE_1_0.txt or copy at
@@ -12,9 +12,10 @@
# $Revision$ # $Revision$
import preprocess import preprocess
import os.path
preprocess.main( preprocess.main(
[ "plain" ] [ "plain" ]
, "list" , "list"
, "boost\\mpl\\list\\aux_\\preprocessed" , os.path.join( "boost", "mpl", "list", "aux_", "preprocessed" )
) )

View File

@@ -1,5 +1,5 @@
# Copyright Aleksey Gurtovoy 2001-2004 # Copyright Aleksey Gurtovoy 2001-2006
# #
# Distributed under the Boost Software License, Version 1.0. # Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at # (See accompanying file LICENSE_1_0.txt or copy at
@@ -12,9 +12,10 @@
# $Revision$ # $Revision$
import preprocess import preprocess
import os.path
preprocess.main( preprocess.main(
[ "plain", "typeof_based", "no_ctps" ] [ "plain", "typeof_based", "no_ctps" ]
, "map" , "map"
, "boost\\mpl\\map\\aux_\\preprocessed" , os.path.join( "boost", "mpl", "map", "aux_", "preprocessed" )
) )

View File

@@ -1,5 +1,5 @@
# Copyright Aleksey Gurtovoy 2001-2004 # Copyright Aleksey Gurtovoy 2001-2006
# #
# Distributed under the Boost Software License, Version 1.0. # Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at # (See accompanying file LICENSE_1_0.txt or copy at
@@ -12,9 +12,10 @@
# $Revision$ # $Revision$
import preprocess import preprocess
import os.path
preprocess.main( preprocess.main(
[ "plain" ] [ "plain" ]
, "set" , "set"
, "boost\\mpl\\set\\aux_\\preprocessed" , os.path.join( "boost", "mpl", "set", "aux_", "preprocessed" )
) )

View File

@@ -1,5 +1,5 @@
# Copyright Aleksey Gurtovoy 2001-2004 # Copyright Aleksey Gurtovoy 2001-2006
# #
# Distributed under the Boost Software License, Version 1.0. # Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at # (See accompanying file LICENSE_1_0.txt or copy at
@@ -12,9 +12,10 @@
# $Revision$ # $Revision$
import preprocess import preprocess
import os.path
preprocess.main( preprocess.main(
[ "no_ctps", "plain", "typeof_based" ] [ "no_ctps", "plain", "typeof_based" ]
, "vector" , "vector"
, "boost\\mpl\\vector\\aux_\\preprocessed" , os.path.join( "boost", "mpl", "vector", "aux_", "preprocessed" )
) )