Blame external/perl/transfer/Text/Template.pm

Packit c4476c
# Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
Packit c4476c
#
Packit c4476c
# Licensed under the OpenSSL license (the "License").  You may not use
Packit c4476c
# this file except in compliance with the License.  You can obtain a copy
Packit c4476c
# in the file LICENSE in the source distribution or at
Packit c4476c
# https://www.openssl.org/source/license.html
Packit c4476c
Packit c4476c
# Quick transfer to the downloaded Text::Template
Packit c4476c
Packit c4476c
package transfer::Text::Template;
Packit c4476c
$VERSION = 1.46;
Packit c4476c
Packit c4476c
BEGIN {
Packit c4476c
    use File::Spec::Functions;
Packit c4476c
    use File::Basename;
Packit c4476c
    use lib catdir(dirname(__FILE__), "..", "..", "Text-Template-1.46", "lib");
Packit c4476c
    # Some unpackers on VMS convert periods in directory names to underscores
Packit c4476c
    use lib catdir(dirname(__FILE__), "..", "..", "Text-Template-1_46", "lib");
Packit c4476c
    use Text::Template;
Packit c4476c
    shift @INC;                 # Takes away the effect of use lib
Packit c4476c
    shift @INC;                 # Takes away the effect of use lib
Packit c4476c
}
Packit c4476c
1;