mirror of
https://github.com/nginx/nginx.git
synced 2025-06-07 17:52:38 +08:00
Configure: detect nginx version for nginx.pm at make time.
This commit is contained in:
parent
b69a35ffb1
commit
853c208fc9
@ -3,9 +3,6 @@
|
|||||||
# Copyright (C) Nginx, Inc.
|
# Copyright (C) Nginx, Inc.
|
||||||
|
|
||||||
|
|
||||||
v=`grep 'define NGINX_VERSION' src/core/nginx.h | sed -e 's/^.*"\(.*\)".*/\1/'`
|
|
||||||
|
|
||||||
|
|
||||||
cat << END >> $NGX_MAKEFILE
|
cat << END >> $NGX_MAKEFILE
|
||||||
|
|
||||||
$NGX_OBJS/src/http/modules/perl/ngx_http_perl_module.o: \\
|
$NGX_OBJS/src/http/modules/perl/ngx_http_perl_module.o: \\
|
||||||
@ -27,7 +24,11 @@ $NGX_OBJS/src/http/modules/perl/Makefile: \\
|
|||||||
src/http/modules/perl/nginx.pm \\
|
src/http/modules/perl/nginx.pm \\
|
||||||
src/http/modules/perl/nginx.xs \\
|
src/http/modules/perl/nginx.xs \\
|
||||||
src/http/modules/perl/typemap
|
src/http/modules/perl/typemap
|
||||||
sed "s/%%VERSION%%/$v/" src/http/modules/perl/nginx.pm > \\
|
grep 'define NGINX_VERSION' src/core/nginx.h \\
|
||||||
|
| sed -e 's/^.*"\(.*\)".*/\1/' > \\
|
||||||
|
$NGX_OBJS/src/http/modules/perl/version
|
||||||
|
sed "s/%%VERSION%%/\`cat $NGX_OBJS/src/http/modules/perl/version\`/" \\
|
||||||
|
src/http/modules/perl/nginx.pm > \\
|
||||||
$NGX_OBJS/src/http/modules/perl/nginx.pm
|
$NGX_OBJS/src/http/modules/perl/nginx.pm
|
||||||
cp -p src/http/modules/perl/nginx.xs $NGX_OBJS/src/http/modules/perl/
|
cp -p src/http/modules/perl/nginx.xs $NGX_OBJS/src/http/modules/perl/
|
||||||
cp -p src/http/modules/perl/typemap $NGX_OBJS/src/http/modules/perl/
|
cp -p src/http/modules/perl/typemap $NGX_OBJS/src/http/modules/perl/
|
||||||
|
Loading…
Reference in New Issue
Block a user