|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r49647 - trunk/tools/build/v2/tools
From: ghost_at_[hidden]
Date: 2008-11-08 03:22:15
Author: vladimir_prus
Date: 2008-11-08 03:22:14 EST (Sat, 08 Nov 2008)
New Revision: 49647
URL: http://svn.boost.org/trac/boost/changeset/49647
Log:
Rename 'standalone-manifest' to 'embed-manifest'.
Text files modified:
trunk/tools/build/v2/tools/msvc.jam | 9 ++++-----
1 files changed, 4 insertions(+), 5 deletions(-)
Modified: trunk/tools/build/v2/tools/msvc.jam
==============================================================================
--- trunk/tools/build/v2/tools/msvc.jam (original)
+++ trunk/tools/build/v2/tools/msvc.jam 2008-11-08 03:22:14 EST (Sat, 08 Nov 2008)
@@ -38,7 +38,7 @@
type.register MANIFEST : manifest ;
-feature.feature standalone-manifest : off on : incidental propagated ;
+feature.feature embed-manifest : on off : incidental propagated ;
################################################################################
#
@@ -421,7 +421,7 @@
rule link ( targets + : sources * : properties * )
{
- if ! <standalone-manifest>on in $(properties)
+ if <embed-manifest>on in $(properties)
{
msvc.manifest $(targets) : $(sources) : $(properties) ;
}
@@ -430,13 +430,12 @@
rule link.dll ( targets + : sources * : properties * )
{
DEPENDS $(<) : [ on $(<) return $(DEF_FILE) ] ;
- if ! <standalone-manifest>on in $(properties)
+ if <embed-manifest>on in $(properties)
{
msvc.manifest.dll $(targets) : $(sources) : $(properties) ;
}
}
-
# Incremental linking a DLL causes no end of problems: if the actual exports do
# not change, the import .lib file is never updated. Therefore, the .lib is
# always out-of-date and gets rebuilt every time. I am not sure that incremental
@@ -993,7 +992,7 @@
{
local result = [ generator.generated-targets $(sources)
: $(property-set) : $(project) $(name) ] ;
- if [ $(property-set).get <standalone-manifest> ] = "on"
+ if [ $(property-set).get <embed-manifest> ] = "off"
{
if ! $(name)
{
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