[Boost-bugs] [Boost C++ Libraries] #2976: The "rule init" for "Initialize stlport support" in the file tools\build\v2\tools\stlport.jam omits a colon after the word "headers"

Subject: [Boost-bugs] [Boost C++ Libraries] #2976: The "rule init" for "Initialize stlport support" in the file tools\build\v2\tools\stlport.jam omits a colon after the word "headers"
From: Boost C++ Libraries (noreply_at_[hidden])
Date: 2009-04-29 13:27:37


#2976: The "rule init" for "Initialize stlport support" in the file
tools\build\v2\tools\stlport.jam omits a colon after the word "headers"
---------------------------------+------------------------------------------
 Reporter: gestapo21th_at_[hidden] | Owner: aaron_windsor
     Type: Bugs | Status: new
Milestone: Boost 1.39.0 | Component: bjam
  Version: Boost 1.38.0 | Severity: Problem
 Keywords: bjam stlport |
---------------------------------+------------------------------------------
 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 ;

 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 (
     version ? :
     headers # Location of header files
     libraries * # Location of libraries, lib and bin subdirs of
 STLport.
     )

 After filled in the missing word, it can been built no error, finally!
 rule init (
     version ? :
     headers : # Location of header files
     libraries * # Location of libraries, lib and bin subdirs of
 STLport.
     )
 And the documentation, Boost.Build V2 User Manual, is consistent.

-- 
Ticket URL: <https://svn.boost.org/trac/boost/ticket/2976>
Boost C++ Libraries <http://www.boost.org/>
Boost provides free peer-reviewed portable C++ source libraries.

This archive was generated by hypermail 2.1.7 : 2017-02-16 18:50:00 UTC