Your package fails to build with GCC 4.3. Version 4.3 has not been released yet but I'm building with a snapshot in order to find errors and give people an advance warning. GCC 4.3 has converted a number of warnings into errors. With GCC 4.3, you're no longer allowed to put spurious text after preprocessor directives, such as #else and #endif. See http://www.cyrius.com/journal/gcc/gcc-4.3-pedwarn.html
I just looked at the code and it contains things like: #ifdef QT_VERSION >= 0x030000 You want to use #if here. -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

