====== Compiling with Linux (Debian) ====== The latest sourcecode tarball from sourceforge (12.9.13) is outdated: http://sourceforge.net/projects/wpdev/files/latest/download * Adjustment in configure.py necessary to support python 2.7 * configure.py throws warning * does not compile: '';../src'' in include path seems to be a problem * seems to be a QT3 application. To compile with QT4 Qt3Support must be included * includes renamed: * qcstring.h -> q3cstring.h * qdict.h -> q3dict.h * qptrlist.h -> q3ptrlist.h * qsocketdevice.h -> q3socketdevice.h * qvaluelist.h -> q3valuelist.h * qvaluevector.h -> q3valuevector.h * ... stopped here The latest version here located at WebSVN is release 6894, version 12.9.16. Better get version 12.9.7: http://www.hoogi.de/wolfpack/wolfpack-12.9.17.tar.gz. Some work is done at Github in the moment: https://github.com/thooge/Wolfpack * ''git clone https://github.com/thooge/Wolfpack.git'' * go to build dir * ''configure2.py'' * ''make'' * See [[linux|Linux instructions]] ===== Client ===== apt-get install gdb ===== Tests regarding QT5 ===== apt-get install build-essential qt5-qmake qtbase5-dev qt5-default libpython2.7-dev export QTDIR=/usr/share/qt5 Compilation at the moment **not** successfull. More research must be done. Client apt-get install libqt5opengl-dev The handling of argc and argv changed. They must be accessed via ''arguments()'' and are of type ''QStringList''. Here is work to be done.