In response to j.spitzmueller's request:
http://bugzilla.lyx.org/show_bug.cgi?id=4014
------- Additional Comments From [EMAIL PROTECTED] 2007-09-20
11:32 -------
Can you send this to the devel list, please? I'm not very familiar
with this
pch stuff, so I cannot really judge whether you patch makes sense.
"pch stuff":
------- Additional Comments From [EMAIL PROTECTED] 2007-09-20
07:34 -------
Problem finally found to be due to boost/libs/regex/src precompiled
headers.
The problem no longer occurs when all lines of boost/libs/regex/src/
pch.h are commented out.
I could not identify any particular header file causing the problem.
The bug is only cured by commenting out ALL headers in boost/libs/
regex/src/pch.h.
gcc version:
i686-apple-darwin8-gcc-4.0.1 (GCC) 4.0.1 (Apple Computer, Inc. build
5363)
diff of my modified pch.h file:
Index: pch.h
===============================================================
--- pch.h (revision 20368)
+++ pch.h (working copy)
@@ -1,3 +1,6 @@
+/*
+Precompiled header compilation commented out RMCM 20Sep07
+to prevent View>PDF (pdflatex) failure (bug 4014)
#include <cctype>
#include <climits>
#include <clocale>
@@ -12,3 +15,4 @@
#include <ostream>
#include <set>
#include <stdexcept>
+*/
Roger