2018-09-11 12:22:14 +00:00
|
|
|
# Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
|
2016-04-20 14:20:59 +00:00
|
|
|
#
|
2018-12-06 13:07:05 +00:00
|
|
|
# Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-04-20 14:20:59 +00:00
|
|
|
# this file except in compliance with the License. You can obtain a copy
|
|
|
|
# in the file LICENSE in the source distribution or at
|
|
|
|
# https://www.openssl.org/source/license.html
|
2016-01-22 11:25:14 +00:00
|
|
|
|
|
|
|
# Quick transfer to the downloaded Text::Template
|
|
|
|
|
2018-07-09 19:09:30 +00:00
|
|
|
package transfer::Text::Template;
|
|
|
|
$VERSION = 1.46;
|
|
|
|
|
2016-01-22 11:25:14 +00:00
|
|
|
BEGIN {
|
|
|
|
use File::Spec::Functions;
|
|
|
|
use File::Basename;
|
2016-02-12 03:23:15 +00:00
|
|
|
use lib catdir(dirname(__FILE__), "..", "..", "Text-Template-1.46", "lib");
|
|
|
|
# Some unpackers on VMS convert periods in directory names to underscores
|
|
|
|
use lib catdir(dirname(__FILE__), "..", "..", "Text-Template-1_46", "lib");
|
2016-02-04 18:41:56 +00:00
|
|
|
use Text::Template;
|
|
|
|
shift @INC; # Takes away the effect of use lib
|
2016-02-12 03:23:15 +00:00
|
|
|
shift @INC; # Takes away the effect of use lib
|
2016-01-22 11:25:14 +00:00
|
|
|
}
|
|
|
|
1;
|