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