While I wait for the next snapshot, I have tried compiling against python2.5, and the compile proceeds. However, I did run into an issue with lucene, like mentioned in this post:
http://article.gmane.org/gmane.comp.python.pyqt-pykde/12047 I had the same issue compiling pyqt4.4, so I decided to chase it up this time. I use osx 10.4 and so I need to pass a command to the sip compile specifying /developer/sdks/macosx10.4u.. when configuring in order to get universal binaries. This results in an arg being passed to gcc telling it that the library root is that directory, and so the lucene libs which are installed in /usr/lib are not found. I worked around the problem by copying the libs from /usr/lib into /developer/sdks/macosx10.4u.sdk/usr/lib On Wed, Mar 11, 2009 at 5:55 PM, Phil Thompson <[email protected]> wrote: > On Tue, 10 Mar 2009 19:20:36 -0400, Matt Smith <[email protected]> > wrote: >> I wonder what you mean by "crash" I had a similar problem passing a >> QMouseEvent, when I upgraded I needed to use &QMouseEvent with the >> ampersand. When it didn't work I would get the last event, so sometimes >> I would get a QTimer instead of a mouse event, but once I put the '&' in >> it worked ok. >> >> mbs > > It's the same bug but your workaround is wrong. It will be fixed in > tonight's (PyQt) snapshot. > > Phil > >>>I'm finding that executing the following code in an abstracttablemodel >>>results in a crash: >> >>> self.emit(SIGNAL("dataChanged(QModelIndex, >>>QModelIndex)"), index, index) >> >>>.. where index is taken from tableView.currentIndex() >> >>>This code ran fine in PyQt4.4. Is it a bug in Qt/PyQt, or am I doing >>>something wrong? >> >> >> _______________________________________________ >> PyQt mailing list [email protected] >> http://www.riverbankcomputing.com/mailman/listinfo/pyqt >> > _______________________________________________ > PyQt mailing list [email protected] > http://www.riverbankcomputing.com/mailman/listinfo/pyqt > _______________________________________________ PyQt mailing list [email protected] http://www.riverbankcomputing.com/mailman/listinfo/pyqt
