entweder tab fehler oder du hast in deinem client source in PythonApplicationModule den part vergessen.
Suche nach:
Code:
#ifdef ENABLE_COSTUME_SYSTEM
PyModule_AddIntConstant(poModule, "ENABLE_COSTUME_SYSTEM", 1);
#else
PyModule_AddIntConstant(poModule, "ENABLE_COSTUME_SYSTEM", 0);
#endif
und dadrunter fügst du
Code:
#ifdef ENABLE_SASH_SYSTEM
PyModule_AddIntConstant(poModule, "ENABLE_SASH_SYSTEM", 1);
#else
PyModule_AddIntConstant(poModule, "ENABLE_SASH_SYSTEM", 0);
#endif