
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>
13 lines
299 B
Perl
13 lines
299 B
Perl
#! /usr/bin/perl
|
|
|
|
# Quick transfer to the downloaded Text::Template
|
|
|
|
BEGIN {
|
|
use File::Spec::Functions;
|
|
use File::Basename;
|
|
use lib catdir(dirname(__FILE__), "..", "..");
|
|
my $texttemplate = catfile("Text-Template-1.46", "lib", "Text", "Template.pm");
|
|
require $texttemplate;
|
|
}
|
|
1;
|