Hi Giles,
It’ll be nice if you could try to build with Qt4.3. The possible problem is that 3rdParty/qmake and 3rdParty/moc which are patched versions from Qt 4.2 might not compile but they might just as well do.
The problem is that you have both Qt3 and Qt4 installed in parallel. The first time you run
qmake-qt4 && make
only Makefile is created - that is the “parent” project which will then qmake && make the sub-projects. The problems is that Makefile do not use qmake-qt4. One option is to change you symlink in /usr/bin another option is to patch all calitko.pro and the pro files in 3rdParty and its subdirs adding the following line:
QMAKE_QMAKE = qmake-qt4
Then just in case remove all Makefiles (also in 3rdParty) and try qmake-qt4 && make again.
Hope that helps!
Regards,
Peter
