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