Update of /cvsroot/boost/boost/libs/wave/build
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv26421/libs/wave/build

Modified Files:
        Jamfile.v2 
Log Message:
Turn off rtti, for vc-7.1, only for the compile of the source files not for the 
complete library.

Index: Jamfile.v2
===================================================================
RCS file: /cvsroot/boost/boost/libs/wave/build/Jamfile.v2,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- Jamfile.v2  2 May 2006 15:15:09 -0000       1.11
+++ Jamfile.v2  2 Jul 2006 17:14:21 -0000       1.12
@@ -30,14 +30,21 @@
 
 lib boost_wave
     :
-    $(SOURCES).cpp
+    $(SOURCES)
     /boost/filesystem//boost_filesystem
-    :
-    <toolset-msvc:version>7.1:<rtti>off   # workaround for compiler bug
-    # Not supported by V2
-    # <no-warn>cpp_re.cpp
     ;
 
+for local source in $(SOURCES)
+{
+    local requirements ;
+    requirements += <toolset-msvc:version>7.1:<rtti>off ; # workaround for 
compiler bug
+    if $(source) in cpplexer/re2clex/cpp_re
+    {
+        requirements += <warnings>off ;
+    }
+    obj $(source) : $(source).cpp : $(requirements) ;
+}
+
 install dist-lib
     :
     boost_wave


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
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to