On Sep 4, 2012, at 4:10 AM, glenalec wrote: > Well, the Ubuntu compile seems to work - first run got it to the > black-window-of-emptiness, which is the expected behavior without any actual > world data. > Plugging in my test world from my Windows install, everything came up on the > graphical server window nicely!
Great :) > Not so good at home on Debian. First run compiled, but the binary segfaulted. > Subsequent runs failed compile with: > In file included from /usr/include/python3.2mu/Python.h:67:0, The Tundra Python module is not currently written nor adapted to Python 3, which is API incompatible with 2. > from > /scratch/naali-deps/install/include/PythonQtInstanceWrapper.h:45, > > from /scratch/naali-deps/install/include/PythonQt.h:46, > Same is true for the PythonQt library (although I haven't searched if someone has ported it to 3). Python 2.6 and 2.7 (last in the 2 series, has gotten many backports from 3) are known to work. Also the whole Python module in Tundra is optional, you only need it if you need it :) (if you want to integrate to some authentication system / web backend or so in py, or use user databases from py otherwise, or use the (old) py written websockets server, or some py AI lib for your game/app etc). You can comment it out in the build script for the deps part, and then in CMakeLists.txt for the Tundra build itself. ~Toni > from > /scratch/naali/src/Application/PythonScriptModule/StableHeaders.h:10, > > from > /scratch/naali/src/Application/PythonScriptModule/StableHeaders.cpp:3: > > /usr/include/python3.2mu/object.h:402:18: error: expected unqualified-id > before ‘;’ token > > make[2]: *** > [src/Application/PythonScriptModule/CMakeFiles/PythonScriptModule.dir/StableHeaders.o] > Error 1 > > > > and a bunch of related fails around the same error. I am assuming this is an > issue with Debian's current python3.2 source code, rather than with anything > in ReX. > > -- > http://groups.google.com/group/realxtend > http://www.realxtend.org -- http://groups.google.com/group/realxtend http://www.realxtend.org
