>>>>> "Helm" == Helm Bennett <[EMAIL PROTECTED]> writes:
Helm> On Aug 5, 2005, at 5:46 AM, Jean-Marc Lasgouttes wrote: >>>>>>> "Helm" == Helm Bennett <[EMAIL PROTECTED]> writes: >>>>>>> >> Helm> __ZN11TextPainter4drawEiic Helm> __ZN11TextPainter14horizontalLineEiiic Helm> __ZN11TextPainter12verticalLineEiiic >> These are interesting because they lie in very straightforward >> code. The only difference I can find between the 1.3.x and 1.3.x >> version of this code is that textpainter.C has #include <config.h> >> as first thing in HEAD, whereas the 1.3.x branch does not. >> >> Could you check whether it makes a difference? >> >> Does anyone have an idea a thing as simple as TextPainter could >> fail? Helm> I added "#include <config.h>" to textpainter.C, and it does make Helm> a difference. I now get: [no TextPainter anymore] Very good! It means that we should add #include <config.h> in all files that do not have it already. That would be something like fantomas[ssh]: for i in *.C */*.C */*/*.C ; do grep -q "include <config.h>" $i || echo $i ; done mathed/command_inset.C mathed/math_diffinset.C mathed/math_diminset.C mathed/math_fracbase.C mathed/math_fracinset.C mathed/math_gridinset.C mathed/math_inferinset.C mathed/math_lefteqninset.C mathed/math_liminset.C mathed/math_macroarg.C mathed/math_macro.C mathed/math_macrotemplate.C mathed/math_matrixinset.C mathed/math_nestinset.C mathed/math_parboxinset.C mathed/math_pos.C mathed/math_rootinset.C mathed/math_scriptinset.C mathed/math_spaceinset.C mathed/math_splitinset.C mathed/math_sqrtinset.C mathed/math_stackrelinset.C mathed/math_textinset.C mathed/math_undersetinset.C mathed/textpainter.C frontends/controllers/ControlTabular.C frontends/qt2/bulletstrings.C frontends/qt2/qcoloritem.C frontends/qt2/qfontexample.C frontends/qt2/qgridview.C frontends/qt2/qsetborder.C Looking at the list, I would start with frontends/controllers/ControlTabular.C. This is the most likely cause of boost calls. JMarc
