comparison src/http/modules/perl/nginx.xs @ 152:396dbbc06dd7 NGINX_0_3_23

nginx 0.3.23 *) Feature: the "optimize_host_names" directive. *) Bugfix: in using of the variables in the "path" and "alias" directives. *) Bugfix: the ngx_http_perl_module was incorrectly built on Linux and Solaris.
author Igor Sysoev <http://sysoev.ru>
date Tue, 24 Jan 2006 00:00:00 +0300
parents 50bd986c5d63
children 6be073125f2e
comparison
equal deleted inserted replaced
151:843df9f3304d 152:396dbbc06dd7
3 * Copyright (C) Igor Sysoev 3 * Copyright (C) Igor Sysoev
4 */ 4 */
5 5
6 6
7 #define PERL_NO_GET_CONTEXT 7 #define PERL_NO_GET_CONTEXT
8
9 #include "EXTERN.h"
10 #include "perl.h"
11 #include "XSUB.h"
12 8
13 #include <ngx_config.h> 9 #include <ngx_config.h>
14 #include <ngx_core.h> 10 #include <ngx_core.h>
15 #include <ngx_http.h> 11 #include <ngx_http.h>
16 #include <ngx_http_perl_module.h> 12 #include <ngx_http_perl_module.h>
13
14 #include "XSUB.h"
17 15
18 16
19 static ngx_int_t 17 static ngx_int_t
20 ngx_http_perl_sv2str(pTHX_ ngx_http_request_t *r, ngx_str_t *s, SV *sv) 18 ngx_http_perl_sv2str(pTHX_ ngx_http_request_t *r, ngx_str_t *s, SV *sv)
21 { 19 {