On 8/16/06, Bo Peng <[EMAIL PROTECTED]> wrote:
> =================================================================== > --- src/frontends/qt2/QContentPane.h (revision 14695) > +++ src/frontends/qt2/QContentPane.h (working copy) > @@ -16,6 +16,8 @@ > #undef emit > #endif > > +#include <config.h> > + > > This should go to QContentPane.C, not .h >
It can not, and there is already a config.h in the .C file. The problem is with the generated _moc.cpp file, which uses some boost headers but does not have config.h. The compiled _moc.obj then need to link to the system boost file. (Our old BOOST_NO_ALL_LIB (?) friend.) Bo