Home | History | Annotate | Line # | Download | only in perl
      1  1.1  christos # Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
      2  1.1  christos #
      3  1.1  christos # Licensed under the OpenSSL license (the "License").  You may not use
      4  1.1  christos # this file except in compliance with the License.  You can obtain a copy
      5  1.1  christos # in the file LICENSE in the source distribution or at
      6  1.1  christos # https://www.openssl.org/source/license.html
      7  1.1  christos 
      8  1.1  christos package with_fallback;
      9  1.1  christos 
     10  1.1  christos sub import {
     11  1.1  christos     shift;
     12  1.1  christos 
     13  1.1  christos     use File::Basename;
     14  1.1  christos     use File::Spec::Functions;
     15  1.1  christos     foreach (@_) {
     16  1.1  christos 	eval "use $_";
     17  1.1  christos 	if ($@) {
     18  1.1  christos 	    unshift @INC, catdir(dirname(__FILE__),
     19  1.1  christos                                  "..", "..", "external", "perl");
     20  1.1  christos 	    my $transfer = "transfer::$_";
     21  1.1  christos 	    eval "use $transfer";
     22  1.1  christos 	    shift @INC;
     23  1.1  christos 	    warn $@ if $@;
     24  1.1  christos 	}
     25  1.1  christos     }
     26  1.1  christos }
     27  1.1  christos 1;
     28