On Fri, 25 Jan 2013 00:34:14 +0100, mathias.b...@gmx.de wrote: > Hi, > > I'm getting errors running PyQt's configure.py. > Cause: > Starting in line 954, the file "sipconfig.py" of the sip module contains: > > if sys.platform == "win32" and "shared" in > self.config.qt_winconfig.split(): > if (mname in ("QtCore", "QtDeclarative", "QtDesigner", "QtGui", > "QtHelp", "QtMultimedia", "QtNetwork", > "QtOpenGL", > "QtScript", "QtScriptTools", "QtSql", "QtSvg", > "QtTest", "QtWebKit", "QtXml", "QtXmlPatterns", > "phonon") or > (qt_version >= 0x040200 and mname == "QtAssistant")): > lib = lib + "4" > > if sys.platform.startswith("linux") and qt_version >= 0x050000: > lib = "Qt5" + lib[2:] > > However, my Qt5 build created libraries named "Qt5Gui.lib" and so on, not > "QtGui4.lib". > If I replace > > lib = lib + "4" > > by > > lib = "Qt5" + lib[2:] > > I get the right library names, but then I get linker errors due to missing > symbols from the Qt5Widgets.lib, which the script seems to miss as > dependency. > > Best Regards, > Mathias Born
I haven't added support for Qt5 & Windows yet. (I can't even compile Qt5 on Windows at the moment.) Phil _______________________________________________ PyQt mailing list PyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt