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 elewise.com)
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) ;
}
_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build
a>
|