Boost C++ Libraries: Ticket #2976: The "rule init" for "Initialize stlport support" in the file tools\build\v2\tools\stlport.jam omits a colon after the word "headers" https://svn.boost.org/trac10/ticket/2976 <p> When I build boost with stlport, and user-config.jam have been configured as below lines: # Configure specifying location of both headers and libraries explicitly. using stlport : 5.2 : /root/STLport_5.2.1/stlport : /root/STLport_5.2.1/lib ; </p> <p> I encounter building error which bjam can't find libstlport.5.2.so. Then I found "rule init" for "Initialize stlport support" in the file tools\build\v2\tools\stlport.jam omits a colon after the word "headers": # Initialize stlport support. rule init ( </p> <blockquote> <p> version ? : headers # Location of header files libraries * # Location of libraries, lib and bin subdirs of STLport. ) </p> </blockquote> <p> After filled in the missing word, it can been built no error, finally! rule init ( </p> <blockquote> <p> version ? : headers : # Location of header files libraries * # Location of libraries, lib and bin subdirs of STLport. ) </p> </blockquote> <p> And the documentation, Boost.Build V2 User Manual, is consistent. </p> en-us Boost C++ Libraries /htdocs/site/boost.png https://svn.boost.org/trac10/ticket/2976 Trac 1.4.3 anonymous Wed, 29 Apr 2009 13:30:48 GMT attachment set https://svn.boost.org/trac10/ticket/2976 https://svn.boost.org/trac10/ticket/2976 <ul> <li><strong>attachment</strong> → <span class="trac-field-new">stlport.jam</span> </li> </ul> Ticket Vladimir Prus Sat, 16 May 2009 10:24:24 GMT status changed; resolution set https://svn.boost.org/trac10/ticket/2976#comment:1 https://svn.boost.org/trac10/ticket/2976#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/53042" title="Fix the prototype of stlport.init to match docs. Fixes #2976. ">[53042]</a>) Fix the prototype of stlport.init to match docs. </p> <p> Fixes <a class="closed ticket" href="https://svn.boost.org/trac10/ticket/2976" title="#2976: Bugs: The &#34;rule init&#34; for &#34;Initialize stlport support&#34; in the file ... (closed: fixed)">#2976</a>. </p> Ticket