diff --git a/ChangeLog b/ChangeLog index c8335e67..7f9ae620 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,13 @@ *** july 2011 *** + * 0.9.8.3 [20110723] + +- implemented uwsgi.SymZipImporter to load embedded zip files +- OSX Lion is officially supported +- fixed xinetd support (example file added in contrib) +- suppot for systemd socket activation +- added --freebind option (Linux only) + * 0.9.8.2 [20110719] - fixed an ini and yaml parsing bug spotted by Raffaele Colace diff --git a/plugins/python/symimporter.c b/plugins/python/symimporter.c index 960ac033..2cea71af 100644 --- a/plugins/python/symimporter.c +++ b/plugins/python/symimporter.c @@ -1,5 +1,7 @@ #include "uwsgi_python.h" +#ifndef PYTHREE + extern struct uwsgi_server uwsgi; extern struct uwsgi_python up; @@ -408,6 +410,7 @@ static int symzipimporter_init(struct _symzipimporter *self, PyObject *args, PyObject *kwds) { + char *name; char *prefix = NULL; @@ -504,6 +507,7 @@ symzipimporter_init(struct _symzipimporter *self, PyObject *args, PyObject *kwds prefix[0] = ':'; } + return 0; } @@ -591,3 +595,4 @@ int uwsgi_init_symbol_import() { } +#endif diff --git a/uwsgiconfig.py b/uwsgiconfig.py index a43136cb..696d0566 100644 --- a/uwsgiconfig.py +++ b/uwsgiconfig.py @@ -1,6 +1,6 @@ # uWSGI build system -uwsgi_version = '0.9.8.2' +uwsgi_version = '0.9.8.3' import os import re