>>>>> "Bo" == Bo Peng <[EMAIL PROTECTED]> writes:
Bo> On 8/15/06, Bo Peng <[EMAIL PROTECTED]> wrote: >> > I'm using the boost included with LyX 1.4svn. Does 1.4 support >> boost 1.33.1? >> >> generated for trunk before and I will see if that patch more or >> less works for the branch. Bo> Hi, JMarc, Bo> Attached patch is required to compile lyx1.4.x with msvc/scons. Bo> Can I apply? The source code changes are identical to what we have Bo> done to the trunk. I will also update INSTALL.scons later. OK, let's see... Everything is OK, except the following: Index: src/frontends/qt2/QContentPane.h =================================================================== --- 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 Index: src/support/package.C.in =================================================================== --- src/support/package.C.in (revision 14695) +++ src/support/package.C.in (working copy) @@ -44,6 +44,10 @@ # include <CoreServices/CoreServices.h> // FSFindFolder, FSRefMakePath #endif +#ifndef PATH_MAX +# define PATH_MAX 512 +#endif Why 512 here and 256 in 1.5? JMarc
