<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel about="http://blog.gmane.org/gmane.comp.lib.boost.build">
    <title>gmane.comp.lib.boost.build</title>
    <link>http://blog.gmane.org/gmane.comp.lib.boost.build</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.boost.build/19828"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.boost.build/19827"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.boost.build/19826"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.boost.build/19821"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.boost.build/19815"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.boost.build/19804"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.boost.build/19797"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.boost.build/19795"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.boost.build/19794"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.boost.build/19789"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.boost.build/19788"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.boost.build/19785"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.boost.build/19783"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.boost.build/19758"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.boost.build/19755"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.boost.build/19754"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.boost.build/19751"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.boost.build/19742"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.boost.build/19737"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.boost.build/19736"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.boost.build/19828">
    <title>Capture external program output using a Boost.Jamvariable</title>
    <link>http://comments.gmane.org/gmane.comp.lib.boost.build/19828</link>
    <description>Hello,

here's what I'm trying to do:

gcc /DGR_BUILD_TIME=1228135248 ...

GR_BUILD_TIME is the output of date +%s. I read the manual and tried this:

local GR_BUILD_TIME = [ SHELL "date +%s" ] ;

# project settings ###################################################
project
    : requirements
      &lt;include&gt;.

      # GCC settings

      &lt;define&gt;GR_BUILD_TIME=$(GR_BUILD_TIME)
.
.
.

Now, GR_BUILD_TIME is passed to gcc but it contains a trailing newline,
which causes
the compile to fail like this:

georog-dev:/home/daniel/projects/trunk/GeoROG&gt; bjam toolset=gcc-4.1.1 -q
...patience...
...patience...
...found 4676 targets...
...updating 4 targets...
gcc.compile.c++ bin/gcc-4.1.1/debug/GCore.o
g++: no input files
/bin/sh: -Ibin/gcc-4.1.1/debug: not found

    "g++"  -ftemplate-depth-128 -O0 -fno-inline -Wall -g -fPIC -Winvalid-pch
-DBOOST_BUILD_PCH_ENABLED -DGR_BUILD_TIME=1228135248
 -I"bin/gcc-4.1.1/debug" -I"." -I"../GFL" -I"../SBGFLTK/include"
-I"/home/daniel/projects/Vendor/Boost/include/boost-1_37"
-I"/us</description>
    <dc:creator>Daniel Lidström</dc:creator>
    <dc:date>2008-12-01T12:49:20</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.boost.build/19827">
    <title>Dependent install targets</title>
    <link>http://comments.gmane.org/gmane.comp.lib.boost.build/19827</link>
    <description>Hi,

assuming I've got an install target (installing executables) inside the 
fictive project A's Jamroot:

I'd like to declare an install target inside a dependent project B, which 
installs the contents of project A's install target alongside with the local 
installation contents.

Example:

- Project A installs a.exe to e.g. /projA/bin/a.exe
- Project B installs b.exe to e.g. /projB/bin/b.exe
- The latter should also include project A's a.exe target installation to 
/projB/bin/a.exe

Is there a way of doing this by simply referring to a single target defined 
within project A?

I guess it would be possible to explicitly refer to specific targets from 
project B, e.g. "/projA/src/a/Jamfile//a", but I'd like project A to define 
what dependent projects gets to install.

TIA / Johan


_______________________________________________
Unsubscribe &amp; other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build

</description>
    <dc:creator>Johan Nilsson</dc:creator>
    <dc:date>2008-12-01T09:07:27</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.boost.build/19826">
    <title>Symlinks to generated by tao_idl sources</title>
    <link>http://comments.gmane.org/gmane.comp.lib.boost.build/19826</link>
    <description>Hi there!

I'm trying to let the BBv2 create symlinks to generated stubs and
skeletons into the source folder, but unsuccessfully yet. This is
needed to simplify code browsing and assistance in vim or Eclipse.

Let's start from the following tao.idl:

############## Begin of tao.idl ###########
import generators ;
import type ;
import feature : feature ;
import toolset : flags ;

type.register IDL : idl ;
type.register INL : inl : H ;
type.register SYM_LINK ;

feature &lt;symlink-sources&gt; : : free path ;

generators.register-standard tao.tao-idl : IDL : CPP(%S) H(%S) CPP(%C)
H(%C) INL(%S) INL(%C) ;

flags tao.tao-idl SYMLINK_SOURCES &lt;symlink-sources&gt; ;

