This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[dummy merge]
[perl5.git] / plan9 / genconfig.pl
CommitLineData
396e9e6f 1#!../miniperl
2# Habit . . .
3#
4# Extract info from config.h, and add extra data here, to generate config.sh
5# Edit the static information after __END__ to reflect your site and options
6# that went into your perl binary. In addition, values which change from run
7# to run may be supplied on the command line as key=val pairs.
8#
9# Last Modified: 28-Jun-1996 Luther Huffman lutherh@stratcom.com
10#
11
12#==== Locations of installed Perl components
760ac839 13$p9pvers="_P9P_VERSION";
396e9e6f 14$prefix='';
15$p9p_objtype=$ENV{'objtype'};
16$builddir="/sys/src/cmd/perl/$p9pvers";
17$installbin="/$p9p_objtype/bin";
18$installman1dir="/sys/man/1";
19$installman3dir="/sys/man/2";
20$installprivlib="/sys/lib/perl";
21$installarchlib = "/$p9p_objtype/lib/perl/$p9pvers";
22$archname="plan9_$p9p_objtype";
23$installsitelib="$installprivlib/site_perl";
24$installsitearch="$installarchlib/site_perl";
25$installscript="/bin";
26
27unshift(@INC,'lib'); # In case someone didn't define Perl_Root
28 # before the build
29
30if ($ARGV[0] eq '-f') {
31 open(ARGS,$ARGV[1]) or die "Can't read data from $ARGV[1]: $!\n";
32 @ARGV = ();
33 while (<ARGS>) {
34 push(@ARGV,split(/\|/,$_));
35 }
36 close ARGS;
37}
38
39if (-f "config.h") { $infile = "config.h"; $outdir = "../"; }
40elsif (-f "plan9/config.h") { $infile = "plan9/config.h"; $outdir = "./"; }
41
42if ($infile) { print "Generating config.sh from $infile . . .\n"; }
43else { die <<EndOfGasp;
44Can't find config.h to read!
45 Please run this script from the perl source directory or
46 the plan9 subdirectory in the distribution.
47EndOfGasp
48}
49$outdir = '';
50open(IN,"$infile") || die "Can't open $infile: $!\n";
51open(OUT,">${outdir}config.sh") || die "Can't open ${outdir}config.sh: $!\n";
52
53$time = localtime;
54$cf_by = $ENV{'user'};
55($vers = $]) =~ tr/./_/;
56
57# Plan 9 doesn't actually use version numbering. Following the original Unix
58# precedent of assigning a Unix edition number based on the edition number
59# of the manuals, I am referring to this as Plan 9, 1st edition.
60$osvers = '1';
61
62print OUT <<EndOfIntro;
63# This file generated by genconfig.pl on a Plan 9 system.
64# Input obtained from:
65# $infile
66# $0
67# Time: $time
68
69package='perl5'
70CONFIG='true'
71cf_time='$time'
72cf_by='$cf_by'
73ccdlflags=''
74cccdlflags=''
75libpth='$installprivlib'
76ld='pcc'
77lddlflags=''
78ranlib=''
79ar='ar'
80nroff='/bin/nroff'
81eunicefix=':'
82hint='none'
83hintfile=''
84intsize='4'
396e9e6f 85shrplib='define'
86usemymalloc='n'
87usevfork='true'
88useposix='true'
89spitshell='cat'
90dlsrc='dl_none.c'
91binexp='$installbin'
92man1ext=''
93man3ext=''
94arch='$archname'
95archname='$archname'
96osname='plan9'
97extensions='IO Socket Opcode Fcntl POSIX DynaLoader FileHandle'
98osvers='$osvers'
99sig_maxsig='19'
100sig_name='ZERO HUP INT QUIT ILL ABRT FPE KILL SEGV PIPE ALRM TERM USR1 USR2 CHLD CONT STOP TSTP TTIN TTOU'
101sig_num='0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19'
102sig_numsig='20'
103prefix='$prefix'
104builddir='$builddir'
105installbin='$installbin'
106installman1dir='$installman1dir'
107installman3dir='$installman3dir'
108installprivlib='$installprivlib'
109installarchlib='$installarchlib'
110installsitelib='$installsitelib'
111installsitearch='$installsitearch'
112installscript='$installscript'
113scriptdir='$installscript'
114scriptdirexp='$installscript'
115EndOfIntro
116
117# Plan 9 compiler stuff
118print OUT "cc='pcc'\n";
119print OUT "d_attribut='undef'\n";
120print OUT "d_socket='define'\n";
121print OUT "d_sockpair='define'\n";
122print OUT "d_sigsetjmp='define'\n";
123print OUT "sigjmp_buf='sigjmp_buf'\n";
124print OUT "sigsetjmp='sigsetjmp(buf,save_mask)'\n";
125print OUT "siglongjmp='siglongjmp(buf,retval) '\n";
126print OUT "exe_ext=''\n";
127if ($p9p_objtype eq '386') {
128 $objext = '.8';
16da7c01
LH
129 $alignbytes = '4';
130 $cstflags = 2;
396e9e6f 131}
132elsif ($p9p_objtype eq '68020') {
133 $objext = '.2';
16da7c01
LH
134 $alignbytes = '2';
135 $cstflags = 0;
396e9e6f 136}
137elsif ($p9p_objtype eq 'mips') {
138 $objext = '.v';
16da7c01
LH
139 $alignbytes = '8';
140 $cstflags = 0;
396e9e6f 141}
142elsif ($p9p_objtype eq 'sparc') {
143 $objext = '.k';
16da7c01 144 $alignbytes = '4';
396e9e6f 145 $cstflags = 0;
146}
16da7c01
LH
147print OUT "obj_ext='$objext'\n";
148print OUT "alignbytes='$alignbytes'\n";
396e9e6f 149print OUT "castflags='$cstflags'\n";
150
151$myname = $ENV{'site'} ;
152($myhostname,$mydomain) = split(/\./,$myname,2);
153print OUT "myhostname='$myhostname'\n" if $myhostname;
154if ($mydomain) {
155 print OUT "mydomain='.$mydomain'\n";
156 print OUT "perladmin='$cf_by\@$myhostname.$mydomain'\n";
157 print OUT "cf_email='$cf_by\@$myhostname.$mydomain'\n";
158}
159else {
160 print OUT "perladmin='$cf_by'\n";
161 print OUT "cf_email='$cf_by'\n";
162}
163print OUT "myuname='Plan9 $myname $osvers $p9p_objtype'\n";
164
165# Before we read the C header file, find out what config.sh constants are
166# equivalent to the C preprocessor macros
167if (open(SH,"${outdir}config_h.SH")) {
168 while (<SH>) {
169 next unless m%^#(?!if).*\$%;
170 s/^#//; s!(.*?)\s*/\*.*!$1!;
171 my(@words) = split;
172 $words[1] =~ s/\(.*//; # Clip off args from macro
173 # Did we use a shell variable for the preprocessor directive?
174 if ($words[0] =~ m!^\$(\w+)!) { $pp_vars{$words[1]} = $1; }
175 if (@words > 2) { # We may also have a shell var in the value
176 shift @words; # Discard preprocessor directive
177 my($token) = shift @words; # and keep constant name
178 my($word);
179 foreach $word (@words) {
180 next unless $word =~ m!\$(\w+)!;
181 $val_vars{$token} = $1;
182 last;
183 }
184 }
185 }
186 close SH;
187}
188else { warn "Couldn't read ${outfile}config_h.SH: $!\n"; }
189$pp_vars{PLAN9} = 'define'; #Plan 9 specific
190
191# OK, now read the C header file, and retcon statements into config.sh
192while (<IN>) { # roll through the comment header in config.h
193 last if /config-start/;
194}
195
196while (<IN>) {
197 chop;
198 while (/\\\s*$/) { # pick up contination lines
199 my $line = $_;
200 $line =~ s/\\\s*$//;
201 $_ = <IN>;
202 s/^\s*//;
203 $_ = $line . $_;
204 }
205 next unless my ($blocked,$un,$token,$val) =
206 m%^(\/\*)?\s*\#\s*(un)?def\w*\s+([A-Za-z0-9]\w+)\S*\s*(.*)%;
207 if (/config-skip/) {
208 delete $pp_vars{$token} if exists $pp_vars{$token};
209 delete $val_vars{$token} if exists $val_vars{$token};
210 next;
211 }
212 $val =~ s!\s*/\*.*!!; # strip off trailing comment
213 my($had_val); # Maybe a macro with args that we just #undefd or commented
214 if (!length($val) and $val_vars{$token} and ($un || $blocked)) {
215 print OUT "$val_vars{$token}=''\n";
216 delete $val_vars{$token};
217 $had_val = 1;
218 }
219 $state = ($blocked || $un) ? 'undef' : 'define';
220 if ($pp_vars{$token}) {
221 print OUT "$pp_vars{$token}='$state'\n";
222 delete $pp_vars{$token};
223 }
224 elsif (not length $val and not $had_val) {
225 # Wups -- should have been shell var for C preprocessor directive
226 warn "Constant $token not found in config_h.SH\n";
227 $token =~ tr/A-Z/a-z/;
228 $token = "d_$token" unless $token =~ /^i_/;
229 print OUT "$token='$state'\n";
230 }
231 next unless length $val;
232 $val =~ s/^"//; $val =~ s/"$//; # remove end quotes
233 $val =~ s/","/ /g; # make signal list look nice
234
235 if ($val_vars{$token}) {
236 print OUT "$val_vars{$token}='$val'\n";
237 if ($val_vars{$token} =~ s/exp$//) {print OUT "$val_vars{$token}='$val'\n";}
238 delete $val_vars{$token};
239 }
240 elsif (!$pp_vars{$token}) { # Haven't seen it previously, either
241 warn "Constant $token not found in config_h.SH (val=|$val|)\n";
242 $token =~ tr/A-Z/a-z/;
243 print OUT "$token='$val'\n";
244 if ($token =~ s/exp$//) {print OUT "$token='$val'\n";}
245 }
246}
247close IN;
248
249foreach (sort keys %pp_vars) {
250 warn "Didn't see $_ in $infile\n";
251}
252foreach (sort keys %val_vars) {
253 warn "Didn't see $_ in $infile(val)\n";
254}
255
256
257# print OUT "libs='",join(' ',@libs),"'\n";
258# print OUT "libc='",join(' ',@crtls),"'\n";
259
260if (open(PL,"${outdir}patchlevel.h")) {
261 while (<PL>) {
262 if (/^#define PATCHLEVEL\s+(\S+)/) { print OUT "PATCHLEVEL='$1'\n"; }
263 elsif (/^#define SUBVERSION\s+(\S+)/) { print OUT "SUBVERSION='$1'\n"; }
264 }
265 close PL;
266}
267else { warn "Can't read ${outdir}patchlevel.h - skipping 'PATCHLEVEL'"; }
268
269print OUT "pager='/bin/p'\n";
270
271close OUT;
272
273