This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Subject: optimize matching -g still enables -DDEBUGING
[metaconfig.git] / U / mkglossary
CommitLineData
bc84095b
MB
1#!/usr/bin/perl
2
3use strict;
4use warnings;
9f8747e5 5
959f3c4c
JH
6use File::Basename;
7
8# WARNING: This is site-specific. Change to the location
9# where you have installed dist-3.0PL70.
bc84095b
MB
10my @std_units = glob ("/pro/3gl/CPAN/lib/dist/U/*.U");
11my $PWD = "/pro/3gl/CPAN/perl";
959f3c4c 12
bc84095b
MB
13-d "U" and chdir "U";
14my @perl_units = glob ("$PWD/U/*/*.U");
15push (@perl_units, @std_units);
959f3c4c
JH
16
17# Get the list of config.sh symbols. Be sure this is up to date!
18# (I run the U/mksample script first to be sure.)
bc84095b 19open my $wanted, "< $PWD/Porting/config.sh" or die "$0: open $PWD/Wanted: $!\n";
9f8747e5
MB
20my @WANTED = map { $_->[0] }
21 sort { $a->[1] cmp $b->[1] }
bc84095b
MB
22 map { [ $_, lc $_ ] } <$wanted>;
23close $wanted;
53068161 24
959f3c4c 25print <<'EOM';
cfaaf7e8
JH
26
27!!!!!!! DO NOT EDIT THIS FILE !!!!!!!
28This file is built by metaconfig.
29
959f3c4c
JH
30This file contains a description of all the shell variables whose value is
31determined by the Configure script. Variables intended for use in C
32programs (e.g. I_UNISTD) are already described in config_h.SH. [`configpm'
33generates pod documentation for Config.pm from this file--please try to keep
34the formatting regular.]
35
36EOM
37
bc84095b
MB
38my ($Loc, %expl, %file, %predef);
39foreach my $file (@perl_units) {
40 open my $fh, "< $file" or die "$0: open $file: $!";
41 my $base = basename ($file);
42 $Loc = $file, next if $base eq "Loc.U" and not defined $Loc;
43 my @var;
44 while (<$fh>) {
53068161 45 if (m/^\?S:\w+[ \t:]/ .. m/^\?S:\.$/) {
bc84095b
MB
46 s/[ \t]+$//;
47 if (m/^\?S:.$/) {
48 my ($var) = ((shift @var) =~ /^(\w+)/);
49 unless (exists $expl{$var}) {
50 $expl{$var} = [ @var, "\n" ];
51 $file{$var} = $base;
52 }
53 @var = ();
54 }
55 else {
56 s/^\?S://; # Remove leading ?S: markers.
57 s/^\s+(?=.)/\t/; # Ensure all lines begin with tabs.
58 push @var, $_;
59 }
60 }
959f3c4c 61 }
bc84095b 62 close $fh or die "$0: close $file: $!";
959f3c4c 63 }
959f3c4c 64
bc84095b
MB
65defined $Loc or die "$0: Couldn't locate Loc.U: $!";
66
67open my $fh, "< $Loc" or die "$0: open $Loc: $!";
68while (<$fh>) {
69 m/^\?(\w+):\1$/ and ($expl{$1}, $file{$1}) = (1, "Loc.U");
70 }
71close $fh or die "$0: close $Loc: $!";
959f3c4c 72
bc84095b
MB
73{ local $/ = "\n\n";
74 for (<DATA>) {
75 m/^(\w+)/;
76 $predef{$1} = $_;
77 }
959f3c4c 78 }
959f3c4c 79
bc84095b
MB
80for (@WANTED) {
81 chomp;
82 m/^#/ and next; # Skip comments
6b8f0cae 83 m/^:/ and next; # Skip comments
bc84095b
MB
84 m/^$/ and next; # Skip empty sections
85 my ($var, $val) = split /=/, $_, 2;
959f3c4c
JH
86
87 if (exists $expl{$var}) {
bc84095b
MB
88 if ($file{$var} eq "Loc.U") {
89 print "$var (Loc.U):\n";
90 if ($val eq "''") {
91 # If we didn't have d_portable, this info might be
92 # useful, but it still won't help with non-standard
93 # stuff if perl is built on one system but installed
94 # on others (this is common with Linux distributions,
95 # for example).
96 print <<EOE;
959f3c4c 97 This variable is defined but not used by Configure.
3b790b13 98 The value is the empty string and is not useful.
959f3c4c
JH
99
100EOE
bc84095b
MB
101 }
102 else {
103 print <<EOE;
17784b92 104 This variable is used internally by Configure to determine the
959f3c4c
JH
105 full pathname (if any) of the $var program. After Configure runs,
106 the value is reset to a plain "$var" and is not useful.
107
108EOE
bc84095b
MB
109 }
110 }
111 else {
112 print "$var ($file{$var}):\n";
113 print @{$expl{$var}};
114 }
115 next;
116 }
117
bdf957e2
JH
118 # Handle special variables from Oldsyms.U. Since these start
119 # with capital letters, metalint considers them to be "special
120 # unit" symbols. It's easier to define them here than to try
121 # to fool metalint any further. --AD 22 Oct 1999
6b8f0cae
AD
122 # Similarly, handle the config_arg* variables from Options.U.
123 # -- AD 8 Dec 2009
bc84095b
MB
124 if (exists $predef{$var}) {
125 print $predef{$var};
126 next;
127 }
128
129 $var =~ /^(Author|Date|Header|Id|Locker|Log|Mcc|RCSfile|Revision|Source|State)$|_cflags$|^config_arg/
130 or warn "$0: couldn't find $var\n"
131 }
132__END__
bdf957e2
JH
133PERL_REVISION (Oldsyms.U):
134 In a Perl version number such as 5.6.2, this is the 5.
135 This value is manually set in patchlevel.h
136
bdf957e2
JH
137PERL_VERSION (Oldsyms.U):
138 In a Perl version number such as 5.6.2, this is the 6.
139 This value is manually set in patchlevel.h
140
bdf957e2
JH
141PERL_SUBVERSION (Oldsyms.U):
142 In a Perl version number such as 5.6.2, this is the 2.
143 Values greater than 50 represent potentially unstable
144 development subversions.
145 This value is manually set in patchlevel.h
146
bdf957e2
JH
147PERL_APIVERSION (Oldsyms.U):
148 This value is manually set in patchlevel.h and is used
149 to set the Configure apiversion variable.
150
bdf957e2
JH
151CONFIGDOTSH (Oldsyms.U):
152 This is set to 'true' in config.sh so that a shell script
153 sourcing config.sh can tell if it has been sourced already.
154
bc84095b
MB
155PERL_CONFIG_SH (Oldsyms.U):
156 This is set to 'true' in config.sh so that a shell script
157 sourcing config.sh can tell if it has been sourced already.
158
159PERL_API_REVISION (patchlevel.h):
160 This number describes the earliest compatible PERL_REVISION of
161 Perl ("compatibility" here being defined as sufficient binary/API
162 compatibility to run XS code built with the older version).
163 Normally this does not change across maintenance releases.
164 Please read the comment in patchlevel.h.
165
166PERL_API_VERSION (patchlevel.h):
167 This number describes the earliest compatible PERL_VERSION of
168 Perl ("compatibility" here being defined as sufficient binary/API
169 compatibility to run XS code built with the older version).
170 Normally this does not change across maintenance releases.
171 Please read the comment in patchlevel.h.
172
173PERL_API_SUBVERSION (patchlevel.h):
174 This number describes the earliest compatible PERL_SUBVERSION of
175 Perl ("compatibility" here being defined as sufficient binary/API
176 compatibility to run XS code built with the older version).
177 Normally this does not change across maintenance releases.
178 Please read the comment in patchlevel.h.
179
180PERL_PATCHLEVEL (Oldsyms.U):
181 This symbol reflects the patchlevel, if available. Will usually
182 come from the .patch file, which is available when the perl
183 source tree was fetched with rsync.
bdf957e2 184
6b8f0cae
AD
185config_args (Options.U):
186 This variable contains a single string giving the command-line
187 arguments passed to Configure. Spaces within arguments,
188 quotes, and escaped characters are not correctly preserved.
189 To reconstruct the command line, you must assemble the individual
190 command line pieces, given in config_arg[0-9]*.
191
192config_arg0 (Options.U):
193 This variable contains the string used to invoke the Configure
194 command, as reported by the shell in the $0 variable.
195
196config_argc (Options.U):
4dd7201d 197 This variable contains the number of command-line arguments
6b8f0cae
AD
198 passed to Configure, as reported by the shell in the $# variable.
199 The individual arguments are stored as variables config_argc1,
200 config_argc2, etc.
201