8ff2af5483
Because we're using Text::Template and we know it's a non core Perl module, we choose to bundle it into our source, for convenience. external/perl/Downloaded.txt document what modules we choose to bundle this way and exactly where we downloaded it from. With this changes comes the transfer module for with_fallback. Reviewed-by: Rich Salz <rsalz@openssl.org>
11 lines
149 B
Perl
11 lines
149 B
Perl
#!perl
|
|
|
|
use Text::Template;
|
|
print "1..1\n";
|
|
|
|
if ($Text::Template::VERSION == 1.46) {
|
|
print "ok 1\n";
|
|
} else {
|
|
print "not ok 1\n";
|
|
}
|
|
|