Update Plan 9, Win32, VMS configs with $shortsize and $longsize
[p5sagit/p5-mst-13.2.git] / vms / genconfig.pl
1 #!/usr/bin/perl
2 # Habit . . .
3 #
4 # Extract info from Config.VMS, 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 # Rev.  3-Dec-1996  Charles Bailey  bailey@genetics.upenn.edu
10 #
11
12 #==== Locations of installed Perl components
13 $prefix='perl_root';
14 $builddir="$prefix:[000000]";
15 $installbin="$prefix:[000000]";
16 $installscript="$prefix:[000000]";
17 $installman1dir="$prefix:[man.man1]";
18 $installman3dir="$prefix:[man.man3]";
19 $installprivlib="$prefix:[lib]";
20 $installsitelib="$prefix:[lib.site_perl]";
21
22 unshift(@INC,'lib');  # In case someone didn't define Perl_Root
23                       # before the build
24
25 if ($ARGV[0] eq '-f') {
26   open(ARGS,$ARGV[1]) or die "Can't read data from $ARGV[1]: $!\n";
27   @ARGV = ();
28   while (<ARGS>) {
29     push(@ARGV,split(/\|/,$_));
30   }
31   close ARGS;
32 }
33
34 if (-f "config.vms") { $infile = "config.vms"; $outdir = "[-]"; }
35 elsif (-f "[.vms]config.vms") { $infile = "[.vms]config.vms"; $outdir = "[]"; }
36 elsif (-f "config.h") { $infile = "config.h"; $outdir = "[]";}
37
38 if ($infile) { print "Generating Config.sh from $infile . . .\n"; }
39 else { die <<EndOfGasp;
40 Can't find config.vms or config.h to read!
41         Please run this script from the perl source directory or
42         the VMS subdirectory in the distribution.
43 EndOfGasp
44 }
45 $outdir = '';
46 open(IN,"$infile") || die "Can't open $infile: $!\n";
47 open(OUT,">${outdir}Config.sh") || die "Can't open ${outdir}Config.sh: $!\n";
48
49 $time = localtime;
50 $cf_by = (getpwuid($<))[0];
51 $archsufx = `Write Sys\$Output F\$GetSyi("HW_MODEL")` > 1024 ? 'AXP' : 'VAX';
52 ($vers = $]) =~ tr/./_/;
53 $installarchlib = VMS::Filespec::vmspath($installprivlib);
54 $installarchlib =~ s#\]#.VMS_$archsufx.$vers\]#;
55 $installsitearch = VMS::Filespec::vmspath($installsitelib);
56 $installsitearch =~ s#\]#.VMS_$archsufx\]#;
57 ($osvers = `Write Sys\$Output F\$GetSyi("VERSION")`) =~ s/^V?(\S+)\s*\n?$/$1/;
58
59 print OUT <<EndOfIntro;
60 # This file generated by GenConfig.pl on a VMS system.
61 # Input obtained from:
62 #     $infile
63 #     $0
64 # Time: $time
65
66 package='perl5'
67 CONFIG='true'
68 cf_time='$time'
69 cf_by='$cf_by'
70 ccdlflags=''
71 cccdlflags=''
72 mab=''
73 libpth='/sys\$share /sys\$library'
74 ld='Link'
75 lddlflags='/Share'
76 ranlib=''
77 ar=''
78 eunicefix=':'
79 hint='none'
80 hintfile=''
81 intsize='4'
82 longsize='4'
83 shortsize='2'
84 alignbytes='8'
85 shrplib='define'
86 usemymalloc='n'
87 usevfork='true'
88 useposix='false'
89 spitshell='write sys\$output '
90 dlsrc='dl_vms.c'
91 binexp='$installbin'
92 man1ext='rno'
93 man3ext='rno'
94 arch='VMS_$archsufx'
95 archname='VMS_$archsufx'
96 osvers='$osvers'
97 prefix='$prefix'
98 builddir='$builddir'
99 installbin='$installbin'
100 installscript='$installscript'
101 installman1dir='$installman1dir'
102 installman3dir='$installman3dir'
103 installprivlib='$installprivlib'
104 installarchlib='$installarchlib'
105 installsitelib='$installsitelib'
106 installsitearch='$installsitearch'
107 path_sep='|'
108 startperl='\$ perl 'f\$env("procedure")' 'p1' 'p2' 'p3' 'p4' 'p5' 'p6' 'p7' 'p8' !
109 \$ exit++ + ++\$status != 0 and \$exit = \$status = undef;'
110 EndOfIntro
111
112 foreach (@ARGV) {
113   ($key,$val) = split('=',$_,2);
114   if ($key eq 'cc') {  # Figure out which C compiler we're using
115     my($cc,$ccflags) = split('/',$val,2);
116     my($d_attr);
117     $ccflags = "/$ccflags";
118     if ($ccflags =~s!/DECC!!ig) { 
119       $cc .= '/DECC';
120       $cctype = 'decc';
121       $d_attr = 'undef';
122     }
123     elsif ($ccflags =~s!/VAXC!!ig) {
124       $cc .= '/VAXC';
125       $cctype = 'vaxc';
126       $d_attr = 'undef';
127     }
128     elsif (`$val/NoObject/NoList _nla0:/Version` =~ /GNU C version (\S+)/) {
129       $cctype = 'gcc';
130       $d_attr = 'define';
131       print OUT "gccversion='$1'\n";
132     }
133     elsif ($archsufx eq 'VAX' &&
134            # Check exit status too, in case message is turned off
135            ( `$val/NoObject/NoList /prefix=all _nla0:` =~ /IVQUAL/ ||
136               $? == 0x38240 )) {
137       $cctype = 'vaxc';
138       $d_attr = 'undef';
139     }
140     else {
141       $cctype = 'decc';
142       $d_attr = 'undef';
143     }
144     print OUT "vms_cc_type='$cctype'\n";
145     print OUT "d_attribut='$d_attr'\n";
146     print OUT "cc='$cc'\n";
147     if ( ($cctype eq 'decc' and $archsufx eq 'VAX') || $cctype eq 'gcc') {
148       # gcc and DECC for VAX requires filename in /object qualifier, so we
149       # have to remove it here.  Alas, this means we lose the user's
150       # object file suffix if it's not .obj.
151       $ccflags =~ s#/obj(?:ect)?=[^/\s]+##i;
152     }
153     print OUT "ccflags='$ccflags'\n";
154     $dosock = ($ccflags =~ m!/DEF[^/]+VMS_DO_SOCKETS!i and
155                $ccflags !~ m!/UND[^/]+VMS_DO_SOCKETS!i);
156     print OUT "d_vms_do_sockets=",$dosock ? "'define'\n" : "'undef'\n";
157     print OUT "d_socket=",$dosock ? "'define'\n" : "'undef'\n";
158     print OUT "d_sockpair=",$dosock ? "'define'\n" : "'undef'\n";
159     print OUT "d_gethent=",$dosock ? "'define'\n" : "'undef'\n";
160     print OUT "d_select=",$dosock ? "'define'\n" : "'undef'\n";
161     print OUT "i_niin=",$dosock ? "'define'\n" : "'undef'\n";
162     print OUT "i_neterrno=",$dosock ? "'define'\n" : "'undef'\n";
163
164     if ($cctype eq 'decc') { $rtlhas  = 'define'; }
165     else                   { $rtlhas  = 'undef';  }
166     foreach (qw[ d_stdstdio d_stdio_ptr_lval d_stdio_cnt_lval d_stdiobase
167                  d_locconv d_setlocale i_locale d_mbstowcs d_mbtowc
168                  d_wcstombs d_wctomb d_mblen d_mktime d_strcoll d_strxfrm ]) {
169       print OUT "$_='$rtlhas'\n";
170     }
171     next;
172   }
173   elsif ($key eq 'exe_ext') { 
174     my($nodot) = $val;
175     $nodot =~ s!\.!!;
176     print OUT "so='$nodot'\ndlext='$nodot'\n";
177   }
178   elsif ($key eq 'obj_ext') { print OUT "dlobj='dl_vms$val'\n";     }
179   print OUT "$key='$val'\n";
180 }
181
182 # Are there any other logicals which TCP/IP stacks use for the host name?
183 $myname = $ENV{'ARPANET_HOST_NAME'}  || $ENV{'INTERNET_HOST_NAME'} ||
184           $ENV{'MULTINET_HOST_NAME'} || $ENV{'UCX$INET_HOST'}      ||
185           $ENV{'TCPWARE_DOMAINNAME'} || $ENV{'NEWS_ADDRESS'};
186 if (!$myname) {
187   ($myname) = `hostname` =~ /^(\S+)/;
188   if ($myname =~ /IVVERB/) {
189     warn "Can't determine TCP/IP hostname" if $dosock;
190     $myname = '';
191   }
192 }
193 $myname = $ENV{'SYS$NODE'} unless $myname;
194 ($myhostname,$mydomain) = split(/\./,$myname,2);
195 print OUT "myhostname='$myhostname'\n" if $myhostname;
196 if ($mydomain) {
197   print OUT "mydomain='.$mydomain'\n";
198   print OUT "perladmin='$cf_by\@$myhostname.$mydomain'\n";
199   print OUT "cf_email='$cf_by\@$myhostname.$mydomain'\n";
200 }
201 else {
202   print OUT "perladmin='$cf_by'\n";
203   print OUT "cf_email='$cf_by'\n";
204 }
205 chomp($hwname = `Write Sys\$Output F\$GetSyi("HW_NAME")`);
206 $hwname = $archsufx if $hwname =~ /IVKEYW/;  # *really* old VMS version
207 print OUT "myuname='VMS $myname $osvers $hwname'\n";
208
209 # Before we read the C header file, find out what config.sh constants are
210 # equivalent to the C preprocessor macros
211 if (open(SH,"${outdir}config_h.SH")) {
212   while (<SH>) {
213     next unless m%^#(?!if).*\$%;
214     s/^#//; s!(.*?)\s*/\*.*!$1!;
215     my(@words) = split;
216     $words[1] =~ s/\(.*//;  # Clip off args from macro
217     # Did we use a shell variable for the preprocessor directive?
218     if ($words[0] =~ m!^\$(\w+)!) { $pp_vars{$words[1]} = $1; }
219     if (@words > 2) {  # We may also have a shell var in the value
220       shift @words;              #  Discard preprocessor directive
221       my($token) = shift @words; #  and keep constant name
222       my($word);
223       foreach $word (@words) {
224         next unless $word =~ m!\$(\w+)!;
225         $val_vars{$token} = $1;
226         last;
227       }
228     }
229   }
230   close SH;
231 }
232 else { warn "Couldn't read ${outdir}config_h.SH: $!\n"; }
233 $pp_vars{UNLINK_ALL_VERSIONS} = 'd_unlink_all_versions';  # VMS_specific
234
235 # OK, now read the C header file, and retcon statements into config.sh
236 while (<IN>) {  # roll through the comment header in Config.VMS
237   last if /config-start/;
238 }
239
240 while (<IN>) {
241   chop;
242   while (/\\\s*$/) {  # pick up contination lines
243     my $line = $_;
244     $line =~ s/\\\s*$//;
245     $_ = <IN>;
246     s/^\s*//;
247     $_ = $line . $_;
248   }              
249   next unless my ($blocked,$un,$token,$val) =
250                  m%^(\/\*)?\s*\#\s*(un)?def\w*\s+([A-Za-z0-9]\w+)\S*\s*(.*)%;
251   if (/config-skip/) {
252     delete $pp_vars{$token} if exists $pp_vars{$token};
253     delete $val_vars{$token} if exists $val_vars{$token};
254     next;
255   }
256   $val =~ s!\s*/\*.*!!; # strip off trailing comment
257   my($had_val); # Maybe a macro with args that we just #undefd or commented
258   if (!length($val) and $val_vars{$token} and ($un || $blocked)) {
259     print OUT "$val_vars{$token}=''\n";
260     delete $val_vars{$token};
261     $had_val = 1;
262   }
263   $state = ($blocked || $un) ? 'undef' : 'define';
264   if ($pp_vars{$token}) {
265     print OUT "$pp_vars{$token}='$state'\n";
266     delete $pp_vars{$token};
267   }
268   elsif (not length $val and not $had_val) {
269     # Wups -- should have been shell var for C preprocessor directive
270     warn "Constant $token not found in config_h.SH\n";
271     $token = lc $token;
272     $token = "d_$token" unless $token =~ /^i_/;
273     print OUT "$token='$state'\n";
274   }
275   next unless length $val;
276   $val =~ s/^"//; $val =~ s/"$//;               # remove end quotes
277   $val =~ s/","/ /g;                            # make signal list look nice
278   # Library directory; convert to VMS syntax
279   $val = VMS::Filespec::vmspath($val) if ($token =~ /EXP$/);
280   if ($val_vars{$token}) {
281     print OUT "$val_vars{$token}='$val'\n";
282     if ($val_vars{$token} =~ s/exp$//) {print OUT "$val_vars{$token}='$val'\n";}
283     delete $val_vars{$token};
284   }
285   elsif (!$pp_vars{$token}) {  # Haven't seen it previously, either
286     warn "Constant $token not found in config_h.SH (val=|$val|)\n";
287     $token = lc $token;
288     print OUT "$token='$val'\n";
289     if ($token =~ s/exp$//) {print OUT "$token='$val'\n";}
290   }
291 }
292 close IN;
293 # Special case -- preprocessor manifest "VMS" is defined automatically
294 # on VMS systems, but is also used erroneously by the Perl build process
295 # as the manifest for the obsolete variable $d_eunice.
296 print OUT "d_eunice='undef'\n";  delete $pp_vars{VMS};
297
298 foreach (sort keys %pp_vars) {
299   warn "Didn't see $_ in $infile\n";
300 }
301 foreach (sort keys %val_vars) {
302   warn "Didn't see $_ in $infile(val)\n";
303 }
304
305 if (open(OPT,"${outdir}crtl.opt")) {
306   while (<OPT>) {
307     next unless m#/(sha|lib)#i;
308     chomp;
309     if (/crtl/i || /gcclib/i) { push(@crtls,$_); }
310     else                      { push(@libs,$_);  }
311   }
312   close OPT;
313   print OUT "libs='",join(' ',@libs),"'\n";
314   push(@crtls,'(DECCRTL)') if $cctype eq 'decc';
315   print OUT "libc='",join(' ',@crtls),"'\n";
316 }
317 else { warn "Can't read ${outdir}crtl.opt - skipping 'libs' & 'libc'"; }
318
319 if (open(PL,"${outdir}patchlevel.h")) {
320   while (<PL>) {
321     if    (/^#define PATCHLEVEL\s+(\S+)/) { print OUT "PATCHLEVEL='$1'\n"; }
322     elsif (/^#define SUBVERSION\s+(\S+)/) { print OUT "SUBVERSION='$1'\n"; }
323   }
324   close PL;
325 }
326 else { warn "Can't read ${outdir}patchlevel.h - skipping 'PATCHLEVEL'"; }
327
328 # simple pager support for perldoc                                             
329 if    (`most not..file` =~ /IVVERB/) {
330   $pager = 'more';
331   if (`more nl:` =~ /IVVERB/) { $pager = 'type/page'; }
332 }
333 else { $pager = 'most'; }
334 print OUT "pager='$pager'\n";
335
336 close OUT;