2018-09-11 20:22:14 +08:00
|
|
|
# Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
|
2016-04-20 22:20:59 +08:00
|
|
|
#
|
2018-12-06 20:03:50 +08:00
|
|
|
# Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-04-20 22:20:59 +08: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 19:37:31 +08:00
|
|
|
|
|
|
|
package with_fallback;
|
|
|
|
|
|
|
|
sub import {
|
2018-07-10 03:07:25 +08:00
|
|
|
shift;
|
|
|
|
|
2016-01-22 19:37:31 +08:00
|
|
|
use File::Basename;
|
|
|
|
use File::Spec::Functions;
|
|
|
|
foreach (@_) {
|
2018-07-10 03:07:25 +08:00
|
|
|
eval "use $_";
|
2016-01-22 19:37:31 +08:00
|
|
|
if ($@) {
|
2017-08-02 04:10:39 +08:00
|
|
|
unshift @INC, catdir(dirname(__FILE__),
|
|
|
|
"..", "..", "external", "perl");
|
2016-01-22 19:37:31 +08:00
|
|
|
my $transfer = "transfer::$_";
|
2018-07-10 03:07:25 +08:00
|
|
|
eval "use $transfer";
|
2016-01-22 19:37:31 +08:00
|
|
|
shift @INC;
|
|
|
|
warn $@ if $@;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
1;
|