rule tao-idl ( dstS dstS_h dstC dstC_h inlS inlC : src : properties * )
{
    INCLUDES $(dstS) : $(dstS_h) ;
    INCLUDES $(dstC) : $(dstC_h) ;
}

actions tao-idl
{
    tao_idl -o $(&lt;[1]:D) $(&gt;)
    symlink=$(SYMLINK_SOURCES)
    if [ "$symlink" ]; then
        for i in "$(&lt;[1]:D)"/*.{cpp,h,inl}; do
            ln -sf "$i" $symlink/`basename "$i"`
        done
 </description>
    <dc:creator>Anatoli Sakhnik</dc:creator>
    <dc:date>2008-12-01T08:50:39</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.boost.build/19821">
    <title>alias rule not propagating requirements?</title>
    <link>http://comments.gmane.org/gmane.comp.lib.boost.build/19821</link>
    <description>I'm trying to create an alias rule that will override/set certain pdf 
generation properties, for example:

alias type_traits : $(boost-root)/libs/type_traits/doc//standalone : 
$(COMMON_PDF_SETTINGS) ;

But $(COMMON_PDF_SETTINGS) don't get passed down to the pdf build.  Same 
result if I spell out the settings explicitly:

alias type_traits : $(boost-root)/libs/type_traits/doc//standalone : 
&lt;xsl:param&gt;body.start.indent=0pt ;

Any ideas on this?

Also, I would like if possible to be able to control the file name under 
which a pdf gets installed: I can use the "install" rule to copy the pdf to 
a location of my choice, but the resulting file name isn't always quite what 
I would like... is there any kind of rename-rule I can use?

Many thanks, John. 

_______________________________________________
Unsubscribe &amp; other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build

</description>
    <dc:creator>John Maddock</dc:creator>
    <dc:date>2008-11-30T12:18:37</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.boost.build/19815">
    <title>Problem with notfile target</title>
    <link>http://comments.gmane.org/gmane.comp.lib.boost.build/19815</link>
    <description>I am new to bjam, and I'm sure that the problem I'm having is a simple  
thing, but I can't figure out what I'm doing wrong.  I'm using bjam  
3.1.16 (the pre-built binary) on MacOS 10.5.5.

I am trying to build a C++ library that uses JNI to communicate with a  
Java program.  This means that before I build the C++ code I must  
first build some Java code and then run the javah tool to generate  
some C header files that are included by my C++ code.  I have  
implemented an ant build script to do the javac and javah steps, and I  
want to call that from my jam file.  Here is my jam file:

import notfile ;

project /KB/KbCore ;

lib Parliament
:[ glob *.cpp : Utf8StaticInitGen.cpp ]
/site-config//BerkeleyDB
/site-config//JavaJNI
JniHeaders
:&lt;include&gt;.
&lt;define&gt;BUILDING_KBCORE
&lt;define&gt;PARLIAMENT_RSRC_AS_UTF16
&lt;define&gt;_REENTRANT
&lt;threading&gt;multi
:# default build
:&lt;include&gt;. ;

notfile JniHeaders : &lt; at &gt;BuildJniHeaders ;
actions BuildJniHeaders
{
ant jniHeaders
}

If I comment out the source d</description>
    <dc:creator>Ian Emmons</dc:creator>
    <dc:date>2008-11-29T03:59:47</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.boost.build/19804">
    <title>MSVC C4506 warning not suppressed by jamfile</title>
    <link>http://comments.gmane.org/gmane.comp.lib.boost.build/19804</link>
    <description>Feeling anally retentive today ;-)

I am trying to silence this warning.

As it is in MS code, there isn't much we can do about it - and I've no
reason suppose it is a meaningful warning.

For example (there are others) I find it running
boost_1_37_0\libs\algorithm\string\test

usinstances.cpp
C:\Program Files\Microsoft Visual Studio 9.0\VC\INCLUDE\xstring(239) :
warning C4506: no definition
for inline function 'size_t std::char_traits&lt;_Elem&gt;::length(const _Elem *)'
        with
        [
            _Elem=unsigned short
        ]

In my jamfile.v2 project requirements I have added

       &lt;toolset&gt;msvc:&lt;cxxflags&gt;/wd4506 # NO definition for inline function
in MS Xstring).

But this does not silence it :-((

(I've also had trouble silencing some C4996 - unsafe checked iterators
warning - this might have a common cause).

Suggestions?  Thanks

Paul
---
Paul A. Bristow
Prizet Farmhouse
Kendal, UK   LA8 8AB
+44 1539 561830, mobile +44 7714330204
pbristow&lt; at &gt;hetp.u-net.com







____________________________________</description>
    <dc:creator>Paul A. Bristow</dc:creator>
    <dc:date>2008-11-26T16:07:59</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.boost.build/19797">
    <title>bjam --layout option WinXP VC7</title>
    <link>http://comments.gmane.org/gmane.comp.lib.boost.build/19797</link>
    <description>I know this has been discussed before, but I cannot seem to find the 
relevant post. I am building boost 1.37 with this command line:

bjam toolset=msvc-7.1 threading=multi 
link=static --build-type=complete --layout=versioned --without-python 
stage --without-mpi

I expected this command to build the versioned lib files but the output 
folder also contains the unversioned lib files. Is there another option I 
should be using.

Thanks,
Dick
 


_______________________________________________
Unsubscribe &amp; other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build

</description>
    <dc:creator>Dick Wood</dc:creator>
    <dc:date>2008-11-25T14:29:11</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.boost.build/19795">
    <title>Building boost on Windows Vista with gcc</title>
    <link>http://comments.gmane.org/gmane.comp.lib.boost.build/19795</link>
    <description>Hi, I'm new to the lists so I'm not certain if this has been covered
before (but I did search and didn't find anything that seemed
relevant).

I want to use Boost with Eclipse (Ganymede), using the MinGW toolchain
(all versions are latest builds).  Following the "getting started"
instructions I have run:

 bjam --build-dir="c:\tmp" --toolset=gcc --build-type stage

This has now been running for over 13 hours and has consumed over 13GB
of hard disk space - is that right?  My first thought was to check the
MD5 of the downloaded boost_1_37_0.7z in case of corruption but I
can't see anything on the (SourceForge) download site that would allow
this.

I've tried looking through the documentation but I can't find (or have
missed) the typical footprint of a boost installation.  13GB does seem
a tad excessive though.

Any advice on whether this is normal behaviour, and if not what the
cause may be will be gratefully received!

Thanks,

Iain Cunningham
_______________________________________________
Unsubscribe &amp; othe</description>
    <dc:creator>Iain Cunningham</dc:creator>
    <dc:date>2008-11-25T11:14:07</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.boost.build/19794">
    <title>Suppress "weak external" exports from Mac OS Xexecutables?</title>
    <link>http://comments.gmane.org/gmane.comp.lib.boost.build/19794</link>
    <description>Hi all,

We're using boost static libraries in our projects. We've noticed that  
there are tons of symbol exports in our Mac OS X executables, even  
after stripping. Here's an excerpt from an "nm -m" command:

--snip--
00008330 (__TEXT,__text) weak external  
__ZN5boost10filesystem10basic_pathISsNS0_11path_traitsEEdVEPKc
0000c240 (__TEXT,__text) weak external  
__ZN5boost10filesystem22basic_filesystem_errorINS0_10basic_pathISsNS0_11path_traitsEEEEC2ERKSsRKS4_NS_6system10error_codeE
00009d80 (__TEXT,__text) weak external  
__ZN5boost10filesystem22basic_filesystem_errorINS0_10basic_pathISsNS0_11path_traitsEEEED0Ev
00009ef0 (__TEXT,__text) weak external  
__ZN5boost10filesystem22basic_filesystem_errorINS0_10basic_pathISsNS0_11path_traitsEEEED1Ev
0000b340 (__TEXT,__text) weak external  
__ZN5boost15throw_exceptionINS_10filesystem22basic_filesystem_errorINS1_10basic_pathISsNS1_11path_traitsEEEEEEEvRKT_
00008540 (__TEXT,__text) weak external  
__ZN5boost16exception_detail10clone_baseD0Ev
--snip--

Note that thes</description>
    <dc:creator>Allen Cronce</dc:creator>
    <dc:date>2008-11-25T02:51:06</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.boost.build/19789">
    <title>Changes to template-depth in qcc.jam not working fully</title>
    <link>http://comments.gmane.org/gmane.comp.lib.boost.build/19789</link>
    <description>The accumulators/test/weighted_tail_variate_means test fails with "template 
instantiation depth exceeds maximum of 100" when running regression tests 
with the qcc toolset. I've tried to increase the depth by editing 
tools/build/v2/tools/qcc.jam so that it's like gcc.jam which has a default 
depth of 128 but the compiler is still called with -Wc,-ftemplate-depth-100.

My changes have effect when I run bjam directly in the 
libs/accumulators/test directory, but not when I run regression tests. I 
have to add --bjam-options="c++-template-depth=128" to the command line to 
make it work.

</description>
    <dc:creator>Niklas Angare</dc:creator>
    <dc:date>2008-11-24T00:08:28</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.boost.build/19788">
    <title>Bjam release, real soon now...</title>
    <link>http://comments.gmane.org/gmane.comp.lib.boost.build/19788</link>
    <description>I just finished clearing out all the pending bugs for bjam that where in 
trac. And I put the finishing touches on various aspects of getting a 
bjam 3.1.17 released. But since there where some crucial changes to fix 
the bugs I'm reticent to release immediately (and truth is I ran out of 
time this weekend).

So consider this an early warning for the bjam release. I wont get back 
to doing the release until Thursday, or more likely Friday. So please 
give the latest bjam a test drive as best you can and report any 
problems (as bugs in trac).


</description>
    <dc:creator>Rene Rivera</dc:creator>
    <dc:date>2008-11-24T04:44:32</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.boost.build/19785">
    <title>Error generating .obj from .rc files using intel-win</title>
    <link>http://comments.gmane.org/gmane.comp.lib.boost.build/19785</link>
    <description>Hi,

I'm surprised no one stated a comment on this issue so far 'cause the 
used compiler belongs to Boost's additional test compilers. I post this 
again 'cause it's not listed in the gmane searchable archives.

# Jamfile
obj res : ABQPP.rc ;

built with bjam -q -d2 toolset=intel res gave me:

Error: ambiguity found when searching for best transformation
Trying to produce type 'OBJ' from:

  -  { ABQPP.rc.RC }
Generators that succeeded:
  -  rc.compile.resource
  -  intel-win.compile.rc
First generator produced:
  -  { rc%rc.compile.resource-res_res.obj.OBJ { ABQPP.rc.RC } }
Second generator produced:

  -  { intel-win%intel-win.compile.rc-res_res.obj.OBJ { ABQPP.rc.RC } }

I also tried
obj res : ABQPP.rc : : &lt;toolset&gt;msvc : ;
to set the default build option but it didn't work too and resulted in 
the same error message.

Used tools:
Boost.Build V2 (Milestone 12)
Boost.Jam 03.1.16
WIndows XP
MS Visual Studio 2005
Intel C++ 10.1.025

Any hints how to solve this issue?

Many thanks,
Jan.

____________________</description>
    <dc:creator>Jan Boehme</dc:creator>
    <dc:date>2008-11-23T14:00:00</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.boost.build/19783">
    <title>--jobs and options in user-config.jam</title>
    <link>http://comments.gmane.org/gmane.comp.lib.boost.build/19783</link>
    <description>
I've committed a change that allows to do this in user-config.jam:

option jobs : 4 ;

and see Boost.Jam actually use 4 jobs. The commit is:

https://svn.boost.org/trac/boost/changeset/49869

Comments appreciated.

In future, I'll add support for specifying some other interesting
options, most notably --build-dir -- those it makes most sense
for project-config.jam, not user-config.jam.

- Volodya

</description>
    <dc:creator>Vladimir Prus</dc:creator>
    <dc:date>2008-11-22T10:14:29</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.boost.build/19758">
    <title>Boost 1.37 will not build for me on Windows</title>
    <link>http://comments.gmane.org/gmane.comp.lib.boost.build/19758</link>
    <description>_______________________________________________
Unsubscribe &amp; other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build
</description>
    <dc:creator>Larry E. Ramey</dc:creator>
    <dc:date>2008-11-20T17:25:10</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.boost.build/19755">
    <title>[1.37][VC8.0] Building Filesystem Library</title>
    <link>http://comments.gmane.org/gmane.comp.lib.boost.build/19755</link>
    <description>_______________________________________________
Unsubscribe &amp; other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build
</description>
    <dc:creator>df.trash</dc:creator>
    <dc:date>2008-11-20T15:21:20</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.boost.build/19754">
    <title>How to build an external library using a makefile.</title>
    <link>http://comments.gmane.org/gmane.comp.lib.boost.build/19754</link>
    <description>I am still very new to boost build, so this question is probably
rather trivial. I have a project using a boost.build Jamfile. My
project needs to use a 3rd party library. From the documentation I
found that I could use a standard lib target declaration, with a
&lt;file&gt; statement:


lib mythirdpartylib : : &lt;file&gt;third-party-lib.a ;

This works fine as long as that library has already been built, but
this library is available in source form, with a gnu makefile. I would
really like to run that makefile to build the library when needed. I
looked at some of the documentation on custom make rules, and came up
with a naive solution along the lines of:


make third-party-lib.flag : : &lt; at &gt;makelib ;
actions makelib
{
    ( cd $(LIBPATH) &amp;&amp; make )
    touch $(&lt;)
}

lib mythirdpartylib : third-party-lib.flag : &lt;file&gt;third-party-lib.a ;



Unfortunately, the mythirdpartylib target fails because
'third-party-lib.a' does not exist. (It won't exist until after the
'makelib' action was run). It appears that the my
"third-party-</description>
    <dc:creator>Alex Richardson</dc:creator>
    <dc:date>2008-11-20T15:34:51</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.boost.build/19751">
    <title>building with gcc-4.3.2 on cygwin</title>
    <link>http://comments.gmane.org/gmane.comp.lib.boost.build/19751</link>
    <description>_______________________________________________
Unsubscribe &amp; other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build
</description>
    <dc:creator>vicente.botet</dc:creator>
    <dc:date>2008-11-20T14:03:49</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.boost.build/19742">
    <title>Boost.Build causing failures on the release branch(and Trunk too)</title>
    <link>http://comments.gmane.org/gmane.comp.lib.boost.build/19742</link>
    <description>There seem to be a lot of failures on the release branch caused by some 
libraries not being found, so for example on acc:

http://tinyurl.com/6r76o5

or on Darwin:

http://tinyurl.com/6dyezn

The library not being found is part of the project requirements BTW in case 
that helps,

Regards, John. 

_______________________________________________
Unsubscribe &amp; other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build

</description>
    <dc:creator>John Maddock</dc:creator>
    <dc:date>2008-11-19T17:11:03</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.boost.build/19737">
    <title>darwin DYLD_LIBRARY_PATHn environment variable problem</title>
    <link>http://comments.gmane.org/gmane.comp.lib.boost.build/19737</link>
    <description>Hi,

It seems that a recent change to the build system resulted in  
failures of this sort, when running tests on OSX (either darwin or  
intel-darwin).

testing.capture-output ../bin.v2/libs/mesh/test/test_hfds.test/ 
darwin-4.0.1/debug/test_hfds.run

     DYLD_LIBRARY_PATH=/Users/kbelco/boost/bin.v2/libs/mesh/build/ 
darwin-4.0.1/debug:$DYLD_LIBRARY_PATHnexport DYLD_LIBRARY_PATHn

...

/bin/sh: line 2: DYLD_LIBRARY_PATHn: command not found
====== BEGIN OUTPUT ======
dyld: Library not loaded: libboost_mesh-xgcc40-d-1_38.dylib
   Referenced from: /Users/kbelco/boost/status/../bin.v2/libs/mesh/ 
test/test_hfds.test/darwin-4.0.1/debug/test_hfds
   Reason: image not found

There is an extra 'n' showing up in the environment variable name.   
Anyone know where this is coming from?  It rather looks like an end  
of line character that is mis-interpreted on the Mac.

</description>
    <dc:creator>K.Noel Belcourt</dc:creator>
    <dc:date>2008-11-18T19:44:38</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.boost.build/19736">
    <title>Programmatic Job Count</title>
    <link>http://comments.gmane.org/gmane.comp.lib.boost.build/19736</link>
    <description>Is there any way to tell Boost how many jobs to run in parallel from  
within a Jamfile, a programmatic equivalent to '-j N'?

</description>
    <dc:creator>Brad Howes</dc:creator>
    <dc:date>2008-11-18T18:04:38</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.boost.build/19735">
    <title>[intel] Generating .obj from .rc files</title>
    <link>http://comments.gmane.org/gmane.comp.lib.boost.build/19735</link>
    <description>_______________________________________________
Unsubscribe &amp; other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build
</description>
    <dc:creator>Jan Boehme</dc:creator>
    <dc:date>2008-11-18T12:30:08</dc:date>
  </item>
  <textinput about="http://search.gmane.org/?group=$group=gmane.comp.lib.boost.build">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.lib.boost.build</link>
  </textinput>
</rdf:RDF>
