new build system

This commit is contained in:
roberto@sirius
2010-03-08 13:25:02 +01:00
parent 8a572a642e
commit 175ef65d9f
7 changed files with 114 additions and 83 deletions
+11
View File
@@ -267,3 +267,14 @@ int uwsgi_request(struct uwsgi_server *uwsgi, struct wsgi_request *wsgi_req) {
void uwsgi_after_request(struct uwsgi_server *uwsgi, struct wsgi_request *wsgi_req) {
return;
}
struct uwsgi_plugin lua_plugin {
.name = "lua",
.modifier1 = 6,
.init = uwsgi_init,
.request = uwsgi_request,
.after_request = uwsgi_after_request,
.async = 0,
};