comparison lib/Test/Nginx.pm @ 552:93af034fda47

Tests: stream module prerequisite.
author Sergey Kandaurov <pluknet@nginx.com>
date Tue, 21 Apr 2015 15:16:54 +0300
parents 084f8c8cb648
children 05cbe9e2def8
comparison
equal deleted inserted replaced
551:28a8248740ca 552:93af034fda47
130 imap => '(?s)^(?!.*--without-mail_imap_module)', 130 imap => '(?s)^(?!.*--without-mail_imap_module)',
131 smtp => '(?s)^(?!.*--without-mail_smtp_module)', 131 smtp => '(?s)^(?!.*--without-mail_smtp_module)',
132 pcre => '(?s)^(?!.*--without-pcre)', 132 pcre => '(?s)^(?!.*--without-pcre)',
133 split_clients 133 split_clients
134 => '(?s)^(?!.*--without-http_split_clients_module)', 134 => '(?s)^(?!.*--without-http_split_clients_module)',
135 stream => '--with-stream(?!\S)',
135 ); 136 );
136 137
137 my $re = $regex{$feature}; 138 my $re = $regex{$feature};
138 $re = $feature if !defined $re; 139 $re = $feature if !defined $re;
139 140