Show if python is compiled in or not.

This commit is contained in:
Themaister 2011-06-06 20:21:26 +02:00
parent 884e2881a0
commit f62120861a
2 changed files with 7 additions and 0 deletions

View File

@ -128,4 +128,10 @@ static const bool _netplay_supp = true;
static const bool _netplay_supp = false;
#endif
#ifdef HAVE_PYTHON
static const bool _python_supp = true;
#else
static const bool _python_supp = false;
#endif
#endif

View File

@ -363,6 +363,7 @@ static void print_features(void)
_PSUPP(configfile, "Config file", "Configuration file support");
_PSUPP(freetype, "FreeType", "TTF font rendering with FreeType");
_PSUPP(netplay, "Netplay", "Peer-to-peer netplay");
_PSUPP(python, "Python", "Script support in shaders");
}
#undef _PSUPP