Jim Bublitz wrote:
PyKDE version 3.11.3 ------- Python include directory is /usr/include/python2.2 Python version is 2.2.2 sip version is 3.10.2 (3.10.2) Qt directory is /usr/lib/qt-3.3 Qt version is 3.3.2 ^^^^^ ## I have qt-3.3.3 installed, if that makes any difference
I get that too - either we didn't rebuild PyQt or Qt reports its version wrong (sip, PyQt, and PyKDE all cache some config data now, but each "recomputes" its own data when built). However, I'm pretty sure I built PyQt after installing Qt 3.3.3, since the setup is on a clean partition. Shouldn't make a difference.
OK, it does turn out that my build of PyQT was against qt-3.3.2. Are you saying rebuilding it against qt-3.3.3 will fix this minor issue?
make[2]: Entering directory `/usr/local/tmp/BUILD/PyKDE-3.11.3/kdeui' g++ -c -Wno-deprecated-declarations -pipe -fPIC -O2 -w -D_REENTRANT -DQT_NO_DEBUG -DQT_THREAD_SUP PORT -I. -I../extra/kde330 -I/usr/include/kde -I/usr/include/python2.2 -I/usr/lib/qt-3.3/include -I/usr/X11R6/include -o kdeuipart0.o kdeuipart0.cpp In file included from sipkdecoreKConfigBackEnd.h:31, from sipkdecoreKConfig.h:31, from sipkdecoreKStandardDirs.h:31, from sipkdecoreKIconLoader.h:30, from sipkdecoreKMimeSourceFactory.h:30, from sipkdecoreKInstance.h:32, from sipkdeuiKActionCollection.h:31, from sipkdeuiKAction.h:32, from sip/kdeui/kxmlguifactory.sip:96, from sip/kdeui/kxmlguifactory.sip:27, from kdeuipart0.cpp:22: sip/kdecore/klockfile.sip:75:33: sipkdecoreKLockFile.h: No such file or directory
change line 75 to:
#include <../kdecore/sipkdecoreKLockFile.h>
Attached is the patch that works for me (when using sip-3.10.2)
-- Rex
--- PyKDE-3.11.3/sip/kdecore/klockfile.sip.sip3 2004-08-20 12:03:44.000000000 -0500 +++ PyKDE-3.11.3/sip/kdecore/klockfile.sip 2004-08-27 14:02:53.000000000 -0500 @@ -72,7 +72,7 @@ %TypeHeaderCode #include <ksharedptr.h> #include <klockfile.h> -#include <sipkdecoreKLockFile.h> +#include <../kdecore/sipkdecoreKLockFile.h> %End %ConvertFromTypeCode
_______________________________________________ PyKDE mailing list [EMAIL PROTECTED] http://mats.imk.fraunhofer.de/mailman/listinfo/pykde
