diff options
author | Ruslan Ermilov <ru@nginx.com> | 2013-03-28 08:47:06 +0000 |
---|---|---|
committer | Ruslan Ermilov <ru@nginx.com> | 2013-03-28 08:47:06 +0000 |
commit | a861b0dbb11a955f4957191b1ee7ee15c8e791a9 (patch) | |
tree | 1744896f30a2560edd67f08370b21e2ed21815c9 /src/http/modules/perl/nginx.pm | |
parent | 50be2f3f45e0e2a66b2916c90a0e42cf73c2e822 (diff) | |
download | nginx-a861b0dbb11a955f4957191b1ee7ee15c8e791a9.tar.gz nginx-a861b0dbb11a955f4957191b1ee7ee15c8e791a9.zip |
Simplified nginx version maintenance.
It's no longer necessary to update src/http/modules/perl/nginx.pm
when version is bumped, as it's now derived from src/core/nginx.h.
Diffstat (limited to 'src/http/modules/perl/nginx.pm')
-rw-r--r-- | src/http/modules/perl/nginx.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/perl/nginx.pm b/src/http/modules/perl/nginx.pm index 5f02fa7b3..e3f736110 100644 --- a/src/http/modules/perl/nginx.pm +++ b/src/http/modules/perl/nginx.pm @@ -50,7 +50,7 @@ our @EXPORT = qw( HTTP_INSUFFICIENT_STORAGE ); -our $VERSION = '1.3.16'; +our $VERSION = '%%VERSION%%'; require XSLoader; XSLoader::load('nginx', $VERSION); |