Boost C++ Libraries: Ticket #7009: include move in posix_api.cpp for _SECURE_SCL with vc80 https://svn.boost.org/trac10/ticket/7009 <p> In my build environment I turn off _SECURE_SCL by adding some defines to visualc.hpp. </p> <p> The causes a small issue in posix_api.cpp where the includes are: </p> <pre class="wiki">#include &lt;cstdio&gt; #include &lt;boost/regex.hpp&gt; #include &lt;boost/cregex.hpp&gt; </pre><p> so I have to patch that to </p> <pre class="wiki">#include &lt;boost/regex.hpp&gt; #include &lt;boost/cregex.hpp&gt; #include &lt;cstdio&gt; </pre><p> such that the _SECURE_SCL definition is correct before any compiler headers are included. </p> <p> No big deal, but I thought I'd mention as it should be harmless change for everyone and would mean one less patch to maintain against upstream boost! </p> <p> Best regards </p> <p> Luke Elliott. </p> en-us Boost C++ Libraries /htdocs/site/boost.png https://svn.boost.org/trac10/ticket/7009 Trac 1.4.3 John Maddock Thu, 28 Jun 2012 10:53:45 GMT status changed; resolution set https://svn.boost.org/trac10/ticket/7009#comment:1 https://svn.boost.org/trac10/ticket/7009#comment:1 <ul> <li><strong>status</strong> <span class="trac-field-old">new</span> → <span class="trac-field-new">closed</span> </li> <li><strong>resolution</strong> → <span class="trac-field-new">fixed</span> </li> </ul> <p> (In <a class="changeset" href="https://svn.boost.org/trac10/changeset/79152" title="Make sure at least one Boost header (and therefore Boost.Config) ...">[79152]</a>) Make sure at least one Boost header (and therefore Boost.Config) precedes std lib headers so that defines in boost/config/user.hpp are seen by system headers. Fixes <a class="closed ticket" href="https://svn.boost.org/trac10/ticket/7009" title="#7009: Bugs: include move in posix_api.cpp for _SECURE_SCL with vc80 (closed: fixed)">#7009</a>. </p> Ticket