diff options
author | Igor Sysoev <igor@sysoev.ru> | 2008-03-17 08:58:07 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2008-03-17 08:58:07 +0000 |
commit | 37cc29a405ac8f3dc318d475de01e1ccfc96c07f (patch) | |
tree | 28a13c5ec769bdfba8e6b418703caba6340e9341 /src/http/modules/perl/ngx_http_perl_module.c | |
parent | d8623fc5356b8094bdd8f16d4f37bf7219c4e9b4 (diff) | |
download | nginx-37cc29a405ac8f3dc318d475de01e1ccfc96c07f.tar.gz nginx-37cc29a405ac8f3dc318d475de01e1ccfc96c07f.zip |
some perl builds require my_perl for PERL_SYS_TERM()
Diffstat (limited to 'src/http/modules/perl/ngx_http_perl_module.c')
-rw-r--r-- | src/http/modules/perl/ngx_http_perl_module.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/http/modules/perl/ngx_http_perl_module.c b/src/http/modules/perl/ngx_http_perl_module.c index 6f84d5989..ab89cadcf 100644 --- a/src/http/modules/perl/ngx_http_perl_module.c +++ b/src/http/modules/perl/ngx_http_perl_module.c @@ -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(); + + } } |