]> git.kaiwu.me - nginx.git/commitdiff
some perl builds require my_perl for PERL_SYS_TERM()
authorIgor Sysoev <igor@sysoev.ru>
Mon, 17 Mar 2008 08:58:07 +0000 (08:58 +0000)
committerIgor Sysoev <igor@sysoev.ru>
Mon, 17 Mar 2008 08:58:07 +0000 (08:58 +0000)
src/http/modules/perl/ngx_http_perl_module.c

index 6f84d5989f25231792e6a67ed7d7dfcf75872342..ab89cadcf6444bb6dce548c5ee6f3ed3cd91e098 100644 (file)
@@ -1059,5 +1059,16 @@ ngx_http_perl_init_worker(ngx_cycle_t *cycle)
 static void
 ngx_http_perl_exit(ngx_cycle_t *cycle)
 {
+    ngx_http_perl_main_conf_t  *pmcf;
+
+    pmcf = ngx_http_cycle_get_module_main_conf(cycle, ngx_http_perl_module);
+
+    {
+
+    dTHXa(pmcf->perl);
+    PERL_SET_CONTEXT(pmcf->perl);
+
     PERL_SYS_TERM();
+
+    }
 }