|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r77728 - trunk/libs/thread/build
From: vicente.botet_at_[hidden]
Date: 2012-04-02 18:33:06
Author: viboes
Date: 2012-04-02 18:33:05 EDT (Mon, 02 Apr 2012)
New Revision: 77728
URL: http://svn.boost.org/trac/boost/changeset/77728
Log:
Thread: rollback 76581 partialy so that no link with boost chrono is done on vaccp
Text files modified:
trunk/libs/thread/build/Jamfile.v2 | 11 ++++++++---
1 files changed, 8 insertions(+), 3 deletions(-)
Modified: trunk/libs/thread/build/Jamfile.v2
==============================================================================
--- trunk/libs/thread/build/Jamfile.v2 (original)
+++ trunk/libs/thread/build/Jamfile.v2 2012-04-02 18:33:05 EDT (Mon, 02 Apr 2012)
@@ -160,8 +160,10 @@
# in that case?
}
}
-
- result += <library>/boost/chrono//boost_chrono ;
+ if ! <toolset>vacpp in $(properties)
+ {
+ result += <library>/boost/chrono//boost_chrono ;
+ }
return $(result) ;
}
@@ -186,7 +188,10 @@
}
}
}
- result += <library>/boost/chrono//boost_chrono ;
+ if ! <toolset>vacpp in $(properties)
+ {
+ result += <library>/boost/chrono//boost_chrono ;
+ }
return $(result) ;
}
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