On Tuesday 18 January 2005 22:22, [EMAIL PROTECTED] wrote: > Xandros 3.0 is a Debian/sarge based distribution with KDE 3.3. > The 3.11.3-xandros3.1 designation is my own, and is temporary until I can > get it to compile. > > It seems to be horking in building kdeui looking for 'qlist.h'. > sip/kdeui/klistview.sip:253:19: qlist.h: No such file or directory > In file included from sipkdeuipart0.cpp:5821: > sipkdeuipart0.h:43:19: qlist.h: No such file or directory > sipkdeuipart0.cpp:76158: internal compiler error: Segmentation fault
Yep - apparently you don't have qlist.h. Here it is: #ifndef QLIST_H #define QLIST_H #ifndef QT_NO_COMPAT #include "qptrlist.h" #endif #endif You can add that to the Qt include path, or you can change the references in the following files from qlist.h to qptrlist.h: PyKDE-snapshot20050104/sip/kdeui/klistview.sip PyKDE-snapshot20050104/sip/kfile/kfilebookmark.sip PyKDE-snapshot20050104/sip/kfile/kfileviewitem.sip PyKDE-snapshot20050104/sip/khtml/khtmlview.sip That's an artifact from Qt2/KDE2 support which I should probably change. Jim _______________________________________________ PyKDE mailing list [email protected] http://mats.imk.fraunhofer.de/mailman/listinfo/pykde
