1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
|
use Config;
use File::Basename qw(&basename &dirname);
use File::Spec;
use Cwd;
my $origdir = cwd;
chdir dirname($0);
my $file = basename($0, '.PL');
$file =~ s!_(pm)$!.$1!i;
my $useConfig;
my $Config_archname;
my $Config_version;
my $Config_inc_version_list;
# Expand the variables only if explicitly requested because
# otherwise relocating Perl becomes much harder.
if ($ENV{PERL_BUILD_EXPAND_CONFIG_VARS}) {
$useConfig = '';
$Config_archname = qq('$Config{archname}');
$Config_version = qq('$Config{version}');
my @Config_inc_version_list =
reverse split / /, $Config{inc_version_list};
$Config_inc_version_list =
@Config_inc_version_list ?
qq(@Config_inc_version_list) : q(());
} else {
$useConfig = 'use Config;';
$Config_archname = q($Config{archname});
$Config_version = q($Config{version});
$Config_inc_version_list =
q(reverse split / /, qw($Config{inc_version_list}));
}
open OUT,">$file" or die "Can't create $file: $!";
print "Extracting $file (with variable substitutions)\n";
# In this section, perl variables will be expanded during extraction.
# You can use $Config{...} to use Configure variables.
print OUT <<"!GROK!THIS!";
package lib;
# THIS FILE IS AUTOMATICALLY GENERATED FROM lib_pm.PL.
# ANY CHANGES TO THIS FILE WILL BE OVERWRITTEN BY THE NEXT PERL BUILD.
$useConfig
my \$archname = $Config_archname;
my \$version = $Config_version;
my \@inc_version_list = $Config_inc_version_list;
!GROK!THIS!
print OUT <<'!NO!SUBS!';
our @ORIG_INC = @INC; # take a handy copy of 'original' value
our $VERSION = '0.5564';
sub import {
shift;
my %names;
foreach (reverse @_) {
if ($_ eq '') {
require Carp;
Carp::carp("Empty compile time value given to use lib");
}
if (-e && ! -d _) {
require Carp;
Carp::carp("Parameter to use lib must be directory, not file");
}
unshift(@INC, $_);
# Add any previous version directories we found at configure time
foreach my $incver (@inc_version_list)
{
unshift(@INC, "$_/$incver") if -d "$_/$incver";
}
# Put a corresponding archlib directory infront of $_ if it
# looks like $_ has an archlib directory below it.
unshift(@INC, "$_/$archname") if -d "$_/$archname/auto";
unshift(@INC, "$_/$version") if -d "$_/$version";
unshift(@INC, "$_/$version/$archname") if -d "$_/$version/$archname";
}
# remove trailing duplicates
@INC = grep { ++$names{$_} == 1 } @INC;
return;
}
sub unimport {
shift;
my %names;
foreach (@_) {
++$names{$_};
++$names{"$_/$archname"} if -d "$_/$archname/auto";
++$names{"$_/$version"} if -d "$_/$version";
++$names{"$_/$version/$archname"} if -d "$_/$version/$archname";
}
# Remove ALL instances of each named directory.
@INC = grep { !exists $names{$_} } @INC;
return;
}
1;
__END__
=head1 NAME
lib - manipulate @INC at compile time
=head1 SYNOPSIS
use lib LIST;
no lib LIST;
=head1 DESCRIPTION
This is a small simple module which simplifies the manipulation of @INC
at compile time.
It is typically used to add extra directories to perl's search path so
that later C<use> or C<require> statements will find modules which are
not located on perl's default search path.
=head2 Adding directories to @INC
The parameters to C<use lib> are added to the start of the perl search
path. Saying
use lib LIST;
is I<almost> the same as saying
BEGIN { unshift(@INC, LIST) }
For each directory in LIST (called $dir here) the lib module also
checks to see if a directory called $dir/$archname/auto exists.
If so the $dir/$archname directory is assumed to be a corresponding
architecture specific directory and is added to @INC in front of $dir.
To avoid memory leaks, all trailing duplicate entries in @INC are
removed.
=head2 Deleting directories from @INC
You should normally only add directories to @INC. If you need to
delete directories from @INC take care to only delete those which you
added yourself or which you are certain are not needed by other modules
in your script. Other modules may have added directories which they
need for correct operation.
The C<no lib> statement deletes all instances of each named directory
from @INC.
For each directory in LIST (called $dir here) the lib module also
checks to see if a directory called $dir/$archname/auto exists.
If so the $dir/$archname directory is assumed to be a corresponding
architecture specific directory and is also deleted from @INC.
=head2 Restoring original @INC
When the lib module is first loaded it records the current value of @INC
in an array C<@lib::ORIG_INC>. To restore @INC to that value you
can say
@INC = @lib::ORIG_INC;
=head1 SEE ALSO
FindBin - optional module which deals with paths relative to the source file.
=head1 AUTHOR
Tim Bunce, 2nd June 1995.
=cut
!NO!SUBS!
close OUT or die "Can't close $file: $!";
chdir $origdir;
|