===================================================================
--- 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
I see.
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?
So are we going to use MAX_PATH everywhere? Or just for windows?
I actually also have a question about:
#define BOOST_NO_WREGEX 1
which causes problem for msvc. I now remove it for linux, and lyx
compiles fine. Why do we define it in the first place?
Bo