Initial Windows agent repository
This commit is contained in:
commit
a0db0c2e5b
10589 changed files with 3844063 additions and 0 deletions
41
OGP64/usr/share/perl5/5.40/ExtUtils/MakeMaker/Config.pm
Normal file
41
OGP64/usr/share/perl5/5.40/ExtUtils/MakeMaker/Config.pm
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
package ExtUtils::MakeMaker::Config;
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
our $VERSION = '7.70';
|
||||
$VERSION =~ tr/_//d;
|
||||
|
||||
use Config ();
|
||||
|
||||
# Give us an overridable config.
|
||||
our %Config = %Config::Config;
|
||||
|
||||
sub import {
|
||||
my $caller = caller;
|
||||
|
||||
no strict 'refs'; ## no critic
|
||||
*{$caller.'::Config'} = \%Config;
|
||||
}
|
||||
|
||||
1;
|
||||
|
||||
|
||||
=head1 NAME
|
||||
|
||||
ExtUtils::MakeMaker::Config - Wrapper around Config.pm
|
||||
|
||||
|
||||
=head1 SYNOPSIS
|
||||
|
||||
use ExtUtils::MakeMaker::Config;
|
||||
print $Config{installbin}; # or whatever
|
||||
|
||||
|
||||
=head1 DESCRIPTION
|
||||
|
||||
B<FOR INTERNAL USE ONLY>
|
||||
|
||||
A very thin wrapper around Config.pm so MakeMaker is easier to test.
|
||||
|
||||
=cut
|
||||
Loading…
Add table
Add a link
Reference in a new issue