Hi! I found the problem - I have to use "-library=stlport4" because of the use of boost. But now there are some more problems:
1. Trailing commas in enums - this is part of C99, but not of C++ standard 2. src/support/debug.h: DEBUG is defined as DEBUG = (1 << 31) what is out of range for enum (32 bit) and I guess should be DEBUG = (1 << 30) as there is no 30, yet. 3. a forgotten static_cast in src/support/FileName.cpp Possibly more, but I cannot compile completely yet, because of a type error in qt4 itsself. I attached a patch of the things I found... Bye...Frank
lyx-1.6.5.diff
Description: Binary data