Boost logo

Boost-Build :

From: Alex Besogonov (cyberax_at_[hidden])
Date: 2006-07-31 06:30:27


Bojan Resnik wrote:
> This works fine, with the exception that expat library is misspelled as epxat.
Thanks, fixed.

> However, if I try to put the version explicitly, like
> using wxWidgets : E:/wx : 2.6 ;
> it doesn't work anymore (complains about not being able to find wxbaseud.lib).
Fixed. Please, try the attached patches.

-- 
With respect,
             Alex Besogonov (cyberax_at_[hidden])

Index: wxWidgets-win.jam
===================================================================
--- wxWidgets-win.jam (revision 933)
+++ wxWidgets-win.jam (working copy)
@@ -157,6 +157,9 @@
             {
                     $(res).set version : [ modules.peek wxWidgets : WX_VERSION_DEFAULT ] ;
                     $(res).set version-flat : [ wxWidgets-common.flatten-version [ $(res).get version ] ] ;
+ } else
+ {
+ $(res).set version-flat : [ wxWidgets-common.flatten-version [ $(res).get version ] ] ;
             }
             return $(res) ;
     }

Index: wxWidgets-posix.jam
===================================================================
--- wxWidgets-posix.jam (revision 933)
+++ wxWidgets-posix.jam (working copy)
@@ -58,7 +58,11 @@
             {
                     $(res).set version : [ modules.peek wxWidgets : WX_VERSION_DEFAULT ] ;
                     $(res).set version-flat : [ wxWidgets-common.flatten-version [ $(res).get version ] ] ;
+ } else
+ {
+ $(res).set version-flat : [ wxWidgets-common.flatten-version [ $(res).get version ] ] ;
             }
+
             return $(res) ;
     }
 


Boost-Build list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk