$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: David Deakins (ddeakins_at_[hidden])
Date: 2007-05-28 17:07:57
AlisdairM wrote:
> 
> All the text based wide-char dynamic library tests are failing as the
> two functions defined in codecvt_null.cpp are not found by the linkers.
> 
> I've had a quick play around with the jam files but still don't
> understand process/library well enough to find a fix (or even cause of
> the problem)
> 
It appears that the do_out and do_in functions in codecvt_null.cpp are 
not marked to be exported to the DLL (with the __declspec(dllexport) 
attribute).  I didn't look into how this came to be broken, but the 
attached patch seems to fix the problem on my machine.
-Dave