Update of /cvsroot/boost/boost
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv19927
Modified Files:
Jamfile.v2
Log Message:
Build shared/static runtime variants on NT, like V1 does
Index: Jamfile.v2
===================================================================
RCS file: /cvsroot/boost/boost/Jamfile.v2,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -d -r1.43 -r1.44
--- Jamfile.v2 28 Oct 2006 15:22:17 -0000 1.43
+++ Jamfile.v2 28 Oct 2006 18:40:39 -0000 1.44
@@ -107,6 +107,7 @@
import package ;
import path ;
import common ;
+import os ;
constant BOOST_VERSION : 1.35.0 ;
@@ -125,9 +126,13 @@
debug release
<threading>single <threading>multi
<link>shared <link>static
- # <runtime-link>shared <runtime-link>static
<runtime-debugging>off
;
+
+ if [ os.name ] = NT
+ {
+ default-build += <runtime-link>shared <runtime-link>static ;
+ }
}
else
{
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
|