PySide Bugzilla Closed for New Bugs

PySide is now a Qt Add-on and uses the Qt Project's JIRA Bug Tracker instead of this Bugzilla instance. This Bugzilla is left for reference purposes.

Bug 31 - Pyside-Tools compilation fails due to uncomplete search path
: Pyside-Tools compilation fails due to uncomplete search path
Status: CLOSED FIXED
Product: PySide
Classification: Unclassified
Component: PySide
: HEAD
: All Linux
: P5 major
Assigned To: Lauro Moura
:
:
:
  Show dependency treegraph
 
Reported: 2009-09-04 06:19 EEST by Didier Raboud
Modified: 2009-09-04 18:10 EEST (History)
6 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Didier Raboud 2009-09-04 06:19:53 EEST
Hi, 

while compiling pyside-tools from
http://www.pyside.org/files/pyside-tools-0.1.tar.bz2 :

$ cmake .
$ make
… … /pyside-tools-0.1/pyrcc/rcc.cpp:36:18: error: qdom.h: No such file.

The solution to this is the following patch to pyrcc/CMakeLists.txt :

==== PATCH START ====
--- pyrcc/CMakeLists.txt.old    2009-09-04 11:18:11.000000000 +0200
+++ pyrcc/CMakeLists.txt        2009-09-04 11:18:46.000000000 +0200
@@ -3,6 +3,7 @@
 include_directories(pyside-rcc4
                     ${QT_INCLUDE_DIR}
                     ${QT_QT_INCLUDE_DIR}
+                    ${QT_QTXML_INCLUDE_DIR}
                     ${QT_QTCORE_INCLUDE_DIR})

 target_link_libraries(pyside-rcc4
==== PATCH End ====

Best regards, 

OdyX