comparison auto/lib/perl/conf @ 688:f31b19fe7f48 NGINX_1_3_7

nginx 1.3.7 *) Feature: OCSP stapling support. Thanks to Comodo, DigiCert and GlobalSign for sponsoring this work. *) Feature: the "ssl_trusted_certificate" directive. *) Feature: resolver now randomly rotates addresses returned from cache. Thanks to Anton Jouline. *) Bugfix: OpenSSL 0.9.7 compatibility.
author Igor Sysoev <http://sysoev.ru>
date Tue, 02 Oct 2012 00:00:00 +0400
parents d0f7a625f27c
children
comparison
equal deleted inserted replaced
687:a7305f494f1c 688:f31b19fe7f48
10 | sed -e 's/^This is perl, \(.*\)/\1/'` 10 | sed -e 's/^This is perl, \(.*\)/\1/'`
11 11
12 if test -n "$NGX_PERL_VER"; then 12 if test -n "$NGX_PERL_VER"; then
13 echo " + perl version: $NGX_PERL_VER" 13 echo " + perl version: $NGX_PERL_VER"
14 14
15 if [ "`echo 'use 5.006001; print "OK"' | $NGX_PERL 2>&1`" != OK ]; then 15 if [ "`$NGX_PERL -e 'use 5.006001; print "OK"'`" != "OK" ]; then
16 echo 16 echo
17 echo "$0: error: perl 5.6.1 or higher is required" 17 echo "$0: error: perl 5.6.1 or higher is required"
18 echo
19
20 exit 1;
21 fi
22
23 if [ "`$NGX_PERL -MExtUtils::Embed -e 'print "OK"'`" != "OK" ]; then
24 echo
25 echo "$0: error: perl module ExtUtils::Embed is required"
18 echo 26 echo
19 27
20 exit 1; 28 exit 1;
21 fi 29 fi
22 30