1 $! OpenVMS configuration procedure for Perl -- do not attempt to run under DOS
2 $ sav_ver = 'F$VERIFY(0)'
3 $ on control_y then goto clean_up
6 $! For example, if you unpacked perl into: [USER.PERL-5n...] then you will
7 $! want to cd into the tree and execute Configure:
9 $! $ SET DEFAULT [USER.PERL5_xxx]
14 $! $ SET DEFAULT [USER.PERL5_xxx]
15 $! $ @Configure "-des"
17 $! That's it. If you get into a bind trying to build perl on VMS then
18 $! definitely read through the README.VMS file.
19 $! Beyond that send email to vmsperl@perl.org
21 $! ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
23 $! send suggestions to:
24 $! Dan Sugalski <dan@sidhe.org>
27 $! Adapted and converted from Larry Wall & Andy Dougherty's
28 $! "Configure generated by metaconfig 3.0 PL60." by Peter Prymmer
29 $! (a Bourne sh[ell] script for configuring the installation of perl
30 $! on non-VMS systems) in the perl5.002|3 epoch (spring/summer 1996)
31 $! with much valuable help from Charles Bailey &
32 $! the whole VMSPerl crew.
33 $! Extended and messed about with by Dan Sugalski
35 $! VMS-isms we will need:
36 $ echo = "write sys$output "
38 $ delete := delete ! local symbol overrides globals with qualifiers
46 $ be_case_sensitive = "n"
47 $ use_vmsdebug_perl = "n"
50 $ C_Compiler_Replace = "CC="
51 $ Thread_Live_Dangerously = "MT="
52 $ use_two_pot_malloc = "N"
53 $ use_pack_malloc = "N"
54 $ use_debugmalloc = "N"
57 $ vms_default_directory_name = F$ENVIRONMENT("DEFAULT")
58 $ max_allowed_dir_depth = 3 ! e.g. [A.B.PERLxxx] not [A.B.C.PERLxxx]
59 $! max_allowed_dir_depth = 2 ! e.g. [A.PERLxxx] not [A.B.PERLxxx]
61 $! Sebastian Bazley's request: close the CONFIG handle with /NOLOG
62 $! qualifier "just in case" (configure.com is re @ed in a bad state).
63 $! This construct was tested to be not a problem as far back as
64 $! VMS V5.5-2, hopefully earlier versions are OK as well.
68 $! Now keep track of open files
70 $ vms_filcnt = F$GETJPI ("","FILCNT")
72 $!: compute my invocation name
73 $ me = F$ENVIRONMENT("PROCEDURE")
75 $! Many null statements (begin with colon ':') in the Bourne shell version of
76 $! this script serve as comments/placeholders. I have retained some of the ones
77 $! that will help you compare this .COM file to the sh version - as well as
78 $! leave placeholders for future improvements to this .COM file.
79 $! sfn = VMS "skipped for now"
81 $!: Proper PATH separator !sfn
82 $!: Proper PATH setting !sfn
83 $!: Sanity checks !sfn "Say '@''$me''"
84 $!: On HP-UX, large Configure scripts may exercise a bug in /bin/sh !sfn
85 $!: Configure runs within the UU subdirectory !->after find MANIFEST
86 $! <big long list of default values (mostly null)>
87 $!: We must find out about Eunice early !(?)
88 $!: list of known cpp symbols, sorted alphabetically !sfn
90 $!: default library list !sfn
91 $! <no hints files in use (yet?)>
92 $!: Extra object files, if any, needed on this platform. !sfn
93 $!: Possible local include directories to search. !sfn
94 $!: Set locincpth to "" in a hint file to defeat local include searches. !sfn
95 $!locincpth="/usr/local/include /opt/local/include /usr/gnu/include" !sfn
96 $!locincpth="$locincpth /opt/gnu/include /usr/GNU/include /opt/GNU/include"
97 $!: no include file wanted by default !sfn
99 $!: Possible local library directories to search. !sfn
100 $!loclibpth="/usr/local/lib /opt/local/lib /usr/gnu/lib" !sfn
101 $!loclibpth="$loclibpth /opt/gnu/lib /usr/GNU/lib /opt/GNU/lib" !sfn
102 $!: general looking path for locating libraries !sfn
103 $!glibpth="/lib/pa1.1 /usr/shlib /usr/lib/large /lib /usr/lib" !sfn
104 $!glibpth="$glibpth $xlibpth /lib/large /usr/lib/small /lib/small" !sfn
105 $!glibpth="$glibpth /usr/ccs/lib /usr/ucblib /usr/shlib" !sfn
106 $!: Private path used by Configure to find libraries. Its value !sfn
107 $!: is prepended to libpth. This variable takes care of special !sfn
108 $!: machines, like the mips. Usually, it should be empty. !sfn
110 $!: full support for void wanted by default !sfn
111 $!defvoidused=15 !sfn
112 $!: List of libraries we want. !sfn
113 $!libswanted='net socket inet nsl nm ndbm gdbm dbm db malloc dl' !sfn
114 $!libswanted="$libswanted dld ld sun m c cposix posix ndir dir crypt" !sfn
115 $!libswanted="$libswanted ucb bsd BSD PW x" !sfn
116 $!: We probably want to search /usr/shlib before most other libraries. !sfn
117 $!: This is only used by the lib/ExtUtils/MakeMaker.pm routine extliblist. !sfn
118 $!glibpth=`echo " $glibpth " | sed -e 's! /usr/shlib ! !'` !sfn
119 $!glibpth="/usr/shlib $glibpth" !sfn
120 $!: Do not use vfork unless overridden by a hint file. !sfn
121 $!usevfork=false !sfn
122 $!: script used to extract .SH files with variable substitutions !sfn
123 $!: produce awk script to parse command line options !sfn
124 $!sfn (assume no sed awk) see below
125 $!: process the command line options
127 $!: set up default values
131 $ IF F$TYPE(config_sh) .EQS. "" THEN config_sh=""
142 $ use_5005_threads = "N"
148 $ THEN !one or more switches was thrown
155 $ config_args = config_args + F$FAO(" !AS",P'i')
158 $ IF (i.LT.9) THEN GOTO Param_loop !DCL allows P1..P8
162 $ IF (F$EXTRACT(0,1,P'i') .EQS. "-") THEN P'i' = P'i' - "-"
163 $ IF (F$EXTRACT(0,1,P'i') .EQS. "/") THEN P'i' = P'i' - "/"
164 $Remove_quotation_mark:
166 $ IF F$LOCATE("""",P'i') .LT. F$LENGTH(P'i') THEN GOTO Remove_quotation_mark
167 $ gotopt = "f" !"alse"
168 $ gotshortopt = "f" !"alse"
169 $ IF (F$EXTRACT(0,1,P'i') .EQS. "d")
172 $ gotopt = "t" !"rue"
174 $ gotshortopt = "t" !"rue"
176 $ IF (F$EXTRACT(0,1,P'i') .EQS. "e")
183 $ IF (F$EXTRACT(0,1,P'i') .EQS. "f") ! "-f"
187 $ IF (F$SEARCH(config_sh).NES."")
189 $ test_config_sh = F$FILE_ATTRIBUTES(config_sh,"PRO")
190 $ IF (F$LOCATE("R",test_config_sh).NE.F$LENGTH(test_config_sh))
193 $ CONTINUE !at this point check UIC && if test allows...
196 $ echo "''me': cannot read config file ''config_sh'."
200 $ echo "''me': cannot read config file ''config_sh'."
205 $ IF (F$EXTRACT(0,1,P'i') .EQS. "h") ! "-h"
212 $ IF (F$EXTRACT(0,1,P'i') .EQS. "m") ! "-m"
219 $ IF (F$EXTRACT(0,1,P'i') .EQS. "r") ! "-r"
226 $ IF (F$EXTRACT(0,1,P'i') .EQS. "s") ! "-s"
233 $ IF (F$EXTRACT(0,1,P'i') .EQS. "E") ! "-E"
238 $ IF (F$EXTRACT(0,1,P'i') .EQS. "K") ! "-K"
245 $ IF (F$EXTRACT(0,1,P'i') .EQS. "O") ! "-O"
252 $ IF (F$EXTRACT(0,1,P'i') .EQS. "S") ! "-S"
254 $ extractsh = "true" !VMS? Yes with munchconfig
259 $ IF (F$EXTRACT(0,1,P'i') .EQS. "D") ! "-D"
262 $ IF (F$LOCATE("=",P'i') .EQ. F$LENGTH(P'i'))
264 $ tmp = P'i' + "=""define"""
268 $ IF (F$LOCATE("=",P'i') .EQ. (F$LENGTH(P'i') - 1))
270 $ me = F$PARSE(me,,,"NAME") + F$PARSE(me,,,"TYPE")
271 $ echo "''me': use ""-Usymbol=val"" not ""-Dsymbol=""."
272 $ echo "''me': ignoring -D",P'i'
274 $ tmp = F$EXTRACT(0,F$LOCATE("=",P'i'),P'i')
275 $ tmp = tmp + "=""" + F$EXTRACT(F$LOCATE("=",P'i')+1,F$LENGTH(P'i'),P'i') + """"
282 $ IF (F$EXTRACT(0,1,P'i') .EQS. "U") ! "-U"
285 $ IF (F$LOCATE("=",P'i') .EQ. F$LENGTH(P'i'))
287 $ tmp = P'i' + "="""""
291 $ IF (F$LOCATE("=",P'i') .LT. (F$LENGTH(P'i') - 1))
293 $ me = F$PARSE(me,,,"NAME") + F$PARSE(me,,,"TYPE")
294 $ echo "''me': use ""-Dsymbol=val"" not ""-Usymbol=val""."
295 $ echo "''me': ignoring -U",P'i'
297 $ tmp = P'i' + "=""undef"""
304 $ IF (F$EXTRACT(0,1,P'i') .EQS. "V")
306 $ me = F$PARSE(me,,,"NAME") + F$PARSE(me,,,"TYPE")
307 $ echo "''me' generated by an unknown version of EDT."
313 $ echo "''me': unknown option ",P'i'
316 $ IF (F$LENGTH(P'i').GT.0).AND.(gotshortopt) THEN i = i - 1 !clustered switch
318 $ IF (i .LT. (bang + 1)) THEN GOTO Opt_loop
320 $ ENDIF ! (P1 .NES. "")
321 $ config_args = F$EDIT(config_args,"TRIM")
325 $ me = F$PARSE(me,,,"DIRECTORY")+ F$PARSE(me,,,"NAME")
326 $ echo "Usage: @''me' [-dehmr""EKOSV""] [-fconfig.sh] [""-Dsymbol""] [""-Dsymbol=value""]"
327 $ echo " [-Usymbol] [-Usymbol=]"
330 "-d" : use defaults for all answers.
331 "-e" : go on without questioning past the production of config.sh. *
332 "-f" : specify an alternate default configuration file.
333 "-h" : print this help message and exit (with an error status).
334 "-m" : skip the MANIFEST check to see that all files are present
335 "-r" : reuse C symbols value if possible (skips costly nm extraction).*
336 "-s" : silent mode, only echoes questions and essential information.
337 -"D" : define symbol to have some value: *
338 -"Dsymbol" symbol gets the value 'define'
339 -"Dsymbol=value" symbol gets the value 'value'
340 -E : stop at the end of questions, after having produced config.sh. *
341 -K : do not use unless you know what you are doing.
342 -O : let -D and -U override definitions from loaded configuration file. *
343 -S : perform variable substitutions on all .SH files (can mix with -f) *
344 -"U" : undefine symbol: *
345 -"Usymbol" symbol gets the value 'undef'
346 -"Usymbol=" symbol gets completely empty
347 -V : print version number and exit (with a zero status).
349 $ echo "%Config-I-VMS, lower case switches must be enclosed"
350 $ echo "-Config-I-VMS, in double quotation marks, e.g.:"
351 $ echo "-Config-I-VMS, @Configure ""-des"""
352 $ echo "-Config-I-VMS, * indicates switch may not be fully implemented for VMS."
353 $ SET DEFAULT 'vms_default_directory_name' !be kind rewind
355 $ EXIT 3 ! $STATUS = "%X00000003" (informational)
361 $ IF F$Mode() .eqs. "BATCH"
363 $ STDOUT = F$PARSE(F$GETQUI("DISPLAY_ENTRY", "JOB_NAME"), -
364 F$GETQUI("DISPLAY_ENTRY", "LOG_SPECIFICATION"), ".LOG")
365 $ WRITE SYS$OUTPUT "Warning: Executing in batch mode. To avoid file locking conflicts,"
366 $ WRITE SYS$OUTPUT "output intended for SYS$OUTPUT will be sent to a new version"
367 $ WRITE SYS$OUTPUT STDOUT
369 $ STDOUT = F$TRNLNM("SYS$OUTPUT")
371 $ DEFINE SYS$OUTPUT "_NLA0:"
372 $ echo4 = "write STDOUT "
373 $ cat4 = "TYPE/OUTPUT=''STDOUT'"
374 $ open/write/share=read STDOUT 'STDOUT'
382 $ echo4 = "write SYS$OUTPUT "
386 $!: run the defines and the undefines, if any, but leave the file out there...
387 $! Unfortunately Configure.COM in DCL is not yet set up to do this -
392 $ packageup = F$EDIT((package - "5"),"UPCASE")
394 $!: Eunice requires " " instead of "", can you believe it
397 $ echo "Beginning of configuration questions for ''package'."
400 $!: Some greps do not return status, grrr.
401 $ contains = "SEARCH"
403 $!: first determine how to suppress newline on echo command !cant DCL is record oriented
404 $! echo "Checking ''echo' to see how to suppress newlines..."
405 $! echo "giving up..."
406 $! echo "The star should be here-->*"
408 $!: Now test for existence of everything in MANIFEST
410 $ echo4 "First let's make sure your kit is complete. Checking..."
413 $! Here I assume we are in the [foo.PERLxxx...] tree
414 $! because the search routine simply does set def [-] if necessary.
415 $ file_2_find = "MANIFEST" !I hope this one is not in [foo.PERL5xxx.VMS...]
417 $ manifestfound = F$SEARCH(file_2_find)
418 $ IF (manifestfound .EQS. "")
420 $ IF F$PARSE(F$ENVIRONMENT("DEFAULT"),,,"DIRECTORY",).NES."[000000]"
423 $ GOTO Research_manifest
426 $ echo "There is no MANIFEST file. I hope your kit is complete !"
428 $ GOTO Beyond_manifest
431 $! MANIFEST. has been found and we have set def'ed there.
432 $! Time to bail out before it's too late, i.e. too deep.
433 $! Depth check is unnecessary on Alpha VMS V7.2++ (even for ODS-2).
434 $ tmp = f$extract(1,3,f$edit(f$getsyi("VERSION"),"TRIM,COLLAPSE"))
435 $ IF (tmp .GES. "7.2") .AND. (F$GETSYI("HW_MODEL") .GE. 1024) THEN GOTO Beyond_depth_check
436 $! Depth check also unnecessary on ODS 5 (or later) file systems.
437 $ tmp = F$INTEGER(F$GETDVI(F$ENVIRONMENT("DEFAULT"),"ACPTYPE") - "F11V")
438 $ IF (tmp .GE. 5) THEN GOTO Beyond_depth_check
439 $ IF (F$ELEMENT(max_allowed_dir_depth,".",F$ENVIRONMENT("DEFAULT")).nes.".")
443 %Config-E-VMS, ERROR:
444 Sorry! It apears as though your perl build sub-directory is already too
445 deep into the VMS file system. Please try moving stuff into a shallower
446 directory (or altering the "max_allowed_dir_depth" parameter).
448 $ echo4 "ABORTING..."
449 $ SET DEFAULT 'vms_default_directory_name' !be kind rewind
451 $ EXIT !2 !$STATUS = "%X00000002" (error)
455 $! after finding MANIFEST let's create (but not yet enter) the UU subdirectory
457 $ IF (manifestfound .NES. "")
459 $ IF ( F$SEARCH("UU.DIR").EQS."" )
461 $ CREATE/DIRECTORY [.UU]
463 $ IF ( F$SEARCH("[.UU]*.*").NES."" ) THEN DELETE/NOLOG [.UU]*.*;*
465 $!: Configure runs within the UU subdirectory
468 $! a little redundancy never hurt anybody?
469 $ file_2_find = "[-]" + file_2_find
470 $ manifestfound = F$SEARCH(file_2_find)
472 $ OPEN/WRITE MISSING MISSING.
473 $!change to "FALSE" if you wish to skip the manifest search
474 $!(which after all is rather slow in DCL :-)
477 $ echo "Skipping MANIFEST check as requested"
480 $ OPEN/READ CONFIG 'manifestfound'
482 $ READ/END_OF_FILE = Done_manifest CONFIG line
483 $! This algorithm turns "foo/bar/baz.c" into "[.foo.bar]baz.c"
484 $! pvhp@lns62.lns.cornell.edu 10-JUN-1996 20:31:46
485 $! 2-MAR-1998 15:46:11 Improved to turn "foo/bar/baz.c.buz"
486 $! into "[.foo.bar]baz.c_buz as happens with vmstar and unzip
487 $ line = F$EDIT(line,"TRIM, COMPRESS")
488 $ file_2_find = F$EXTRACT(0,F$LOCATE(" ",line),line)
489 $ IF F$LOCATE("/",file_2_find) .NE. F$LENGTH(file_2_find)
491 $Re_strip_line_manifest:
492 $ loca = F$LOCATE("/",file_2_find)
493 $ ante = F$EXTRACT(0,loca,file_2_find)
494 $ post = F$EXTRACT(loca,F$LENGTH(file_2_find),file_2_find)
495 $ test_this = ante + "." + (post - "/")
496 $ IF F$LOCATE("/",test_this) .NE. F$LENGTH(test_this)
498 $ file_2_find = ante + "." + (post - "/")
499 $ GOTO Re_strip_line_manifest
501 $ file_2_find = ante + "]" + (post - "/")
503 $ file_2_find = "[-."+file_2_find
505 $ file_2_find = "[-]" + file_2_find
508 $ dirname = F$EXTRACT(0,F$LOCATE("]",file_2_find),file_2_find) + "]"
509 $ file_2_find = file_2_find - dirname
511 $! may not need double dot check on ODS-5 volumes
512 $ found = F$SEARCH(dirname + file_2_find)
513 $ IF found .NES. "" THEN GOTO Read_loop_manifest
517 $ dot_ele = F$ELEMENT(dots,".",file_2_find)
518 $ IF dot_ele .EQS. "." THEN GOTO Eo_dot_loop
520 $ THEN basename = f$extract(0,f$locate(".",file_2_find),file_2_find) + "."
521 $ ELSE basename = basename + dot_ele + "_"
526 $ IF (((f$length(file_2_find)+1) .eq. f$length(basename)) .and. -
527 (f$extract(f$length(basename)-1,1,basename) .eqs. "_")) THEN -
528 basename = f$extract(0,f$length(basename)-1,basename)
529 $ file_2_find = dirname + basename
531 $ found = F$SEARCH(file_2_find)
532 $ IF (found .EQS. "" .AND. dots .GT. 2)
534 $! 17-DEC-1999 Improved to turn "[.foo.bar]baz.c_buz" into
535 $! "[.foo.bar]baz_c.buz" to cover unzipped archives and put
536 $! "[.foo.bar]baz.c_buz,baz_c.buz" into missing list if neither is found.
537 $ basename[f$locate(".",basename),1] := _
538 $ dot_ele = F$ELEMENT(dots - 1,"_",basename)
540 f$extract(0,f$length(basename)-(f$length(dot_ele)+1),basename) -
542 $ found = F$SEARCH(dirname + basename)
543 $ file_2_find = file_2_find + "," + basename
545 $ IF (found .EQS. "")
547 $ WRITE MISSING file_2_find
548 $ IF ((F$LENGTH(miss_list)+F$LENGTH(file_2_find)).LT.250)
550 $ miss_list = miss_list + "," + file_2_find
553 $ GOTO Read_loop_manifest
558 $ ENDIF ! (manifestfound .NES. "")
560 $ IF (miss_list .NES. "")
562 $ echo "Some of the files not found include:"
565 $ IF ((miss_list .NES. "").OR.(manifestfound .EQS. ""))
571 THIS PACKAGE SEEMS TO BE INCOMPLETE.
573 You have the option of continuing the configuration process, despite the
574 distinct possibility that your kit is damaged, by typing 'y'es. If you
575 do, don't blame me if something goes wrong. I advise you to type 'n'o
576 and contact the author (dan@sidhe.org)
579 $ READ SYS$COMMAND/PROMPT="Continue? [n] " ans
582 $ echo4 "Continuing..."
584 $ echo4 "ABORTING..."
588 $ echo4 "Looks good..."
589 $ DELETE/NOLOG MISSING.;
590 $ ENDIF ! (miss_list .NES. "")
591 $ ENDIF ! (manifestfound .EQS. "") ELSE
593 $! after finding MANIFEST (see above)
594 $!: Configure runs within the UU subdirectory
596 $!: compute the number of columns on the terminal for proper question formatting
597 $ IF F$MODE() .EQS. "BATCH"
598 $! else it winds up being 512 in batch
600 $ ELSE COLUMNS = F$GETDVI("SYS$OUTPUT","DEVBUFSIZ")
602 $! "-des" sets SYS$OUTPUT to NL: with a DEVBUFSIZ too large (512 again)
603 $ IF COLUMNS .GT. 210 THEN COLUMNS = 80
604 $! not sure if this would actually be needed - it hopefully will not hurt
605 $ IF COLUMNS .LT. 40 THEN COLUMNS = 40
607 $!: set up the echo used in my read !sfn
608 $!: now set up to do reads with possible shell escape and default assignment !sfn
611 $! The sub_rp splitting is intended to handle long symbols such as the dflt for
616 $ len_rp = F$LENGTH(rp)
617 $ If (.NOT. silent) Then echo ""
622 $ sub_rp = F$EXTRACT(i_rp,COLUMNS,rp)
623 $ i_rp = i_rp + COLUMNS
624 $ if i_rp .LT. len_rp THEN echo4 "''sub_rp'"
625 $ IF i_rp .LT. len_rp THEN GOTO rp_loop
633 $ READ SYS$COMMAND/PROMPT="''sub_rp'" ans
635 $ IF (ans .EQS. "&-d")
637 $ echo4 "(OK, I will run with -d after this question.)"
639 $ deferred_fastread =1
642 $ IF (ans .EQS. "&-s")
644 $ echo4 "(OK, I will run with -s after this question.)"
646 $ deferred_silent = 1
649 $ if (bool_dflt .nes. "")
651 $ if (ans .eqs. "") then ans = bool_dflt
652 $ ans = f$extract(0,1,f$edit(ans,"collapse,upcase"))
653 $ if (ans .eqs. "Y" .or. ans .eqs. "1" .or. ans .eqs. "T")
657 $ if (ans .eqs. "N" .or. ans .eqs. "0" .or. ans .eqs. "F")
661 $ echo4 "Input not understood please answer 'Yes' or 'No'"
667 $ ans = f$edit(ans,"trim,compress")
668 $ if (ans .eqs. "") then ans = dflt
669 $ if (f$edit(ans,"upcase") .eqs. "NONE") then ans = ""
671 $ if f$type(deferred_silent) .nes. ""
675 $ delete/symbol deferred_silent
677 $ if f$type(deferred_fastread) .nes. ""
680 $ delete/symbol deferred_fastread
686 $!: create .config dir to save info across Configure sessions
687 $ IF ( F$SEARCH("[-]CONFIG.DIR").EQS."" )
689 $ CREATE/DIRECTORY [-.CONFIG]
690 $ OPEN/WRITE CONFIG [-.CONFIG]README.
692 "This directory created by Configure to save information that should"
694 "persist across sessions."
697 "You may safely delete it if you wish."
701 $ IF F$TYPE(usedevel) .EQS. "" THEN usedevel := n
702 $ patchlevel_h = F$SEARCH("[-]patchlevel.h")
703 $ IF (patchlevel_h.NES."")
705 $ SEARCH 'patchlevel_h' "define","PERL_VERSION","epoch"/match=and/out=[]ver.out
706 $ IF .NOT. usedevel .AND. usedevel .NES. "define"
708 $ OPEN/READ CONFIG []ver.out
711 $ tmp = F$EDIT(line,"TRIM,COMPRESS")
712 $ xpatchlevel = F$INTEGER(F$ELEMENT(2," ",tmp))
713 $ line = xpatchlevel / 2
714 $ tmp = xpatchlevel - ( line * 2 )
717 $ echo4 "patchlevel is " + F$STRING(xpatchlevel)
720 *** WHOA THERE!!! ***
722 This is an UNSTABLE DEVELOPMENT release.
723 (The patchlevel, is odd--as opposed to even,
724 and that signifies a development release. If you want a
725 maintenance release, you want an even-numbered release.)
727 Do ***NOT*** install this into production use.
728 Data corruption and crashes are possible.
730 It is most seriously suggested that you do not continue any further
731 unless you want to help in developing and debugging Perl.
735 $ rp="Do you really want to continue? [''bool_dflt'] "
736 $ fastread_save = fastread
739 $ fastread = fastread_save
740 $ delete/symbol fastread_save
743 $ echo4 "Okay, continuing."
746 $ DELETE/NOLOG/NOCONFIRM []ver.out;
753 $ DELETE/NOLOG/NOCONFIRM []ver.out;
755 $!: general instructions
758 $ user = F$EDIT(F$GETJPI("","USERNAME"),"TRIM,COLLAPSE")
759 $ IF .NOT.(F$SEARCH("[-.CONFIG]INSTRUCT.").EQS."")
761 $ messages = F$ENVIRONMENT("MESSAGE")
762 $ SET MESSAGE/NOFAC/NOSEV/NOIDENT/NOTEXT
763 $ contains /NOOUTPUT [-.CONFIG]INSTRUCT. 'user'
764 $ IF .NOT.($status.EQ.%X08D78053)
768 $ rp = "Would you like to see the instructions? [''bool_dflt'] "
770 $ if .NOT.ans THEN needman=""
772 $ SET MESSAGE 'messages'
774 $ if (fastread.AND.silent.AND.(alldone.eqs."cont")) THEN needman=""
781 This installation shell script will examine your system and ask you questions
782 to determine how the perl5 package should be installed. If you get
783 stuck on a question, you may use a ^C or ^Y shell escape to STOP this
784 process, edit something, then restart this process as you just did.
785 Many of the questions will have default answers in square
786 brackets; typing carriage return will give you the default.
789 $ READ SYS$COMMAND/PROMPT="Type carriage return to continue " ans
793 In a hurry? You may run '@Configure "-d"'. This will bypass nearly all
794 the questions and use the computed defaults (or the previous answers provided
795 there was already a config.sh file). Type '@Configure "-h"' for a list of
799 $ READ SYS$COMMAND/PROMPT="Type carriage return to continue " ans
803 Much effort has been expended to ensure that this shell script will
804 run on any VMS system. If despite that it blows up on yours, your
805 best bet is to edit Configure.com and @ it again. Whatever problems
806 you have with Configure.com, let me (dan@sidhe.org) know how I blew
810 $!This installation script affects things in two ways:
812 $!1) it may do direct variable substitutions on some of the files included
814 $!2) it builds a config.h file for inclusion in C programs. You may edit
815 $! any of these files as the need arises after running this script.
817 $!If you make a mistake on a question, there is no easy way to back up to it
820 $ READ SYS$COMMAND/PROMPT="Type carriage return to continue " ans
821 $ IF (F$SEARCH("[-.CONFIG]INSTRUCT.").EQS."")
823 $ OPEN/WRITE CONFIG [-.CONFIG]INSTRUCT.
827 $ ENDIF !(needman .EQS. "true")
829 $!: see if sh knows # comments !sfn
831 $!: figure out how to guarantee sh startup !sfn
832 $!: find out where common programs are !sfn
833 $!loclist="awk/cat/comm/cp/echo/expr/find/grep/ln/ls/mkdir/rm/sed/sort/touch/tr/uniq"
834 $!trylist="byacc/cpp/csh/date/egrep/less/line/more/nroff/perl/pg/sendmail/test/uname"
835 $! echo "I don't know where '$file' is, and my life depends on it."
836 $! echo "Go find a public domain implementation or fix your PATH setting!"
838 $! echo "Don't worry if any of the following aren't found..."
839 $!: determine whether symbolic links are supported !sfn
840 $!: see whether [:lower:] and [:upper:] are supported character classes !sfn
841 $!: set up the translation script tr, must be called with ./tr of course !sfn
843 $!: Try to determine whether config.sh was made on this system
844 $!: Get old answers from old config file if Configure was run on the
845 $!: same system, otherwise use the hints.
846 $ config_sh_es = "''config_sh'/[-]config.sh/[-.vms]config.vms/"
850 $ config_sh = F$ELEMENT(i,"/",config_sh_es)
852 $ IF (config_sh.NES."/").AND.(config_sh.NES."")
854 $ configshfound = F$SEARCH(config_sh)
855 $ IF (configshfound.NES."") THEN GOTO Config_sh_found
857 $ IF (i.LT.max) THEN GOTO Config_sh_look
858 $! genconfig.pl has "osname='VMS'"
859 $ osname = F$EDIT(F$GETSYI("NODE_SWTYPE"),"COLLAPSE")
860 $ IF (configshfound.EQS."")
862 $ config_sh = "[-]config.sh" ! the fallback default
863 $ GOTO Beyond_config_sh
866 $ IF F$TYPE(osname) .EQS. "" THEN osname = F$EDIT(F$GETSYI("NODE_SWTYPE"),"COLLAPSE")
868 $ IF F$TYPE(config_dflt) .NES. "" THEN bool_dflt = config_dflt
869 $ rp = "Shall I use ''config_sh' for default answers? [''bool_dflt'] "
874 $ echo "Fetching default answers from ''config_sh'..."
876 $! we do our own parsing of the shell-script stuff
877 $! ...and only accept symbols if they're in the | delimited list below
879 $ config_symbols0 ="|archlib|archlibexp|bin|binexp|builddir|cf_email|config_sh|installarchlib|installbin|installman1dir|installman3dir|"
880 $ config_symbols1 ="|installprivlib|installscript|installsitearch|installsitelib|most|oldarchlib|oldarchlibexp|osname|pager|perl_symbol|perl_verb|"
881 $ config_symbols2 ="|prefix|privlib|privlibexp|scriptdir|sitearch|sitearchexp|sitelib|sitelib_stem|sitelibexp|try_cxx|use64bitall|use64bitint|"
882 $ config_symbols3 ="|usecasesensitive|usedefaulttypes|usedevel|useieee|useithreads|usemultiplicity|usemymalloc|usedebugging_perl|useperlio|usesecurelog|"
883 $ config_symbols4 ="|usethreads|usevmsdebug|"
885 $ open/read CONFIG 'config_sh'
887 $ read/end=erd_conf_loop CONFIG line
888 $ line = f$edit(line,"trim")
889 $ if line .eqs. "" .or. f$extract(0,1,line) .eqs. "#" then goto rd_conf_loop
890 $ sym = f$element(0,"=",line)
891 $ if sym .eqs. "=" then goto rd_conf_loop
895 $ syms = config_symbols'k'
896 $ j = f$locate(dsym, syms)
897 $ if j .lt. f$length(syms) then goto erd_ck_loop
899 $ if k .lt. 5 then goto rd_ck_loop
902 $ val = f$element(1,"=",line)
903 $ val = f$extract(1,f$length(val)-2,val)
904 $ write sys$output "''sym' = ""''val'"""
909 $ delete/symbol config_symbols0
910 $ delete/symbol config_symbols1
911 $ delete/symbol config_symbols2
912 $ delete/symbol config_symbols3
913 $ delete/symbol config_symbols4
917 $ if f$type(usedebugging_perl) .nes. ""
919 $ useperldebug = usedebugging_perl
920 $ delete/symbol usedebugging_perl
924 $ if f$type(config_dflt) .nes. "" then DELETE/SYMBOL config_dflt
926 $!we actually do not have "hints/" for VMS
930 $!First time through, eh? I have some defaults handy for the following systems:
933 $! echo " ","VMS_VAX"
934 $! echo " ","VMS_AXP"
935 $! : Now look for a hint file osname_osvers, unless one has been
936 $! : specified already.
939 $!You may give one or more space-separated answers, or "none" if appropriate.
940 $!If your OS version has no hints, DO NOT give a wrong version -- say "none".
942 $! READ SYS$COMMAND/PROMPT="Which of these apply, if any? " ans
946 $!: Restore computed paths !sfn
948 $! %Config-I-VMS, a necessary error trap (could be PC running VCL)
950 $ IF (osname .NES. "VMS")
952 $ echo4 "Hmm.. I wonder what ''osname' is (?)"
956 %Config-E-VMS, ERROR:
958 Err, you do not appear to be running VMS!
959 This procedure is intended to Configure the building of Perl for VMS.
966 $ echo4 "Continuing..."
968 $ echo4 "ABORTING..."
969 $ SET DEFAULT 'vms_default_directory_name' !be kind rewind
971 $ EXIT 2 !$STATUS = "%X00000002" (error)
973 $ ENDIF !(osname .NES./.EQS. "VMS")
975 $!: who configured the system
976 $ cf_by = F$EDIT(user,"LOWERCASE")
977 $ osvers = F$EDIT(F$GETSYI("VERSION"),"TRIM")
979 $! Peter Prymmer has seen:
980 $! "SYS$TIMEZONE_DIFFERENTIAL" = "-46800" (sic)
981 $! "SYS$TIME_ZONE" = "EDT"
983 $! Charles Lane recommended:
984 $! "SYS$TIMEZONE_DIFFERENTIAL" = "-14400"
985 $! "NEWS_TIMEZONE" = "-0500"
986 $! "ST_TIMEZONE" = "EDT"
987 $! "JAN_TIME_ZONE" = "EST "
988 $! "MULTINET_TIMEZONE" = "EST"
989 $! "DAYLIGHT_SAVINGS" = "1"
991 $! Charles Bailey recommends (in ANU NEWS Doc Jan 1995):
993 $! "Multinet_Timezone"
994 $! "TCPware_Timezone"
997 $! This snippet o' DCL returns a string in default Unix `date` format,
998 $! and it will prompt to set SYS$TIMEZONE_DIFFERENTIAL.
1000 $ MIN_TZO = -840 !units are minutes here
1003 $ wkday = F$EXTRACT(0,3,F$CVTIME(,,"WEEKDAY"))
1004 $ monn = F$CVTIME(,,"MONTH")
1005 $ mday = F$EXTRACT(8,2,F$CVTIME(,,"DATE"))
1006 $ hour = F$CVTIME(,,"HOUR")
1007 $ min = F$CVTIME(,,"MINUTE")
1008 $ sec = F$CVTIME(,,"SECOND")
1009 $ year = F$CVTIME(,,"YEAR")
1011 $ months = "/Jan/Feb/Mar/Apr/May/Jun/Jul/Aug/Sep/Oct/Nov/Dec/"
1015 $ mon = F$ELEMENT(i,"/",months)
1016 $ IF i.LT.monn THEN GOTO Mon_loop
1019 $ systz = F$TRNLNM("SYS$TIMEZONE_DIFFERENTIAL")
1022 $ tzhour = F$INTEGER(systz)/3600
1023 $ tzmins = F$INTEGER(systz)/60
1024 $ tzminrem = tzmins - tzhour*60
1025 $ IF tzminrem.lt.0 THEN tzminrem = -1*tzminrem !keeps !2ZL happy
1027 $ THEN signothetime = "+"
1028 $ IF tzhour.EQ.0.AND.tzminrem.EQ.0
1029 $ THEN direction = "on GMT/"
1030 $ ELSE direction = "east of "
1032 $ ELSE signothetime = "-"
1033 $ tzhour = -1*tzhour !keeps !UL happy
1034 $ direction = "west of "
1037 $ echo "According to the setting of your ""SYS$TIMEZONE_DIFFERENTIAL"" (= ''systz')"
1040 $ tzspan = "''tzhour' hours & ''tzminrem' minutes"
1042 $ tzspan = "''tzhour' hours"
1045 $ echo "Your system is ''tzspan' ''direction'UTC in England."
1046 $ rp = "(''systz') Is this UTC Time Zone Offset correct? [''bool_dflt'] "
1052 $ GOTO Beyond_TimeZone
1056 $ echo4 """SYS$TIMEZONE_DIFFERENTIAL"" does not appear to be DEFINEd on your system"
1061 $ echo "Please tell me in hh:mm form what time offset from GMT/UTC in England"
1062 $ echo "you are. As an example Eastern (US) Standard Time is -5:00 offset, but"
1063 $ echo "Eastern Daylight Time (summer) is -4:00 offset."
1065 $ rp = "Enter the Time Zone offset: [''dflt'] "
1067 $ ans = F$Edit(ans,"collapse,trim,uncomment,upcase")
1068 $ IF ans.EQS."" THEN ans = dflt
1069 $ tzhour = F$ELEMENT(0,":","''ans'") !first
1070 $ IF tzhour.EQS."" THEN tzhour = 0
1071 $ tzhour = F$INTEGER(tzhour)
1072 $ tzminrem = F$ELEMENT(1,":","''ans'") !second
1073 $ IF tzminrem.NES.""
1075 $ tzminrem = F$INTEGER(tzminrem)
1076 $ IF F$EXTRACT(0,1,"''ans'") .EQS. "-" THEN tzminrem = tzminrem * -1
1080 $ tzmins = tzhour*60 + tzminrem
1081 $ tzd = F$STRING(tzmins*60)
1084 $ signothetime = "+"
1086 $ tzhour = -1*tzhour !keeps !UL happy
1087 $ signothetime = "-"
1089 $ IF (tzmins.GT.MAX_TZO).OR.(tzmins.LT.MIN_TZO)
1092 $ echo "%Config-W-VMS-TIMERANGE, Response must be in the range -14:00 to 14:00."
1097 $ tz = f$fao("UTC!AS!UL:!2ZL",signothetime,tzhour,tzminrem)
1098 $ cf_time = "''wkday' ''mon' ''mday' ''hour':''min':''sec' ''tz' ''year'"
1100 $!: determine the architecture name
1101 $! genconfig.pl has either archname='VMS_AXP' or 'VMS_VAX'
1102 $! Note that DCL in VMS V5.4 does not have F$GETSYI("ARCH_NAME")
1103 $! but does have F$GETSYI("HW_MODEL").
1104 $! Please try to use either archname .EQS. "VMS_VAX" or archname .EQS.
1105 $! "VMS_AXP" from here on to allow cross-platform configuration (e.g.
1106 $! configure a VAX build on an Alpha).
1108 $ IF (F$GETSYI("HW_MODEL") .LT. 1024)
1110 $ archname = "VMS_VAX"
1111 $ otherarch = "an Alpha"
1113 $ arch_type = "ARCH-TYPE=__VAX__"
1115 $ archname = "VMS_AXP"
1116 $ otherarch = "a VAX"
1118 $ arch_type = "ARCH-TYPE=__AXP__"
1121 $ rp = "What is your architecture name? [''archname'] "
1125 $ ans = F$EDIT(ans,"COLLAPSE, UPCASE")
1126 $ IF (ans.NES.archname) !.AND.knowitall
1128 $ echo4 "I'll go with ''archname' anyway..."
1132 $ vms_prefix = "perl_root"
1133 $ vms_prefixup = F$EDIT(vms_prefix,"UPCASE")
1134 $ rp = "Will you be sharing your ''vms_prefixup' with ''otherarch'? [''bool_dflt'] "
1141 $ IF (archname.EQS."VMS_AXP")
1143 $ macros = macros + """AXE=1"","
1147 $!: is AFS running? !sfn
1148 $!: decide how portable to be. Allow command line overrides. !sfn
1149 $!: set up shell script to do ~ expansion !sfn
1150 $!: expand filename !sfn
1151 $!: now set up to get a file name !sfn
1153 $ IF F$TYPE(prefix) .EQS. ""
1155 $ prefix = F$ENVIRONMENT("DEFAULT") - ".UU]" + "]"
1156 $ prefix = F$PARSE(prefix,,,,"NO_CONCEAL") - "][" - "000000." - ".000000" - ".;"
1157 $ prefixbase = prefix - "]"
1158 $! Add _ROOT to make install PERL_ROOT differ from build directory.
1159 $ prefix = prefixbase + "_ROOT.]"
1162 $!: determine root of directory hierarchy where package will be installed.
1167 $ echo "By default, ''package' will be installed in ''dflt', pod"
1168 $ echo "pages under ''prefixbase'.LIB.POD], etc..., i.e. with ''dflt' as prefix for"
1169 $ echo "all installation directories."
1170 $ echo "On ''osname' the prefix is used to DEFINE the ''vms_prefixup' prior to installation"
1171 $ echo "as well as during subsequent use of ''package' via ''packageup'_SETUP.COM."
1173 $ rp = "Installation prefix to use (for ''vms_prefixup')? [ ''dflt' ] "
1178 $ IF F$LOCATE(".]",ans) .EQ. F$LENGTH(ans) THEN prefix = prefix - "]" + ".]"
1182 $ perl_root = prefix
1184 $! Check here for pre-existing PERL_ROOT.
1185 $! -> ask if removal desired.
1186 $! Check here for writability of requested PERL_ROOT if it is not the default (cwd).
1187 $! -> recommend letting PERL_ROOT be PERL_SRC if requested PERL_ROOT is not writable.
1189 $ tmp = perl_root - ".]" + "]"
1190 $ dflt = f$parse(tmp,,,,)
1193 $ echo4 "''tmp' does not yet exist."
1194 $! create/directory 'tmp'
1196 $ echo4 "''tmp' already exists."
1199 $ vms_skip_install = "true"
1202 $ rp = "Skip the remaining """"where install"""" questions? [''bool_dflt'] "
1204 $ IF (.NOT.ans) THEN vms_skip_install = "false"
1205 $ IF (.NOT.vms_skip_install)
1208 $!: set the prefixit variable, to compute a suitable default value
1210 $!: determine where private library files go
1211 $!: Usual default is /usr/local/lib/perl5. Also allow things like
1212 $!: /opt/perl/lib, since /opt/perl/lib/perl5 would be redundant.
1218 There are some auxiliary files for perl5 that need to be put into a
1219 private library directory that is accessible by everyone.
1222 $ IF F$TYPE(privlib) .NES. ""
1223 $ THEN dflt = privlib
1224 $ ELSE dflt = "''vms_prefix':[lib]"
1226 $ rp = "Pathname where the private library files will reside? "
1227 $ rp = F$FAO("!AS!/!AS",rp,"[ ''dflt' ] ")
1231 $ ENDIF !%Config-I-VMS, skip remaining "where install" questions
1233 $ IF F$TYPE(perl_symbol) .EQS. "" THEN perl_symbol := true
1234 $ IF F$TYPE(perl_verb) .EQS. "" THEN perl_verb = ""
1236 $ THEN bool_dflt = "y"
1237 $ ELSE bool_dflt = "n"
1242 $ echo "You may choose to write ''packageup'_SETUP.COM to assign a foreign"
1243 $ echo "symbol to invoke ''package', which is the usual method."
1244 $ echO "If you do not do so then you would need a DCL command verb at the"
1245 $ echo "process or the system wide level."
1247 $ rp = "Invoke perl as a global symbol foreign command? [''bool_dflt'] "
1249 $ IF (.NOT.ans) THEN perl_symbol = "false"
1251 $ IF (.NOT.perl_symbol)
1253 $ IF perl_verb .EQS. "DCLTABLES"
1254 $ THEN bool_dflt = "n"
1255 $ ELSE bool_dflt = "y"
1260 $ echo "Since you won't be using a symbol you must choose to put the ''packageup'"
1261 $ echo "verb in a per-process table or in the system wide DCLTABLES (which"
1262 $ echo "would require write privilege)."
1264 $ rp = "Invoke perl as a per process command verb? [ ''bool_dflt' ] "
1267 $ THEN perl_verb = "DCLTABLES"
1268 $ ELSE perl_verb = "PROCESS"
1270 $ ENDIF ! (.NOT.perl_symbol)
1272 $!: set the base revision
1274 $ revision = baserev - ".0"
1275 $!: get the patchlevel
1277 $ echo4 "Getting the current patchlevel..."
1278 $ patchlevel_h = F$SEARCH("[-]patchlevel.h")
1279 $ IF (patchlevel_h.NES."")
1281 $ got_patch = "false"
1283 $ got_api_revision = "false"
1284 $ got_api_version = "false"
1285 $ got_api_subversion = "false"
1286 $ got_perl_patchlevel= "false"
1287 $ OPEN/READONLY CONFIG 'patchlevel_h'
1289 $ READ/END_Of_File=Close_patch/ERROR=Close_patch CONFIG line
1290 $ IF ((F$LOCATE("#define PERL_VERSION",line).NE.F$LENGTH(line)).AND.(.NOT.got_patch))
1292 $ line = F$EDIT(line,"COMPRESS, TRIM")
1293 $ patchlevel = F$ELEMENT(2," ",line)
1294 $ got_patch = "true"
1296 $ IF ((F$LOCATE("#define PERL_SUBVERSION",line).NE.F$LENGTH(line)).AND.(.NOT.got_sub))
1298 $ line = F$EDIT(line,"COMPRESS, TRIM")
1299 $ subversion = F$ELEMENT(2," ",line)
1302 $ IF ((F$LOCATE("#define PERL_API_REVISION",line).NE.F$LENGTH(line)).AND.(.NOT.got_api_revision))
1304 $ line = F$EDIT(line,"COMPRESS, TRIM")
1305 $ api_revision = F$ELEMENT(2," ",line)
1306 $ got_api_revision = "true"
1308 $ IF ((F$LOCATE("#define PERL_API_VERSION",line).NE.F$LENGTH(line)).AND.(.NOT.got_api_version))
1310 $ line = F$EDIT(line,"COMPRESS, TRIM")
1311 $ api_version = F$ELEMENT(2," ",line)
1312 $ got_api_version = "true"
1314 $ IF ((F$LOCATE("#define PERL_API_SUBVERSION",line).NE.F$LENGTH(line)).AND.(.NOT.got_api_subversion))
1316 $ line = F$EDIT(line,"COMPRESS, TRIM")
1317 $ api_subversion = F$ELEMENT(2," ",line)
1318 $ got_api_subversion = "true"
1320 $ IF ((F$LOCATE("""DEVEL",line).NE.F$LENGTH(line)).AND.(.NOT.got_perl_patchlevel))
1322 $ line = F$EDIT(line,"COMPRESS, TRIM")
1323 $ perl_patchlevel = F$ELEMENT(1,"""",line)
1324 $ perl_patchlevel = perl_patchlevel - "DEVEL"
1325 $ got_perl_patchlevel = "true"
1327 $ IF (.NOT. got_patch) .OR. -
1328 (.NOT. got_sub) .OR. -
1329 (.NOT. got_api_revision) .OR. -
1330 (.NOT. got_api_version) .OR. -
1331 (.NOT. got_api_subversion) .OR. -
1332 (.NOT. got_perl_patchlevel) -
1333 THEN GOTO Patchlevel_h_loop
1341 $ api_subversion="0"
1342 $ perl_patchlevel="0"
1344 $ version_patchlevel_string = "version ''patchlevel' subversion ''subversion'"
1345 $ IF got_perl_patchlevel .AND. perl_patchlevel .NES. "0"
1347 $ version_patchlevel_string = "''version_patchlevel_string' patch ''perl_patchlevel'"
1349 $ echo "(You have ''package' ''version_patchlevel_string'.)"
1351 $ version = revision + "_" + patchlevel + "_" + subversion
1353 $ IF (.NOT.vms_skip_install)
1355 $!: set the prefixup variable, to restore leading tilde escape !sfn
1357 $!: determine where public architecture dependent libraries go
1361 $ echo "''package' contains architecture-dependent library files. If you are"
1367 sharing libraries in a heterogeneous environment, you might store
1368 these files in a separate location. Otherwise, you can just include
1369 them with the rest of the public library files.
1372 $ IF F$TYPE(archlib) .NES. ""
1373 $ THEN dflt = archlib
1374 $ ELSE dflt = privlib - "]" + "." + archname + "." + version + "]"
1376 $ rp = "Where do you want to put the public architecture-dependent libraries? "
1377 $ rp = F$FAO("!AS!/!AS",rp,"[ ''dflt' ] ")
1381 $ ENDIF !%Config-I-VMS, skip "where install" questions
1383 $! This quotation from Configure has to be included on VMS:
1388 There is, however, a strange, musty smell in the air that reminds me of
1389 something...hmm...yes...I've got it...there's a VMS nearby, or I'm a Blit.
1391 $ IF (.NOT.vms_skip_install)
1393 $!: it so happens the Eunice I know will not run shell scripts in Unix format
1395 $!: see if setuid scripts can be secure !sfn
1396 $!: now see if they want to do setuid emulation !sfn
1398 $!: determine where site specific libraries go.
1404 The installation process will also create a directory for
1405 site-specific extensions and modules. Some users find it convenient
1406 to place all local files in this directory rather than in the main
1407 distribution directory.
1410 $ IF F$TYPE(sitelib) .NES. ""
1411 $ THEN dflt = sitelib
1412 $ ELSE dflt = privlib - "]" + ".SITE_PERL]"
1414 $ rp = "Pathname for the site-specific library files? "
1415 $ rp = F$FAO("!AS!/!AS",rp,"[ ''dflt' ] ")
1419 $!: determine where site specific architecture-dependent libraries go.
1421 $ THEN TYPE SYS$INPUT:
1424 The installation process will also create a directory for
1425 architecture-dependent site-specific extensions and modules.
1428 $ IF F$TYPE(sitearch) .NES. ""
1429 $ THEN dflt = sitearch
1430 $ ELSE dflt = sitelib - "]" + "." + archname + "]"
1432 $ rp = "Pathname for the site-specific architecture-dependent library files? "
1433 $ rp = F$FAO("!AS!/!AS",rp,"[ ''dflt' ] ")
1437 $!: determine where old public architecture dependent libraries might be
1439 $!: determine where public executables go
1440 $ IF F$TYPE(bin) .NES. ""
1442 $! ELSE dflt = prefix - ".]" + ".BIN]"
1443 $ ELSE dflt = "/''vms_prefix'/000000"
1445 $ rp = "Pathname where the public executables will reside? "
1446 $ rp = F$FAO("!AS!/!AS",rp,"[ ''dflt' ] ")
1450 $!: determine where manual pages are on this system
1451 $!: What suffix to use on installed man pages
1452 $!: see if we can have long filenames
1453 $!: determine where library module manual pages go
1454 $!: What suffix to use on installed man pages
1455 $!: see what memory models we can support
1457 $ ELSE ! skipping "where install" questions, we must set some symbols
1458 $ IF F$TYPE(archlib).EQS."" THEN -
1459 archlib="''vms_prefix':[lib.''archname'.''version']"
1460 $ IF F$TYPE(bin) .EQS. "" THEN -
1461 bin="/''vms_prefix'/000000"
1462 $ IF F$TYPE(privlib) .EQS. "" THEN -
1463 privlib ="''vms_prefix':[lib]"
1464 $ IF F$TYPE(sitearch) .EQS. "" THEN -
1465 sitearch="''vms_prefix':[lib.site_perl.''archname']"
1466 $ IF F$TYPE(sitelib) .EQS. "" THEN -
1467 sitelib ="''vms_prefix':[lib.site_perl]"
1468 $ ENDIF !%Config-I-VMS, skip "where install" questions
1470 $! These derived locations can be set whether we've opted to
1471 $! skip the where install questions or not.
1473 $ IF F$TYPE(archlibexp) .EQS. "" THEN -
1474 archlibexp="''vms_prefix':[lib.''archname'.''version']"
1475 $ IF F$TYPE(binexp) .EQS. "" THEN -
1476 binexp ="''vms_prefix':[000000]"
1477 $ IF F$TYPE(builddir) .EQS. "" THEN -
1478 builddir ="''vms_prefix':[000000]"
1479 $ IF F$TYPE(installarchlib) .EQS. "" THEN -
1480 installarchlib="''vms_prefix':[lib.''archname'.''version']"
1481 $ IF F$TYPE(installbin) .EQS. "" THEN -
1482 installbin ="''vms_prefix':[000000]"
1483 $ IF F$TYPE(installscript) .EQS. "" THEN -
1484 installscript ="''vms_prefix':[utils]"
1485 $ IF F$TYPE(installman1dir) .EQS. "" THEN -
1486 installman1dir ="''vms_prefix':[man.man1]"
1487 $ IF F$TYPE(installman3dir) .EQS. "" THEN -
1488 installman3dir ="''vms_prefix':[man.man3]"
1489 $ IF F$TYPE(installprivlib) .EQS. "" THEN -
1490 installprivlib ="''vms_prefix':[lib]"
1491 $ IF F$TYPE(installsitearch) .EQS. "" THEN -
1492 installsitearch="''vms_prefix':[lib.site_perl.''archname']"
1493 $ IF F$TYPE(installsitelib) .EQS. "" THEN -
1494 installsitelib ="''vms_prefix':[lib.site_perl]"
1495 $ IF F$TYPE(oldarchlib) .EQS. "" THEN -
1496 oldarchlib="''vms_prefix':[lib.''archname']"
1497 $ IF F$TYPE(oldarchlibexp) .EQS. "" THEN -
1498 oldarchlibexp="''vms_prefix':[lib.''archname']"
1499 $ IF F$TYPE(privlibexp) .EQS. "" THEN -
1500 privlibexp ="''vms_prefix':[lib]"
1501 $ IF F$TYPE(scriptdir) .EQS. "" THEN -
1502 scriptdir ="''vms_prefix':[utils]"
1503 $ IF F$TYPE(sitearchexp) .EQS. "" THEN -
1504 sitearchexp ="''vms_prefix':[lib.site_perl.''archname']"
1505 $ IF F$TYPE(sitelib_stem) .EQS. "" THEN -
1506 sitelib_stem ="''vms_prefix':[lib.site_perl]"
1507 $ IF F$TYPE(sitelibexp) .EQS. "" THEN -
1508 sitelibexp ="''vms_prefix':[lib.site_perl]"
1510 $!: see if we need a special compiler
1511 $! cc_list = "cc/decc|gcc" !%Config-I-VMS, compiler symbols/commands
1515 $ vms_cc_available = ""
1517 $ OPEN/WRITE CONFIG ccvms.c
1518 $ WRITE CONFIG "#ifdef __DECC"
1519 $ WRITE CONFIG "#include <stdlib.h>" !DECC is sooo picky
1520 $ WRITE CONFIG "#endif"
1521 $ WRITE CONFIG "#include <stdio.h>"
1522 $ WRITE CONFIG "int main() {"
1523 $ WRITE CONFIG "#ifdef __DECC"
1524 $ WRITE CONFIG " printf(""/DECC\n"");"
1525 $ WRITE CONFIG "#else"
1526 $ WRITE CONFIG " printf(""/VAXC\n"");"
1527 $ WRITE CONFIG "#endif"
1528 $ WRITE CONFIG " exit(0);"
1532 $! DEFINE SYS$ERROR _NLA0:
1533 $! DEFINE SYS$OUTPUT _NLA0:
1534 $ cc/NoObj/list=ccvms.lis ccvms.c
1536 $! DEASSIGN SYS$OUTPUT
1537 $! DEASSIGN SYS$ERROR
1538 $ IF (silent) THEN GOSUB Shut_up
1539 $ IF tmp.NE.%X10B90001
1541 $ IF tmp.NE.%X10000001
1543 $ nocc = "t" !%X10000001 is return from gcc
1544 $ GOTO Gcc_initial_check
1549 $ IF .NOT.silent THEN echo ""
1550 $ echo "Default ""cc"" is ''line' ''archsufx' ''F$GETSYI("VERSION")'"
1551 $ IF F$LOCATE("VAX",line).NE.F$LENGTH(line)
1555 $ echo "Will try cc/decc..."
1557 $ DEFINE/USER_MODE SYS$ERROR NL:
1558 $ DEFINE/USER_MODE SYS$OUTPUT NL:
1560 $ cc/decc/NoObj/list=ccvms.lis ccvms.c
1563 $ IF (silent) THEN GOSUB Shut_up
1564 $ IF tmp.NE.%X10B90001
1566 $ echo "Apparently you don't have that one."
1569 $ echo "You also have: ''line' ''archsufx' ''F$GETSYI("VERSION")'"
1570 $ vms_cc_available = vms_cc_available + "cc/decc "
1573 $ IF (F$LOCATE("DEC",line).NE.F$LENGTH(line)).or.(F$LOCATE("Compaq",line).NE.F$LENGTH(line))
1575 $ vms_cc_dflt = "/decc"
1576 $ vms_cc_available = vms_cc_available + "cc/decc "
1581 $ echo "Checking for gcc"
1582 $ OPEN/WRITE CONFIG gccvers.lis
1583 $ DEFINE/USER_MODE SYS$ERROR CONFIG
1584 $ DEFINE/USER_MODE SYS$OUTPUT CONFIG
1585 $ 'gcc_symbol'/noobj/version _nla0:
1587 $ IF (silent) THEN GOSUB Shut_up
1589 $ IF (tmp.NE.%X10000001).and.(tmp.ne.%X00030001)
1591 $ echo "Symbol ""''gcc_symbol'"" is not defined. I guess you do not have it."
1592 $ DELETE/NOLOG/NOCONFIRM gccvers.lis;
1593 $ GOTO Cxx_initial_check
1595 $ OPEN/READ CONFIG gccvers.lis
1597 $ READ/END_OF_FILE=GCC_List_End CONFIG line
1598 $ GOTO GCC_List_Read
1602 $ vms_cc_available = vms_cc_available + "''gcc_symbol' "
1603 $ DELETE/NOLOG/NOCONFIRM gccvers.lis;
1607 $! Do note that [vms]perl source files have a ways to go before they will
1608 $! compile under CXX.
1609 $! In order to test Configure.com with CXX invoke it with "-Dtry_cxx" on
1610 $! the command line.
1612 $ IF F$TYPE(try_cxx) .EQS. "" THEN try_cxx := n
1613 $ IF try_cxx .OR. try_cxx .EQS. "define"
1617 $ echo "Checking for CXX..."
1618 $ OPEN/WRITE CONFIG ccvms.c
1619 $ WRITE CONFIG "#include <iostream>"
1620 $ WRITE CONFIG "int main() {"
1621 $ WRITE CONFIG "#ifdef __DECCXX"
1622 $ WRITE CONFIG " cout << __DECCXX, endl;"
1623 $ WRITE CONFIG "#else"
1624 $ WRITE CONFIG " cout << 0,endl;"
1625 $ WRITE CONFIG "#endif"
1626 $! Todo: add G++ identifier check ??
1627 $ WRITE CONFIG " return(0);"
1631 $ DEFINE/USER_MODE SYS$OUTPUT NL:
1632 $ DEFINE/USER_MODE SYS$ERROR NL:
1636 $! success $status with:
1637 $! DEC C++ V1.1-001 on VMS VAX V5.5-2
1638 $! DEC C++ V5.6-013 on OpenVMS VAX V7.1
1639 $! DEC C++ V6.1-003 on OpenVMS Alpha V7.1
1640 $! Compaq C++ V6.2-016 for OpenVMS Alpha V7.2-1
1641 $ IF tmp .eq. %X15F60001
1645 $ DEFINE/USER_MODE SYS$OUTPUT NL:
1646 $ DEFINE/USER_MODE SYS$ERROR NL:
1650 $ ! success $status with:
1651 $ ! link && DEC C++ V1.1-001 on VMS VAX V5.5-2
1652 $ ! link && DEC C++ V5.6-013 on OpenVMS VAX V7.1
1653 $ IF tmp .eq. %X10000001
1656 $ vms_cc_available = vms_cc_available + "cxx "
1657 $ echo "CXX and LINK are available."
1659 $ IF F$SEARCH("ccvms.exe") .NES. "" THEN DELETE/NOLOG/NOCONFIRM ccvms.exe;
1661 $ DEFINE/USER_MODE SYS$OUTPUT NL:
1662 $ DEFINE/USER_MODE SYS$ERROR NL:
1666 $ ! success $status with:
1667 $ ! cxxlink && DEC C++ V6.1-003 on OpenVMS Alpha V7.1
1668 $ ! cxxlink && Compaq C++ V6.2-016 for OpenVMS Alpha V7.2-1
1669 $ IF tmp .eq. %X10000001
1671 $ ld_try = "cxxlink"
1672 $ vms_cc_available = vms_cc_available + "cxx "
1673 $ echo "CXX and CXXLINK are available."
1676 $ IF F$SEARCH("ccvms.exe") .NES. "" THEN DELETE/NOLOG/NOCONFIRM ccvms.exe;
1680 $ DELETE/NOLOG/NOCONFIRM ccvms.c;
1681 $ IF F$SEARCH("ccvms.obj") .NES. "" THEN DELETE/NOLOG/NOCONFIRM ccvms.obj;
1682 $ CALL Cxx_demangler_cleanup
1684 $ ENDIF ! 1 .eq. 0 or 1 .eq. 1
1687 $ DELETE/NOLOG/NOCONFIRM ccvms.*;
1689 $!: see if we need a special compiler
1691 $ echo "Available compiler(s):"
1692 $ echo "( ''vms_cc_available')"
1695 $ dflt = "cc''vms_cc_dflt'" !-> "cc" in case first compile went OK
1699 $ rp = "Use which C compiler? [''dflt'] "
1703 $ ans = F$EDIT(ans,"TRIM, COMPRESS, LOWERCASE")
1705 $ IF (F$LOCATE("dec",ans).NE.F$LENGTH(ans)).or.(F$LOCATE("compaq",ans).NE.F$LENGTH(ans))
1710 $ C_COMPILER_Replace = "CC=cc=''Mcc'"
1712 $ IF F$LOCATE("cxx",F$EDIT(ans,"COLLAPSE,LOWERCASE")) .NE. F$LENGTH(ans)
1717 $ C_COMPILER_Replace = "CC=cc=''Mcc'"
1721 $ IF F$LOCATE("dec",dflt) .NE. F$LENGTH(dflt) .or. -
1722 F$LOCATE("compaq",dflt) .NE. F$LENGTH(dflt)
1724 $ C_COMPILER_Replace = "CC=cc=''Mcc'"
1729 $ IF Mcc .EQS. "cc/decc"
1732 $ C_COMPILER_Replace = "CC=cc=''Mcc'"
1738 $ IF Mcc .EQS. "cc/decc"
1741 $ C_COMPILER_Replace = "CC=cc=''Mcc'"
1743 $ IF Mcc .EQS. "gcc"
1746 $ C_COMPILER_Replace = "CC=cc=''Mcc'"
1749 $Decc_Version_check:
1751 $ IF ccname .EQS. "DEC"
1754 $ echo4 "Checking for the Dec C version number..."
1755 $ OPEN/WRITE CONFIG deccvers.c
1756 $ WRITE CONFIG "#include <stdlib.h>" !DECC is sooo picky
1757 $ WRITE CONFIG "#include <stdio.h>"
1758 $ WRITE CONFIG "int main() {"
1759 $ WRITE CONFIG "#ifdef __DECC"
1760 $ WRITE CONFIG "#ifdef __DECC_VER"
1761 $ WRITE CONFIG " printf(""%i\n"", __DECC_VER);"
1762 $ WRITE CONFIG "#else"
1763 $ WRITE CONFIG " printf(""%i\n"", ""1"");"
1764 $ WRITE CONFIG "#endif"
1765 $ WRITE CONFIG "#endif"
1766 $ WRITE CONFIG " exit(0);"
1770 $ DEFINE/USER_MODE SYS$ERROR NL:
1771 $ DEFINE/USER_MODE SYS$OUTPUT NL:
1774 $ IF (silent) THEN GOSUB Shut_up
1775 $ DEFINE/USER_MODE SYS$ERROR NL:
1776 $ DEFINE/USER_MODE SYS$OUTPUT NL:
1779 $ IF (silent) THEN GOSUB Shut_up
1780 $ OPEN/WRITE CONFIG deccvers.out
1781 $ DEFINE/USER_MODE SYS$ERROR CONFIG
1782 $ DEFINE/USER_MODE SYS$OUTPUT CONFIG
1783 $ mcr []deccvers.exe
1787 $ IF (silent) THEN GOSUB Shut_up
1788 $ OPEN/READ CONFIG deccvers.out
1789 $ READ/END_OF_FILE=Dec_c_cleanup CONFIG line
1792 $ echo "You are using Dec C ''line'"
1794 $ Dec_C_Version = F$INTEGER(line)
1795 $ IF Dec_C_Version .GE. 60200000
1797 $ echo4 "adding /NOANSI_ALIAS qualifier to ccflags."
1798 $ ccflags = ccflags + "/NOANSI_ALIAS"
1800 $ DELETE/NOLOG/NOCONFIRM deccvers.*;
1804 $ IF ccname .EQS. "GCC"
1806 $ vaxcrtl_olb = F$SEARCH("SYS$LIBRARY:VAXCRTL.OLB")
1807 $ vaxcrtl_exe = F$SEARCH("SYS$SHARE:VAXCRTL.EXE")
1808 $ gcclib_olb = F$SEARCH("GNU_CC:[000000]GCCLIB.OLB")
1809 $ IF gcclib_olb .EQS. ""
1811 $! These objects/libs come w/ gcc 2.7.2 for AXP:
1812 $ tmp = F$SEARCH("GNU_CC:[000000]libgcc2.olb")
1813 $ IF tmp .NES. "" then gcclib_olb = tmp
1814 $ tmp = F$SEARCH("GNU_CC:[000000]libgcclib.olb")
1817 $ IF gcclib_olb .EQS. ""
1818 $ THEN gcclib_olb = tmp
1819 $ ELSE gcclib_olb = gcclib_olb + "/lib," + tmp
1822 $ tmp = F$SEARCH("SYS$LIBRARY:VAXCRTL.OLB")
1825 $ IF gcclib_olb .EQS. ""
1826 $ THEN gcclib_olb = tmp
1827 $ ELSE gcclib_olb = gcclib_olb + "/lib," + tmp
1830 $ tmp = F$SEARCH("GNU_CC:[000000]crt0.obj")
1833 $ IF gcclib_olb .EQS. ""
1834 $ THEN gcclib_olb = tmp
1835 $ ELSE gcclib_olb = gcclib_olb + "/lib," + tmp
1838 $ IF gcclib_olb .EQS. vaxcrtl_olb THEN gcclib_olb = "" !goofy order of axplibs
1840 $ gcclib_olb = gcclib_olb + "/lib"
1842 $ IF gcclib_olb .NES. "" .AND. -
1843 (vaxcrtl_olb .NES. "" .OR. -
1844 vaxcrtl_exe .NES. "" )
1847 $ echo4 "Checking for GNU cc in disguise and/or its version number..." !>&4
1848 $ OPEN/WRITE CONFIG gccvers.c
1849 $ WRITE CONFIG "#include <stdio.h>"
1850 $ WRITE CONFIG "int main() {"
1851 $ WRITE CONFIG "#ifdef __GNUC__"
1852 $ WRITE CONFIG "#ifdef __VERSION__"
1853 $ WRITE CONFIG " printf(""%s\n"", __VERSION__);"
1854 $ WRITE CONFIG "#else"
1855 $ WRITE CONFIG " printf(""%s\n"", ""1"");"
1856 $ WRITE CONFIG "#endif"
1857 $ WRITE CONFIG "#endif"
1858 $ WRITE CONFIG " exit(0);"
1861 $ DEFINE SYS$ERROR _NLA0:
1862 $ DEFINE SYS$OUTPUT _NLA0:
1865 $ DEASSIGN SYS$ERROR _NLA0:
1866 $ DEASSIGN SYS$OUTPUT _NLA0:
1867 $ IF (silent) THEN GOSUB Shut_up
1868 $ DEFINE SYS$ERROR _NLA0:
1869 $ DEFINE SYS$OUTPUT _NLA0:
1870 $ IF vaxcrtl_exe .EQS. ""
1872 $ IF F$LOCATE("VAXCRTL",gcclib_olb).NE.F$LENGTH(gcclib_olb)
1874 $ link gccvers.obj,'gcclib_olb',SYS$LIBRARY:VAXCRTL/Library
1877 $ link gccvers.obj,'gcclib_olb'
1881 $ OPEN/WRITE CONFIG GCCVERS.OPT
1882 $ WRITE CONFIG "SYS$SHARE:VAXCRTL/SHARE"
1884 $ link gccvers.obj,GCCVERS.OPT/OPT,'gcclib_olb'
1887 $ DEASSIGN SYS$ERROR
1888 $ DEASSIGN SYS$OUTPUT
1889 $ IF (silent) THEN GOSUB Shut_up
1890 $ OPEN/WRITE CONFIG gccvers.out
1891 $ DEFINE SYS$ERROR CONFIG
1892 $ DEFINE SYS$OUTPUT CONFIG
1896 $ DEASSIGN SYS$OUTPUT
1897 $ DEASSIGN SYS$ERROR
1898 $ IF (silent) THEN GOSUB Shut_up
1899 $ OPEN/READ CONFIG gccvers.out
1900 $ READ/END_OF_FILE=Gcc_cleanup CONFIG line
1903 $ DELETE/NOLOG/NOCONFIRM gccvers.*;
1904 $ IF F$LOCATE("GNU C version ",line).NE.F$LENGTH(line)
1906 $ echo "You are not using GNU cc."
1909 $ echo "You are using GNU cc ''line'"
1912 $ C_COMPILER_Replace = "CC=cc=''Mcc'"
1918 $ IF ccname .EQS. "CXX"
1920 $ OPEN/WRITE CONFIG cxxvers.c
1921 $ WRITE CONFIG "#include <stdio.h>"
1922 $ WRITE CONFIG "int main() {"
1923 $ WRITE CONFIG "#ifdef __DECCXX_VER"
1924 $ WRITE CONFIG " printf(""%i\n"", __DECCXX_VER);"
1925 $ WRITE CONFIG "#else"
1926 $ WRITE CONFIG " printf(""%i\n"", ""0"");"
1927 $ WRITE CONFIG "#endif"
1928 $ WRITE CONFIG " return(0);"
1932 $ DEFINE/USER_MODE SYS$ERROR NL:
1933 $ DEFINE/USER_MODE SYS$OUTPUT NL:
1937 $ IF (silent) THEN GOSUB Shut_up
1939 $ DEFINE/USER_MODE SYS$ERROR NL:
1940 $ DEFINE/USER_MODE SYS$OUTPUT NL:
1944 $ IF (silent) THEN GOSUB Shut_up
1945 $ OPEN/WRITE CONFIG cxxvers.out
1947 $ DEFINE/USER_MODE SYS$ERROR CONFIG
1948 $ DEFINE/USER_MODE SYS$OUTPUT CONFIG
1953 $ IF (silent) THEN GOSUB Shut_up
1954 $ OPEN/READ CONFIG cxxvers.out
1955 $ READ/END_OF_FILE=Cxx_cleanup CONFIG line
1958 $ DELETE/NOLOG/NOCONFIRM cxxvers.*;
1959 $ echo "You are using CXX ''line'"
1962 $ CALL Cxx_demangler_cleanup
1965 $Cxx_demangler_cleanup: SUBROUTINE
1967 $! If we do build with CXX these demangler Dbs will be left all over.
1968 $! However, configure.com does try to remove the [.UU] sub directory.
1969 $! Be sure to set default to the correct place before calling this sub.
1972 $ IF F$SEARCH("[.CXX_REPOSITORY]*.*") .NES. "" THEN DELETE/NOLOG/NOCONFIRM [.CXX_REPOSITORY]*.*;*
1973 $ IF F$SEARCH("CXX_REPOSITORY.DIR") .NES. ""
1975 $ SET PROTECTION=(SYSTEM:RWED,OWNER:RWED) CXX_REPOSITORY.DIR
1976 $ DELETE/NOLOG/NOCONFIRM CXX_REPOSITORY.DIR;
1980 $ ENDSUBROUTINE ! Cxx_demangler_cleanup
1985 $ OPEN/READ CONFIG ccvms.lis
1987 $ IF archname .EQS. "VMS_VAX"
1995 $ line = F$EDIT(line,"TRIM,COMPRESS")
1996 $ line = line - "Page 1" ! occurs at end all compilers
1997 $ line = line - "CCVMS " ! filename appears w/ VAXC
1998 $ line = line - "Source Listing " ! Seen w/ AXP DECC
1999 $ tmp = F$EXTRACT(0,20,line) !timestamp, e.g. "30-JUL-1996 21:12:54 "
2001 $ line = F$EDIT(line,"TRIM") !bit redundant but we're in no big hurry
2002 $ DELETE/NOLOG/NOCONFIRM ccvms.lis;
2006 $!: What should the include directory be ? (.TLB text libraries)
2008 $ rp = "Where are the include files you want to use? "
2009 $ IF f$length( rp + "[''dflt'] " ).gt.76
2010 $ THEN rp = F$FAO("!AS!/!AS",rp,"[''dflt'] ")
2011 $ ELSE rp = rp + "[''dflt'] "
2016 $!: see if we have to deal with yellow pages, now NIS.
2017 $!: now get the host name
2020 $ echo4 "Figuring out host name..." !>&4
2022 $ IF myhostname.eqs."" THEN myhostname = F$TRNLNM("ARPANET_HOST_NAME")
2023 $ IF myhostname.eqs."" THEN myhostname = F$TRNLNM("INTERNET_HOST_NAME")
2024 $ IF myhostname.eqs."" THEN myhostname = F$TRNLNM("MULTINET_HOST_NAME")
2025 $ IF myhostname.eqs."" THEN myhostname = F$TRNLNM("UCX$INET_HOST_NAME")
2026 $ IF myhostname.eqs."".and. -
2027 F$TRNLNM("UCX$INET_HOST") .nes. "" .and. -
2028 F$TRNLNM("UCX$INET_DOMAIN") .nes. "" THEN -
2029 myhostname = F$TRNLNM("UCX$INET_HOST") + "." + F$TRNLNM("UCX$INET_DOMAIN")
2030 $ IF myhostname.eqs."".and. -
2031 F$TRNLNM("TCPIP$INET_HOST") .nes. "" .and. -
2032 F$TRNLNM("TCPIP$INET_DOMAIN") .nes. "" THEN -
2033 myhostname = F$TRNLNM("TCPIP$INET_HOST") + "." + F$TRNLNM("TCPIP$INET_DOMAIN")
2034 $ IF myhostname.eqs."" THEN myhostname = F$TRNLNM("TCPWARE_DOMAINNAME")
2035 $ IF myhostname.eqs."" THEN myhostname = F$TRNLNM("NEWS_ADDRESS")
2036 $ IF myhostname.eqs."" THEN myhostname = F$TRNLNM("SYS$NODE") - "::"
2037 $ IF myhostname.eqs."" THEN myhostname = F$EDIT(F$GETSYI("SCSNODE"),"TRIM")
2038 $!: you do not want to know about this
2040 $ rp = "Your host name appears to be """"''myhostname'"""". Right? "
2045 $ READ SYS$COMMAND/PROMPT= -
2046 "Please type the (one word) name of your host: " ans
2049 $!: translate upper to lower if necessary
2050 $ myhostname = F$EDIT(myhostname,"COLLAPSE")
2051 $ mylowhostname = F$EDIT(myhostname," LOWERCASE")
2052 $ IF mylowhostname.NES.myhostname
2054 $ echo "(Normalizing case in your host name)"
2055 $ myhostname = mylowhostname
2058 $ fp = F$LOCATE(".",myhostname)
2059 $ mydomain = F$EXTRACT(fp,(F$LENGTH(myhostname)-fp)+1,myhostname)
2060 $ IF mydomain.NES."" !no periods in DECnet names like "MYDECNODE::"
2062 $ rp = "What is your domain name? [''mydomain'] "
2066 $!: translate upper to lower if necessary
2067 $ mydomain = F$EDIT(mydomain,"COLLAPSE")
2068 $ mylowdomain = F$EDIT(mydomain," LOWERCASE")
2069 $ IF mylowdomain.NES.mydomain
2071 $ echo "(Normalizing case in your domain name)"
2072 $ mydomain = mylowdomain
2075 $ myhostname = myhostname - mydomain
2076 $ echo "(Trimming domain name from host name--host name is now ''myhostname')"
2082 I need to get your e-mail address in Internet format if possible, i.e.
2083 something like user@host.domain. Please answer accurately since I have
2084 no easy means to double check it. The default value provided below
2085 is most probably close to the reality but may not be valid from outside
2086 your organization...
2089 $ IF F$TYPE(cf_email) .EQS. ""
2091 $ dflt = "''cf_by'@''myhostname'"+"''mydomain'"
2092 $ rp = "What is your e-mail address? [''dflt'] "
2102 If you or somebody else will be maintaining perl at your site, please
2103 fill in the correct e-mail address here so that they may be contacted
2104 if necessary. Currently, the "perlbug" program included with perl
2105 will send mail to this address in addition to perlbug@perl.com. You may
2106 enter "none" for no administrator.
2109 $ dflt = "''cf_email'"
2110 $ rp = "Perl administrator e-mail address [''dflt'] "
2114 $!: determine where public executable scripts go
2115 $!: determine perl absolute location
2116 $!: figure out how to guarantee perl startup
2118 $!: see how we invoke the C preprocessor
2120 $! echo4 "Now, how can we feed standard input to your C preprocessor..." !>&4
2121 $!: Set private lib path
2122 $!: Now check and see which directories actually exist, avoiding duplicates
2123 $!: determine optimize, if desired, or use for debug flag also
2124 $!: We will not override a previous value, but we might want to
2125 $!: augment a hint file
2126 $!: the following weeds options from ccflags that are of no interest to cpp
2127 $!: flags used in final linking phase
2128 $!: Try to guess additional flags to pick up local libraries.
2131 $! echo4 "Checking your choice of C compiler and flags for coherency..." !>&4
2132 $!: compute shared library extension
2133 $!: Looking for optional libraries
2134 $!: see if nm is to be used to determine whether a symbol is defined or not
2135 $!: get list of predefined functions in a handy place
2136 $!: see if we have sigaction or sigprocmask
2137 $!: see whether socketshr exists
2138 $ IF (F$SEARCH(F$PARSE("SocketShr","Sys$Share:.Exe")).NES."")
2140 $ Has_socketshr = "T"
2142 $ echo4 "Hmm... Looks like you have SOCKETSHR Berkeley networking support."
2144 $ Has_socketshr = "F"
2146 $ IF (ccname .EQS. "DEC" .AND. Dec_C_Version .GE. 50200000) .OR. -
2147 (ccname .EQS. "CXX")
2149 $ Has_Dec_C_Sockets = "T"
2151 $ echo4 "Hmm... Looks like you have Dec C Berkeley networking support."
2153 $ Has_Dec_C_Sockets = "F"
2155 $ ! Hey, we've got both. Default to Dec C, then, since it's better
2156 $ IF Has_socketshr .OR. Has_Dec_C_Sockets
2159 $ echo "You have sockets available. Which socket stack do you want to"
2160 $ echo "build into Perl?"
2161 $ IF Has_Dec_C_Sockets
2165 $ dflt = "SOCKETSHR"
2167 $ rp = "Choose socket stack (NONE"
2168 $ IF Has_socketshr THEN rp = rp + ",SOCKETSHR"
2169 $ IF Has_Dec_C_Sockets THEN rp = rp + ",DECC"
2170 $ rp = rp + ") [''dflt'] "
2172 $ Has_Dec_C_Sockets = "F"
2173 $ Has_socketshr = "F"
2174 $ ans = F$EDIT(ans,"TRIM,COMPRESS,LOWERCASE")
2175 $ IF ans.eqs."decc" then Has_Dec_C_Sockets = "T"
2176 $ IF ans.eqs."socketshr" then Has_socketshr = "T"
2180 $! Ask if they want to build with VMS_DEBUG perl
2182 $ echo "Perl can be built to run under the VMS debugger."
2183 $ echo "You should only select this option if you are debugging"
2184 $ echo "perl itself. This can be a useful feature if you are "
2185 $ echo "embedding perl in a program."
2187 $ if f$type(usevmsdebug) .nes. ""
2189 $ if usevmsdebug .or. usevmsdebug .eqs. "define" then bool_dflt="y"
2191 $ rp = "Build a VMS-DEBUG version of Perl? [''bool_dflt'] "
2193 $ use_vmsdebug_perl = ans
2194 $ IF use_vmsdebug_perl
2196 $ usevmsdebug = "define"
2197 $ macros = macros + """__DEBUG__=1"","
2199 $ usevmsdebug = "undef"
2202 $! Ask if they want to build with DEBUGGING
2204 $ echo "Perl can be built with extra runtime debugging enabled. This"
2205 $ echo "enables the -D switch, at the cost of some performance. It"
2206 $ echo "was mandatory on perl 5.005 and before on VMS, but is now"
2207 $ echo "optional. If you do not generally use it you should probably"
2208 $ echo "leave this off and gain a bit of extra speed."
2210 $ if f$type(useperldebug) .nes. ""
2212 $ if f$extract(0,1,f$edit(useperldebug,"collapse,upcase")).eqs."N" .or. useperldebug .eqs. "undef" then bool_dflt="n"
2214 $ rp = "Build a DEBUGGING version of Perl? [''bool_dflt'] "
2216 $ use_debugging_perl = ans
2218 $! Ask if they want to build with MULTIPLICITY
2220 $ echo "Perl can be built so that multiple Perl interpreters can coexist"
2221 $ echo "within the same Perl executable."
2222 $ echo "There is some performance overhead, however, so you"
2223 $ echo "probably do not want to choose this unless you are going to be"
2224 $ echo "doing things with embedded perl."
2226 $ if f$type(usemultiplicity) .nes. ""
2228 $ if usemultiplicity .or. usemultiplicity .eqs. "define" then bool_dflt = "y"
2230 $ rp = "Build Perl for multiplicity? [''bool_dflt'] "
2234 $ usemultiplicity="define"
2236 $ usemultiplicity="undef"
2239 $! Ask if they want to build with 64-bit support
2240 $ IF (archname.eqs."VMS_AXP").and.("''f$extract(1,3, f$getsyi(""version""))'".ges."7.1")
2243 $ IF F$TYPE(use64bitint) .NES. ""
2245 $ IF use64bitint .OR. use64bitint .eqs. "define" THEN bool_dflt = "y"
2248 $ echo "You can have native 64-bit long integers."
2250 $ echo "Perl can be built to take advantage of 64-bit integer types"
2251 $ echo "on some systems, which provide a much larger range for perl's"
2252 $ echo "mathematical operations. (Note that does *not* enable 64-bit"
2253 $ echo "fileops at the moment, as Dec C doesn't do that yet)."
2254 $ echo "Choosing this option will most probably introduce binary incompatibilities."
2256 $ echo "If this does not make any sense to you, just accept the default ''dflt'."
2257 $ rp = "Try to use 64-bit integers, if available? [''bool_dflt'] "
2262 $ IF F$TYPE(use64bitall) .NES. ""
2264 $ IF use64bitall .OR. use64bitall .eqs. "define" THEN bool_dflt = "y"
2267 $ echo "You may also choose to try maximal 64-bitness. It means using as much"
2268 $ echo "64-bitness as possible on the platform. This in turn means even more"
2269 $ echo "binary incompatibilities. On the other hand, your platform may not"
2270 $ echo "have any more 64-bitness available than what you already have chosen."
2272 $ echo "If this does not make any sense to you, just accept the default ''dflt'."
2273 $ rp = "Try to use maximal 64-bit support, if available? [''bool_dflt'] "
2276 $ IF use64bitall .AND. .NOT. use64bitint
2279 $ echo "Since you have chosen a maximally 64-bit build, I'm also turning on"
2280 $ echo "the use of 64-bit integers."
2283 $ ENDIF ! AXP && >= 7.1
2285 $! Ask about threads, if appropriate
2286 $ IF ccname .EQS. "DEC" .OR. ccname .EQS. "CXX"
2289 $ echo "This version of Perl can be built with threads. While really nifty,"
2290 $ echo "they are a beta feature, and there is a speed penalty for perl"
2291 $ echo "programs if you build with threads *even if you do not use them*."
2293 $ if f$type(usethreads) .nes. ""
2295 $ if usethreads .or. usethreads .eqs. "define" then bool_dflt="y"
2297 $ rp = "Build with threads? [''bool_dflt'] "
2302 $ ! Shall we do the 5.005-stype threads, or IThreads?
2303 $ echo "As of 5.5.640, Perl has two different internal threading"
2304 $ echo "implementations, the 5.005 version (5005threads) and an"
2305 $ echo "interpreter-based version (ithreads) that has one"
2306 $ echo "interpreter per thread. Both are very experimental. This"
2307 $ echo "arrangement exists to help developers work out which one"
2310 $ echo "If you are a casual user, you probably do not want"
2311 $ echo "interpreter-threads at this time. There doesn't yet exist"
2312 $ echo "a way to create threads from within Perl in this model,"
2313 $ echo "i.e., ""use Thread;"" will NOT work."
2316 $ if f$type(useithreads) .nes. ""
2318 $ if useithreads .eqs. "define" then bool_dflt="y"
2320 $ rp = "Build with Interpreter threads? [''bool_dflt'] "
2325 $ use_5005_threads="N"
2327 $ use_5005_threads="Y"
2329 $ ! Are they on VMS 7.1 on an alpha?
2330 $ if (archname.eqs."VMS_AXP").and.("''f$extract(1,3, f$getsyi(""version""))'".ges."7.1")
2333 $ echo "Threaded perl can be linked to use multiple kernel threads"
2334 $ echo "and system upcalls on VMS 7.1+ on Alpha systems. This feature"
2335 $ echo "allows multiple threads to execute simultaneously on an SMP"
2336 $ echo "system as well as preventing a single thread from blocking"
2337 $ echo "all the threads in a program, even on a single-processor"
2338 $ echo "machine. Unfortunately, this feature isn't safe on an"
2339 $ echo "unpatched 7.1 system (several OS patches were required when"
2340 $ echo "this procedure was written)."
2342 $ rp = "Enable multiple kernel threads and upcalls? [''bool_dflt'] "
2346 $ Thread_Live_Dangerously = "MT=MT=1"
2351 $ IF archname .EQS. "VMS_AXP"
2355 $ echo "By default, perl (and pretty much everything else on VMS) uses"
2356 $ echo "case-insensitive linker symbols. Which is to say, when the"
2357 $ echo "underlying C code makes a call to a routine called Perl_foo in"
2358 $ echo "the source, the name in the object modules or shareable images"
2359 $ echo "is really PERL_FOO. There are some packages that use an"
2360 $ echo "embedded perl interpreter that instead require case-sensitive"
2361 $ echo "linker symbols."
2363 $ echo "If you have no idea what this means, and do not have"
2364 $ echo "any program requiring anything, choose the default."
2365 $ bool_dflt = be_case_sensitive
2366 $ if f$type(usecasesensitive) .nes. ""
2368 $ if usecasesensitive .or. usecasesensitive .eqs. "define" then bool_dflt = "y"
2369 $ if f$extract(0,1,f$edit(usecasesensitive,"collapse,upcase")).eqs."N" .or. usecasesensitive .eqs. "undef" then bool_dflt = "n"
2371 $ rp = "Build with case-sensitive symbols? [''bool_dflt'] "
2373 $ be_case_sensitive = ans
2376 $ echo "Perl normally uses IEEE format (T_FLOAT) floating point numbers"
2377 $ echo "internally on Alpha, but if you need G_FLOAT for binary compatibility"
2378 $ echo "with an external library or existing data, you may wish to disable"
2379 $ echo "the IEEE math option."
2380 $ bool_dflt = use_ieee_math
2381 $ if f$type(useieee) .nes. ""
2383 $ if useieee .or. useieee .eqs. "define"
2390 $ rp = "Use IEEE math? [''bool_dflt'] "
2392 $ use_ieee_math = ans
2394 $ be_case_sensitive = "n"
2395 $ use_ieee_math = "n"
2398 $ usecasesensitive = "undef"
2399 $ if (use_ieee_math) then useieee = "define"
2400 $ if (be_case_sensitive) then usecasesensitive = "define"
2403 $ echo "Your compiler may want other flags. For this question you should include"
2404 $ echo "/INCLUDE=(whatever) and /DEFINE=(whatever), flags and any other flags"
2405 $ echo "or qualifiers used by the compiler."
2407 $ echo "To use no flags, specify the word ""none""."
2408 $ dflt = user_c_flags
2409 $ rp = "Any additional cc flags? [''dflt'] "
2411 $ IF ans .EQS. "none" THEN ans = ""
2412 $ user_c_flags = "''ans'"
2414 $! Ask whether they want to use secure logical translation when tainting
2416 $ echo "As Perl starts up, it checks several logical names, such as"
2417 $ echo "PERL5LIB and PERL_ENV_TABLES, which allow you to modify aspects"
2418 $ echo "of its behavior. For additional security, you may limit this"
2419 $ echo "process to executive- and kernel-mode translation when tainting"
2420 $ echo "is enabled. In this case, logical names normally skipped when"
2421 $ echo "tainting is enabled (e.g. PERL5OPTS) are translated as well."
2422 $ echo "If you do not choose to do this, the usual order of access modes"
2423 $ echo "is used for logical name translation."
2425 $ echo "This restriction does not apply to the %ENV hash or to implicit"
2426 $ echo "logical name translation during parsing of file specifications;"
2427 $ echo "these always use the normal sequence of access modes for logical"
2428 $ echo "name translation."
2430 $ if f$type(usesecurelog) .nes. ""
2432 $ if f$extract(0,1,f$edit(usesecurelog,"collapse,upcase")).eqs."N" .or. usesecurelog .eqs. "undef" then bool_dflt = "n"
2434 $ rp = "Use secure logical name translation? [''bool_dflt'] "
2436 $ d_secintgenv = ans
2437 $ usesecurelog = "undef"
2438 $ if (d_secintgenv) then usesecurelog = "define"
2440 $! Ask whether they want to default filetypes
2442 $ echo "When you pass the name of a program to Perl on the command line,"
2443 $ echo "it generally doesn't supply any defaults unless the -S command"
2444 $ echo "line switch is specified. In keeping with the VMS tradition of"
2445 $ echo "default file types, however, you can configure Perl to try default"
2446 $ echo "file types of nothing, .pl, and .com, in that order (e.g. typing"
2447 $ echo """$ perl foo"" would cause Perl to look for foo., then foo.pl, and"
2448 $ echo "finally foo.com)."
2450 $ echo "This is currently broken in some configurations. Only enable it if"
2451 $ echo "you know what you are doing."
2453 $ if f$type(usedefaulttypes) .nes. ""
2455 $ if usedefaulttypes .or. usedefaulttypes .eqs. "define" then bool_dflt="y"
2457 $ rp = "Always use default file types? [''bool_dflt'] "
2459 $ d_alwdeftype = ans
2460 $ usedefaulttypes = "undef"
2461 $ if (d_alwdeftype) then usedefaulttypes = "define"
2463 $! Ask if they want to use perl's memory allocator
2465 $ echo "Perl has a built-in memory allocator that is tuned for normal"
2466 $ echo "memory usage. It is oftentimes better than the standard system"
2467 $ echo "memory allocator. It also has the advantage of providing memory"
2468 $ echo "allocation statistics, if you choose to enable them."
2470 $ IF F$TYPE(usemymalloc) .nes. ""
2472 $ if usemymalloc .or. usemymalloc .eqs. "define" then bool_dflt = "y"
2474 $ rp = "Do you wish to attempt to use the malloc that comes with ''package'? [''bool_dflt'] "
2479 $ IF use_debugging_perl
2482 $ echo "Perl can keep statistics on memory usage if you choose to use"
2483 $ echo "them. This is useful for debugging, but does have some"
2484 $ echo "performance overhead."
2486 $ rp = "Do you want the debugging memory allocator? [''bool_dflt'] "
2488 $ use_debugmalloc = ans
2490 $ ! Check which memory allocator we want
2492 $ echo "There are currently three different memory allocators: the"
2493 $ echo "default (which is a pretty good general-purpose memory manager),"
2494 $ echo "the TWO_POT allocator (which is optimized to save memory for"
2495 $ echo "larger allocations), and PACK_MALLOC (which is optimized to save"
2496 $ echo "memory for smaller allocations). They're all good, but if your"
2497 $ echo "usage tends towards larger chunks use TWO_POT, otherwise use"
2498 $ echo "PACK_MALLOC."
2500 $ rp = "Memory allocator (DEFAULT, TWO_POT, PACK_MALLOC) [''dflt'] "
2502 $ if ans.eqs."TWO_POT" then use_two_pot_malloc = "Y"
2503 $ if ans.eqs."PACK_MALLOC" then use_pack_malloc = "Y"
2506 $ known_extensions = ""
2508 $ OPEN/READ CONFIG 'manifestfound'
2510 $ READ/END_OF_FILE=end_ext/ERROR=end_ext CONFIG line
2511 $ IF F$EXTRACT(0,4,line) .NES. "ext/" .AND. -
2512 F$EXTRACT(0,8,line) .NES. "vms/ext/" THEN goto ext_loop
2513 $ line = F$EDIT(line,"COMPRESS")
2514 $ line = F$ELEMENT(0," ",line)
2515 $ line_len = F$LENGTH(line)
2516 $ IF F$EXTRACT(line_len - 12,12,line) .NES. "/Makefile.PL" THEN goto ext_loop
2517 $ IF F$EXTRACT(0,4,line) .EQS. "ext/" THEN -
2518 xxx = F$EXTRACT(4,line_len - 16,line)
2519 $ IF xxx .EQS. "DynaLoader" THEN goto ext_loop ! omit
2520 $ IF xxx .EQS. "SDBM_File/sdbm" THEN goto ext_loop ! sub extension - omit
2521 $ IF xxx .EQS. "Devel/PPPort/harness" THEN goto ext_loop ! sub extension - omit
2522 $ IF F$EXTRACT(0,8,line) .EQS. "vms/ext/" THEN -
2523 xxx = "VMS/" + F$EXTRACT(8,line_len - 20,line)
2524 $ known_extensions = known_extensions + " ''xxx'"
2529 $ known_extensions = F$EDIT(known_extensions,"TRIM,COMPRESS")
2530 $ dflt = known_extensions
2531 $ IF ccname .NES. "DEC" .AND. ccname .NES. "CXX"
2533 $ dflt = dflt - "POSIX" ! not with VAX C or GCC
2535 $ dflt = dflt - "ByteLoader" ! needs to be ported
2536 $ dflt = dflt - "DB_File" ! needs to be ported
2537 $ dflt = dflt - "GDBM_File" ! needs porting/special library
2538 $ dflt = dflt - "IPC/SysV" ! needs to be ported
2539 $ dflt = dflt - "NDBM_File" ! needs porting/special library
2540 $ dflt = dflt - "ODBM_File" ! needs porting/special library
2541 $ dflt = dflt - "Sys/Syslog" ! needs porting/special library "GDBM_File macro LOG_DEBUG"
2542 $ IF .NOT. Has_socketshr .AND. .NOT. Has_Dec_C_Sockets
2544 $ dflt = dflt - "Socket" ! optional on VMS
2546 $ IF .NOT. use_ithreads THEN dflt = dflt - "threads/shared"
2547 $ IF .NOT. use_ithreads THEN dflt = dflt - "threads"
2548 $ dflt = F$EDIT(dflt,"TRIM,COMPRESS")
2550 $! Ask for their default list of extensions to build
2552 $ echo "It is time to specify which modules you want to build into"
2553 $ echo "perl. Most of these are standard and should be chosen, though"
2554 $ echo "you might, for example, want to build GDBM_File instead of"
2555 $ echo "SDBM_File if you have the GDBM library built on your machine."
2557 $ echo "Which modules do you want to build into perl?"
2560 $ extensions = F$EDIT(ans,"TRIM,COMPRESS")
2562 $! %Config-I-VMS, determine build/make utility here (make gmake mmk mms)
2564 $ echo "Checking your ""make"" utilities..."
2565 $! If the 'build' that you use is not here add it and it's test
2566 $! switch to the _END_ of these strings (and increment max_build)
2567 $! (e.g. builders = builders + "/FOOMAKE"
2568 $! probers = probers + " -fooVersionSwitch"
2569 $! ) & please let me know about it.
2570 $ builders = "IMAKE/GNUMAKE/MGMAKE/GMAKE/MAKE/MMS/MMK"
2571 $ probers = "-f Makefile. -v!-f Makefile. -v!-f Makefile. -v!-f Makefile. -v!-f Makefile. -v!/IDENT!/IDENT"
2577 $ OPEN/WRITE/ERROR=Open_error CONFIG Makefile.
2578 $ WRITE CONFIG "dont_make_anything_yet:"
2579 $ WRITE CONFIG F$FAO("!_")
2582 $ messages = F$ENVIRONMENT("MESSAGE")
2584 $ build = F$ELEMENT(n,"/",builders)
2585 $ probe = F$ELEMENT(n,"!",probers)
2586 $ echo "Testing whether you have ''build' on your system..."
2588 $! Noted with GNU Make version 3.60 that the $status and $severity
2589 $! with the 'probe' Makefile appear to be: $STATUS == "%X1000000C"
2590 $! $SEVERITY == "4".
2593 $ ON CONTROL_Y THEN GOTO Reenable_messages_build
2594 $ SET MESSAGE/NOFAC/NOSEV/NOIDENT/NOTEXT
2596 $ IF ($SEVERITY .EQ. 1) ! not adequate?
2599 $ IF (build .EQS. orig_dflt)
2601 $ default_set = "TRUE"
2604 $ ok_builders = ok_builders + " " + build
2605 $ IF (.NOT. default_set) THEN dflt = build
2609 $Reenable_messages_build:
2610 $ SET MESSAGE 'messages'
2612 $ on control_y then goto clean_up
2614 $ IF (n .LT. max_build) THEN GOTO Build_probe
2617 $ IF (ok_builders .NES. "")
2619 $ echo "Here is the list of builders you can apparently use:"
2620 $ echo "(",ok_builders," )"
2621 $ rp = "Which """"make"""" utility do you wish to use? [''dflt'] "
2623 $ ans = F$EDIT(ans,"TRIM, COMPRESS")
2624 $ ans = F$EXTRACT(0,F$LOCATE(" ",ans),ans) !throw out "-f Makefile." here
2633 %Config-E-VMS, ERROR:
2634 Well this looks pretty serious. Perl5 cannot be compiled without a "make"
2635 utility of some sort and after checking my "builders" list I cannot find
2636 the symbol or command you use on your system to compile programs.
2639 $ READ SYS$COMMAND/PROMPT="Which ""MMS"" do you use? " ans
2640 $ ans = F$EDIT(ans,"TRIM, COMPRESS")
2641 $ ans = F$EXTRACT(0,F$LOCATE(" ",ans),ans) !throw out "-f Makefile." here
2644 $ echo "I do not know where ""make"" is, and my life depends on it."
2645 $ echo "Go find a make program or fix your DCL$PATH setting!"
2646 $ echo "ABORTING..."
2647 $ SET DEFAULT 'vms_default_directory_name' !be kind rewind
2649 $ EXIT 2 !$STATUS = "%X00000002" (error)
2655 $ DELETE/NOLOG Makefile.;
2661 There seems to be trouble. I just tried to create a file in
2663 $ echo4 'F$ENVIRONMENT("DEFAULT")'
2666 but was unsuccessful. I am stopping now. Please check that directories'
2667 PROTECTION bits. I will leave you in the directory where you started
2670 $ echo4 "ABORTING..."
2676 $! echo " Very well I will proceed with ""''build'"""
2677 $ make = F$EDIT(build,"UPCASE")
2679 $!: locate the preferred pager for this system
2680 $!pagers = "most|more|less|type/page"
2681 $ dflt = "type/page"
2682 $! assume that the presence of a most symbol indicates the presence
2684 $ IF F$TYPE(most) .EQS. "STRING" THEN dflt = "most"
2685 $ IF F$TYPE(pager) .EQS. "STRING" THEN dflt = pager
2686 $ rp="What pager is used on your system? [''dflt'] "
2690 $! update [.vms]config.vms here
2692 $! update makefile here
2693 $! echo4 "Updating makefile..."
2695 $ IF (make .EQS. "MMS").OR.(make .EQS. "MMK")
2697 $ makefile = "" !wrt MANIFEST dir
2698 $ UUmakefile = "[-]DESCRIP.MMS" !wrt CWD dir
2699 $ DEFmakefile = "DESCRIP.MMS" !wrt DEF dir (?)
2700 $ Makefile_SH = "descrip_mms.template"
2702 $ makefile = " -f Makefile." !wrt MANIFEST dir
2703 $ UUmakefile = "[-]Makefile." !wrt CWD dir
2704 $ DEFmakefile = "Makefile." !wrt DEF dir (?)
2705 $ Makefile_SH = "Makefile.in"
2708 $ IF macros .NES. ""
2710 $ tmp = F$LENGTH(macros)
2711 $ macros = F$EXTRACT(0,(tmp-1),macros) !miss trailing comma
2712 $ macros = "/macro=(" + macros + ")"
2714 $! Build up the extra C flags
2718 $ extra_flags = "''extra_flags'" + "/float=ieee/ieee=denorm_results"
2720 $ IF be_case_sensitive
2722 $ extra_flags = "''extra_flags'" + "/Names=As_Is"
2724 $ extra_flags = "''extra_flags'" + "''user_c_flags'"
2726 $ min_pgflquota = "100000"
2727 $ pgflquota = F$STRING(F$GETJPI("","PGFLQUOTA"))
2728 $ IF pgflquota .LES. min_pgflquota
2730 $ echo4 "Your PGFLQUOTA of ''pgflquota' appears too small to build ''package'."
2731 $ READ SYS$COMMAND/PROMPT="Continue? [n] " ans
2734 $ echo4 "Continuing..."
2736 $ echo4 "ABORTING..."
2741 $! PerlIO abstraction
2744 $ IF F$TYPE(useperlio) .NES. ""
2746 $ if f$extract(0,1,f$edit(useperlio,"collapse,upcase")) .eqs. "N" .or. useperlio .eqs. "undef" then bool_dflt = "n"
2750 $ echo "Previous versions of ''package' used the standard IO mechanisms as"
2753 defined in <stdio.h>. Versions 5.003_02 and later of perl allow
2754 alternate IO mechanisms via the PerlIO abstraction layer, but the
2755 stdio mechanism is still available if needed. The abstraction layer
2756 can use AT&T's sfio (if you already have sfio installed) or regular stdio.
2757 Using PerlIO with sfio may cause problems with some extension modules.
2760 $ echo "If this does not make any sense to you, just accept the default '" + bool_dflt + "'."
2762 $ rp = "Use the PerlIO abstraction layer? [''bool_dflt'] "
2766 $ useperlio = "define"
2768 $ echo "Ok, doing things the stdio way."
2769 $ useperlio = "undef"
2773 $ echo4 "Checking the C run-time library."
2775 $! Former SUBCONFIGURE.COM
2777 $! - build a config.sh for VMS Perl.
2778 $! - use built config.sh to take config_h.SH -> config.h
2779 $! - also take vms/descrip_mms.template -> descrip.mms (VMS Makefile)
2780 $! vms/Makefile.in -> Makefile. (VMS GNU Makefile?)
2781 $! vms/Makefile.SH -> Makefile. (VMS GNU Makefile?)
2783 $! Note for folks from other platforms changing things in here:
2785 $! Fancy changes (based on compiler capabilities or VMS version or
2786 $! whatever) are tricky, so go ahead and punt on those.
2788 $! Simple changes, though (say, always setting something to 1, or undef,
2789 $! or something like that) are straightforward. Adding a new constant
2790 $! item for the ultimately created config.sh requires at least one
2791 $! (possibly more) line(s) to this file.
2793 $! Add a line in the format:
2795 $! $ WC "foo='undef'"
2797 $! somewhere between the line tagged '##BEGIN WRITE NEW CONSTANTS HERE##'
2798 $! and the one tagged '##END WRITE NEW CONSTANTS HERE##' (note the order
2799 $! is sorted ASCII and corresponds to the output of config.sh in the
2800 $! Bourne shell version of Configure).
2801 $! Be very careful with quoting, as it can be tricky.
2802 $! For example if instead of a constant string like 'undef' or 'define'
2803 $! you wanted to add something to VMS's config.sh that looks like:
2807 $! then add a line that looks like this before the
2808 $! '##END WRITE NEW CONSTANTS HERE##' tagged line:
2810 $! $ WC "blank_string='" + "'"
2812 $! (+ is the string concatenator and "''var'" has the effect
2813 $! of "${var}" in perl or sh, but "'const'" is not interpolated).
2815 $! Note that unitialized variables, such as a line like:
2817 $! $ WC "new_var='" + new_var + "'"
2819 $! should be avoided unless new_var has a value assigned prior
2820 $! to that line (think of perl's -w warnings).
2822 $! %DCL-W-UNDSYM, undefined symbol - check validity and spelling
2826 $ vms_ver = F$EXTRACT(1,3, osvers)
2827 $ IF F$LENGTH(Mcc) .EQ. 0 THEN Mcc := "cc"
2828 $ MCC = f$edit(mcc, "UPCASE")
2829 $ C_Compiler_Replace := "CC=CC=''Mcc'''ccflags'"
2830 $ IF ccname .EQS. "DEC"
2832 $ Checkcc := "''Mcc'/prefix=all"
2834 $ IF ccname .EQS. "CXX"
2838 $ Checkcc := "''Mcc'"
2841 $ ccflags = ccflags + extra_flags
2842 $ IF be_case_sensitive
2844 $ d_vms_be_case_sensitive = "define"
2846 $ d_vms_be_case_sensitive = "undef"
2848 $! Some constant defaults.
2849 $ hwname = f$getsyi("HW_NAME")
2850 $ myname = myhostname
2851 $ IF myname .EQS. "" THEN myname = F$TRNLNM("SYS$NODE")
2856 $ IF use64bitint .OR. use64bitint .EQS. "define"
2858 $ use64bitint = "define"
2859 $ uselargefiles = "define"
2860 $ uselongdouble = "define"
2862 $ usemorebits = "define"
2863 $ ivdformat="""Ld"""
2864 $ uvuformat="""Lu"""
2865 $ uvoformat="""Lo"""
2866 $ uvxformat="""Lx"""
2867 $ uvXUformat="""LX"""
2869 $ use64bitint = "undef"
2870 $ uselargefiles = "undef"
2871 $ uselongdouble = "undef"
2872 $ usemorebits = "undef"
2873 $ ivdformat="""ld"""
2874 $ uvuformat="""lu"""
2875 $ uvoformat="""lo"""
2876 $ uvxformat="""lx"""
2877 $ uvXUformat="""lX"""
2879 $ IF uselongdouble .OR. uselongdouble .EQS. "define"
2881 $ nveformat="""Le"""
2882 $ nvfformat="""Lf"""
2883 $ nvgformat="""Lg"""
2889 $ IF use64bitall .OR. use64bitall .EQS. "define"
2891 $ use64bitall = "define"
2893 $ use64bitall = "undef"
2896 $ usemymalloc = "undef"
2897 $ if mymalloc then usemymalloc = "define"
2901 $ IF (sharedperl .AND. archname .EQS. "VMS_AXP")
2915 $ dlobj="dl_vms''obj_ext'"
2917 $ cppstdin="''perl_cc'/noobj/comments=as_is/preprocess=sys$output sys$input"
2919 $ cpprun="''perl_cc'/noobj/comments=as_is/preprocess=sys$output sys$input"
2927 $ THEN d_mymalloc="define"
2928 $ ELSE d_mymalloc="undef"
2932 $ startperl="""$ perl 'f$env(\""procedure\"")' \""'"+"'p1'\"" \""'"+"'p2'\"" \""'"+"'p3'\"" \""'"+"'p4'\"" \""'"+"'p5'\"" \""'"+"'p6'\"" \""'"+"'p7'\"" \""'"+"'p8'\""!\n"
2933 $ startperl=startperl + "$ exit++ + ++$status!=0 and $exit=$status=undef; while($#ARGV != -1 and $ARGV[$#ARGV] eq '"+"'){pop @ARGV;}"""
2935 $ IF ((Use_Threads) .AND. (vms_ver .LES. "6.2"))
2937 $ libs="SYS$SHARE:CMA$LIB_SHR.EXE/SHARE SYS$SHARE:CMA$RTL.EXE/SHARE SYS$SHARE:CMA$OPEN_LIB_SHR.exe/SHARE SYS$SHARE:CMA$OPEN_RTL.exe/SHARE"
2941 $ IF ccname .EQS. "DEC" .OR. ccname .EQS. "CXX"
2948 $! perllibs should be libs with all non-core libs (such as gdbm) removed.
2954 $ IF use64bitint .OR. use64bitint .EQS. "define"
2956 $ d_PRId64 = "define"
2957 $ d_PRIEUldbl = "define"
2958 $ d_PRIFUldbl = "define"
2959 $ d_PRIGUldbl = "define"
2960 $ d_PRIeldbl = "define"
2961 $ d_PRIfldbl = "define"
2962 $ d_PRIgldbl = "define"
2963 $ d_PRIu64 = "define"
2964 $ d_PRIo64 = "define"
2965 $ d_PRIx64 = "define"
2966 $ d_PRIXU64 = "define"
2967 $ sPRId64 = """Ld"""
2968 $ sPRIEUldbl = """LE"""
2969 $ sPRIFUldbl = """LF"""
2970 $ sPRIGUldbl = """LG"""
2971 $ sPRIXU64 = """LX"""
2972 $ sPRIeldbl = """Le"""
2973 $ sPRIfldbl = """Lf"""
2974 $ sPRIgldbl = """Lg"""
2975 $ sPRIi64 = """Li"""
2976 $ sPRIo64 = """Lo"""
2977 $ sPRIu64 = """Lu"""
2978 $ sPRIx64 = """Lx"""
2980 $ quadtype = "long long"
2981 $ uquadtype = "unsigned long long"
2982 $ quadkind = "QUAD_IS_LONG_LONG"
2983 $ d_frexpl = "define"
2984 $ d_isnan = "define"
2985 $ d_isnanl = "define"
2986 $ d_modfl = "define"
2988 $ d_PRId64 = "undef"
2989 $ d_PRIEUldbl = "define"
2990 $ d_PRIFUldbl = "define"
2991 $ d_PRIGUldbl = "define"
2992 $ d_PRIXU64 = "undef"
2993 $ d_PRIeldbl = "define"
2994 $ d_PRIfldbl = "undef"
2995 $ d_PRIgldbl = "undef"
2996 $ d_PRIu64 = "undef"
2997 $ d_PRIo64 = "undef"
2998 $ d_PRIx64 = "undef"
3000 $ sPRIEUldbl = """E"""
3001 $ sPRIFUldbl = """F"""
3002 $ sPRIGUldbl = """G"""
3003 $ sPRIXU64 = """lX"""
3004 $ sPRIeldbl = """e"""
3005 $ sPRIfldbl = """f"""
3006 $ sPRIgldbl = """g"""
3013 $ uquadtype = "unsigned long"
3014 $ quadkind = "QUAD_IS_LONG"
3015 $ d_frexpl = "undef"
3017 $ d_isnanl = "undef"
3020 $ d_SCNfldbl = d_PRIfldbl
3021 $ sSCNfldbl = sPRIfldbl ! expect consistency
3023 $! Now some that we build up
3027 $ IF use_5005_threads
3029 $ arch = "''arch'-thread"
3030 $ archname = "''archname'-thread"
3031 $ d_old_pthread_create_joinable = "undef"
3032 $ old_pthread_create_joinable = " "
3033 $ use5005threads = "define"
3034 $ useithreads = "undef"
3036 $ arch = "''arch'-ithread"
3037 $ archname = "''archname'-ithread"
3038 $ d_old_pthread_create_joinable = "undef"
3039 $ old_pthread_create_joinable = " "
3040 $ use5005threads = "undef"
3041 $ useithreads = "define"
3044 $ d_old_pthread_create_joinable = "undef"
3045 $ old_pthread_create_joinable = " "
3046 $ use5005threads = "undef"
3047 $ useithreads = "undef"
3050 $! Some that we need to invoke the compiler for
3053 $! handy construction aliases/symbols
3055 $ OS := "open/write CONFIG []try.c"
3056 $ WS := "write CONFIG"
3057 $ CS := "close CONFIG"
3058 $ DS := "delete/nolog/noconfirm []try.*;*"
3060 $ good_compile = %X10B90001
3061 $ IF ccname .EQS. "GCC"
3063 $ open/write OPTCHAN []try.opt
3064 $ write OPTCHAN "Gnu_CC:[000000]gcclib.olb/library"
3065 $ write OPTCHAN "Sys$Share:VAXCRTL/Share"
3068 $ good_compile = %X10000001
3070 $ IF ccname .EQS. "CXX"
3072 $ good_compile = %X15F60001
3074 $ good_link = %X10000001
3075 $ tmp = "" ! null string default
3077 $ GOTO beyond_compile_ok
3079 $! Check for type sizes
3084 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3085 $ WS "#include <stdlib.h>"
3087 $ WS "#include <stdio.h>"
3090 $ WS "printf(""%d\n"", sizeof(''tmp'));"
3097 $!: locate header file
3101 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3102 $ WS "#include <stdlib.h>"
3104 $ WS "#include <stdio.h>"
3105 $ WS "#include <''tmp'>"
3108 $ WS "printf(""define\n"");"
3115 $!: define an alternate in-header-list? function
3119 $ IF compile_status .EQ. good_compile .AND. link_status .EQ. good_link
3121 $ echo4 "<''tmp'> found."
3124 $ echo4 "<''tmp'> NOT found."
3129 $!: define an is-in-libc? function
3132 $ IF compile_status .EQ. good_compile .AND. link_status .EQ. good_link
3134 $ echo4 "''tmp'() found."
3137 $ echo4 "''tmp'() NOT found."
3142 $!: define a shorthand compile call
3146 $ IF compile_status .EQ. good_compile .AND. link_status .EQ. good_link
3148 $ OPEN/WRITE CONFIG []try.out
3149 $ DEFINE/USER_MODE SYS$ERROR CONFIG
3150 $ DEFINE/USER_MODE SYS$OUTPUT CONFIG
3153 $ OPEN/READ CONFIG []try.out
3156 $ DELETE/NOLOG/NOCONFIRM []try.out;
3157 $ DELETE/NOLOG/NOCONFIRM []try.exe;
3159 $ tmp = "" ! null string default
3165 $ DEFINE/USER_MODE SYS$ERROR _NLA0:
3166 $ DEFINE/USER_MODE SYS$OUTPUT _NLA0:
3170 $ 'ld' try.obj,try.opt/opt
3171 $ link_status = $status
3174 $ link_status = $status
3177 $ IF F$SEARCH("try.obj") .NES. "" THEN DELETE/NOLOG/NOCONFIRM try.obj;
3180 $!: define a shorthand compile call for compilations that should be ok.
3182 $ DEFINE/USER_MODE SYS$ERROR _NLA0:
3183 $ DEFINE/USER_MODE SYS$OUTPUT _NLA0:
3186 $ compile_status = $status
3188 $ DELETE/NOLOG/NOCONFIRM try.c;
3193 $! Check for __STDC__
3196 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3197 $ WS "#include <stdlib.h>"
3199 $ WS "#include <stdio.h>"
3202 $ WS "#ifdef __STDC__"
3203 $ WS "printf(""42\n"");"
3205 $ WS "printf(""1\n"");"
3212 $ IF F$INTEGER(tmp) .eq. 42
3214 $ echo4 "Your C compiler and pre-processor defines the symbol:"
3218 $! Check for double size
3220 $ echo4 "Checking to see how big your double precision numbers are..."
3222 $ GOSUB type_size_check
3224 $ echo "Your double is ''doublesize' bytes long."
3226 $! Check for long double size
3229 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3230 $ WS "#include <stdlib.h>"
3232 $ WS "#include <stdio.h>"
3235 $ WS "printf(""%d\n"", sizeof(long double));"
3239 $ echo4 "Checking to see if you have long double..."
3241 $ IF link_status .NE. good_link
3245 $ echo "You do not have long double."
3247 $ echo "You have long double."
3248 $ echo4 "Checking to see how big your long doubles are..."
3251 $ d_longdbl = "define"
3252 $ echo "Your long doubles are ''longdblsize' bytes long."
3255 $!: check for long long
3257 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3258 $ WS "#include <stdlib.h>"
3260 $ WS "#include <stdio.h>"
3263 $ WS "printf(""%d\n"", sizeof(long long));"
3267 $ echo4 "Checking to see if you have long long..."
3269 $ IF link_status .NE. good_link
3272 $ d_longlong="undef"
3273 $ echo "You do not have long long."
3275 $ echo "You have long long."
3276 $ echo4 "Checking to see how big your long longs are..."
3278 $ longlongsize = tmp
3279 $ d_longlong = "define"
3280 $ echo "Your long longs are ''longlongsize' bytes long."
3283 $! Check the prototype for getgid
3285 $ echo "Looking for the type for group ids returned by getgid()."
3287 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3288 $ WS "#include <stdlib.h>"
3290 $ WS "#include <stdio.h>"
3291 $ WS "#include <types.h>"
3299 $ IF compile_status .NE. good_compile
3301 $! Okay, gid_t failed. Must be unsigned int
3302 $ gidtype = "unsigned int"
3303 $ echo4 "assuming ""''gidtype'""."
3306 $ echo4 "gid_t found."
3309 $! Check to see if we've got dev_t
3311 $ echo "Looking for the type for dev."
3313 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3314 $ WS "#include <stdlib.h>"
3316 $ WS "#include <stdio.h>"
3317 $ WS "#include <types.h>"
3325 $ IF compile_status .NE. good_compile
3327 $! Okay, dev_t failed. Must be unsigned int
3328 $ devtype = "unsigned int"
3329 $ echo4 "assuming ""''devtype'""."
3332 $ echo4 "dev_t found."
3335 $! Check to see if we've got unistd.h (which we ought to, but you never know)
3342 $!: see if this is a libutil.h system
3348 $! Check to see if we've got shadow.h (probably not, but...)
3354 $! Check to see if we've got socks.h (probably not, but...)
3360 $! Check the prototype for select
3362 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
3365 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3366 $ WS "#include <stdlib.h>"
3368 $ WS "#include <stdio.h>"
3369 $ WS "#include <types.h>"
3370 $ IF i_unistd .EQS. "define" THEN WS "#include <unistd.h>"
3373 $ WS "#include <socketshr.h>"
3375 $ WS "#include <time.h>"
3376 $ WS "#include <socket.h>"
3383 $ WS "bar = select(2, foo, foo, foo, NULL);"
3388 $ IF compile_status .NE. good_compile
3390 $! Okay, select failed. Must be an int *
3391 $ selecttype = "int *"
3392 $ echo4 "select() NOT found."
3394 $ selecttype="fd_set *"
3395 $ echo4 "select() found."
3398 $ ! No sockets, so stick in an int * : no select, so pick a harmless default
3399 $ selecttype = "int *"
3402 $! Check to see if fd_set exists
3404 $ echo "Checking to see how well your C compiler handles fd_set and friends ..."
3406 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3407 $ WS "#include <stdlib.h>"
3409 $ WS "#include <stdio.h>"
3410 $ WS "#include <types.h>"
3413 $ WS "#include <socketshr.h>"
3415 $ IF Has_Dec_C_Sockets
3417 $ WS "#include <time.h>"
3418 $ WS "#include <socket.h>"
3428 $ IF compile_status .ne. good_compile
3430 $! Okay, fd_set failed. Must not exist
3431 $ d_fd_set = "undef"
3432 $ echo4 "Hmm, your compiler has some difficulty with fd_set."
3435 $ echo4 "Well, your system knows about the normal fd_set typedef..."
3438 $! Check for inttypes.h
3440 $ tmp = "inttypes.h"
3444 $! Check to see if off64_t exists
3446 $ echo4 "Checking to see if you have off64_t..."
3448 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3449 $ WS "#include <stdlib.h>"
3451 $ WS "#include <stdio.h>"
3452 $ WS "#include <types.h>"
3453 $ WS "#''i_inttypes' IIH"
3455 $ WS "#include <inttypes.h>"
3464 $ IF compile_status .EQ. good_compile
3466 $ d_off64_t="define"
3467 $ echo "You have off64_t."
3469 $ d_off64_t = "undef"
3470 $ echo "You do not have off64_t."
3473 $! Check to see if fpos64_t exists
3475 $ echo4 "Checking to see if you have fpos64_t..."
3477 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3478 $ WS "#include <stdlib.h>"
3480 $ WS "#include <stdio.h>"
3481 $ WS "#include <types.h>"
3482 $ WS "#''i_inttypes' IIH"
3484 $ WS "#include <inttypes.h>"
3488 $ WS "fpos64_t bar;"
3493 $ IF compile_status .EQ. good_compile
3495 $ d_fpos64_t="define"
3496 $ echo "You have fpos64_t."
3498 $ d_fpos64_t = "undef"
3499 $ echo "You do not have fpos64_t."
3502 $! Check to see if int64_t exists
3504 $ echo4 "Checking to see if you have int64_t..."
3506 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3507 $ WS "#include <stdlib.h>"
3509 $ WS "#include <stdio.h>"
3510 $ WS "#include <types.h>"
3511 $ WS "#''i_inttypes' IIH"
3513 $ WS "#include <inttypes.h>"
3522 $ IF compile_status .EQ. good_compile
3524 $ d_int64_t="define"
3525 $ echo "You have int64_t."
3527 $ d_int64_t = "undef"
3528 $ echo "You do not have int64_t."
3531 $!: see if this is a netdb.h system
3532 $ IF Has_Dec_C_Sockets
3539 $! Check for h_errno
3541 $ echo4 "Checking to see if you have h_errno..."
3543 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3544 $ WS "#include <stdlib.h>"
3546 $ WS "#include <stdio.h>"
3547 $ IF i_unistd .EQS. "define" THEN WS "#include <unistd.h>"
3548 $ IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
3556 $ IF compile_status .EQ. good_compile .AND. link_status .EQ. good_link
3559 $ echo "You have h_errno."
3562 $ echo "You do not have h_errno."
3565 $! Check to see if gethostname exists
3567 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
3570 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3571 $ WS "#include <stdlib.h>"
3573 $ WS "#include <stdio.h>"
3574 $ WS "#include <types.h>"
3577 $ WS "#include <socketshr.h>"
3579 $ WS "#include <time.h>"
3580 $ WS "#include <socket.h>"
3584 $ WS "char name[100];"
3585 $ WS "int bar, baz;"
3587 $ WS "baz = gethostname(name, bar);"
3592 $ IF compile_status .EQ. good_compile .AND. link_status .EQ. good_link
3594 $ d_gethname="define"
3595 $ echo4 "gethostname() found."
3597 $ d_gethname="undef"
3600 $ ! No sockets, so no gethname
3601 $ d_gethname = "undef"
3604 $! Check for sys/file.h
3606 $ tmp = "sys/file.h"
3610 $! Check for sys/utsname.h
3612 $ tmp = "sys/utsname.h"
3614 $ i_sysutsname = tmp
3616 $! Check for syslog.h
3628 $! Check for sys/uio.h
3634 $! Check for sys/mode.h
3636 $ tmp = "sys/mode.h"
3640 $! Check for sys/access.h
3642 $ tmp = "sys/access.h"
3646 $! Check for sys/security.h
3648 $ tmp = "sys/security.h"
3652 $! Check for fcntl.h
3661 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3662 $ WS "#include <stdlib.h>"
3664 $ WS "#include <stdio.h>"
3665 $ WS "#include <fcntl.h>"
3668 $ WS "fcntl(1,2,3);"
3676 $! Check for fcntl locking capability
3678 $ echo4 "Checking if fcntl-based file locking works... "
3680 $ IF d_fcntl .EQS. "define"
3683 $ WS "#include <stdio.h>"
3684 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3685 $ WS "#include <stdlib.h>"
3687 $ WS "#include <fcntl.h>"
3688 $ WS "#include <unistd.h>"
3690 $ WS "#if defined(F_SETLK) && defined(F_SETLKW)"
3691 $ WS " struct flock flock;"
3692 $ WS " int retval, fd;"
3693 $ WS " fd = open(""try.c"", O_RDONLY);"
3694 $ WS " flock.l_type = F_RDLCK;"
3695 $ WS " flock.l_whence = SEEK_SET;"
3696 $ WS " flock.l_start = flock.l_len = 0;"
3697 $ WS " retval = fcntl(fd, F_SETLK, &flock);"
3699 $ WS " (retval < 0 ? printf(""undef\n"") : printf(""define\n""));"
3701 $ WS " printf(""undef\n"");"
3706 $ IF compile_status .EQ. good_compile .AND. link_status .EQ. good_link
3709 $ IF tmp .EQS. "define"
3711 $ echo4 "Yes, it seems to work."
3713 $ echo4 "Nope, it didn't work."
3716 $ echo4 "I'm unable to compile the test program, so I'll assume not."
3720 $ echo4 "Nope, since you don't even have fcntl()."
3722 $ d_fcntl_can_lock = tmp
3727 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3728 $ WS "#include <stdlib.h>"
3730 $ WS "#include <string.h>"
3733 $ WS "char * place;"
3734 $ WS "place = memchr(""foo"", 47, 3);"
3742 $! Check for strtoull
3745 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3746 $ WS "#include <stdlib.h>"
3748 $ WS "#include <string.h>"
3751 $ WS "unsigned __int64 result;"
3752 $ WS "result = strtoull(""123123"", NULL, 10);"
3760 $! Check for strtouq
3763 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3764 $ WS "#include <stdlib.h>"
3766 $ WS "#include <string.h>"
3769 $ WS "unsigned __int64 result;"
3770 $ WS "result = strtouq(""123123"", NULL, 10);"
3778 $! Check for strtoll
3781 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3782 $ WS "#include <stdlib.h>"
3784 $ WS "#include <string.h>"
3787 $ WS "__int64 result;"
3788 $ WS "result = strtoll(""123123"", NULL, 10);"
3799 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3800 $ WS "#include <stdlib.h>"
3802 $ WS "#include <string.h>"
3805 $ WS "__int64 result;"
3806 $ WS "result = strtoq(""123123"", NULL, 10);"
3817 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3818 $ WS "#include <stdlib.h>"
3820 $ WS "#include <string.h>"
3823 $ WS "__int64 result;"
3824 $ WS "result = strtoq(""123123"", NULL, 10);"
3832 $! Check for strtold
3835 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3836 $ WS "#include <stdlib.h>"
3838 $ WS "#include <string.h>"
3841 $ WS "long double result;"
3842 $ WS "result = strtold(""123123"", NULL, 10);"
3853 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3854 $ WS "#include <stdlib.h>"
3856 $ WS "#include <string.h>"
3859 $ WS " __int64 result;"
3860 $ WS "result = atoll(""123123"");"
3871 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3872 $ WS "#include <stdlib.h>"
3874 $ WS "#include <string.h>"
3878 $ WS "result = atolf(""123123"");"
3889 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3890 $ WS "#include <stdlib.h>"
3892 $ WS "#include <stdio.h>"
3895 $ WS "access(""foo"", F_OK);"
3906 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3907 $ WS "#include <stdlib.h>"
3909 $ WS "#include <stdio.h>"
3910 $ WS "#include <strings.h>"
3913 $ WS "char foo[10];"
3914 $ WS "bzero(foo, 10);"
3925 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3926 $ WS "#include <stdlib.h>"
3928 $ WS "#include <stdio.h>"
3929 $ WS "#include <strings.h>"
3932 $ WS "char foo[10], bar[10];"
3933 $ WS "bcopy(""foo"", bar, 3);"
3941 $! Check for mkstemp
3944 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3945 $ WS "#include <stdlib.h>"
3947 $ WS "#include <stdio.h>"
3950 $ WS "mkstemp(""foo"");"
3958 $! Check for mkstemps
3961 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3962 $ WS "#include <stdlib.h>"
3964 $ WS "#include <stdio.h>"
3967 $ WS "mkstemps(""foo"", 1);"
3975 $! Check for mkdtemp
3978 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3979 $ WS "#include <stdlib.h>"
3981 $ WS "#include <stdio.h>"
3984 $ WS "mkdtemp(""foo"");"
3992 $! Check for setvbuf
3995 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3996 $ WS "#include <stdlib.h>"
3998 $ WS "#include <stdio.h>"
4002 $ WS "char Buffer[99];"
4003 $ WS "foo = fopen(""foo"", ""r"");"
4004 $ WS "setvbuf(foo, Buffer, 0, 0);"
4012 $! see if sfio.h is available
4013 $! see if sfio library is available
4014 $! Ok, but do we want to use it.
4015 $! IF F$TYPE(usesfio) .EQS. "" THEN usesfio = "undef"
4016 $! IF val .EQS. "define"
4018 $! IF usesfio .EQS. "define"
4022 $! echo "''package' can use the sfio library, but it is experimental."
4023 $! IF useperlio .EQS. "undef"
4025 $! echo "For sfio also the PerlIO abstraction layer is needed."
4026 $! echo "Earlier you said you would not want that."
4028 $! rp="You seem to have sfio available, do you want to try using it? [''dflt'] "
4030 $! IF ans .EQS. "" THEN ans = dflt
4033 $! echo "Ok, turning on both sfio and PerlIO, then."
4034 $! useperlio="define"
4037 $! echo "Ok, avoiding sfio this time. I'll use stdio instead."
4041 $! IF usesfio .EQS. "define"
4043 $! echo4 "Sorry, cannot find sfio on this machine."
4044 $! echo4 "Ignoring your setting of usesfio=''usesfio'."
4052 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4053 $ WS "#include <stdlib.h>"
4055 $ WS "#include <stdio.h>"
4058 $ WS "setenv(""FOO"", ""BAR"", 0);"
4066 $! Check for setproctitle
4069 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4070 $ WS "#include <stdlib.h>"
4072 $ WS "#include <stdio.h>"
4075 $ WS "setproctitle(""%s"", ""FOO"");"
4079 $ tmp = "setproctitle"
4081 $ d_setproctitle = tmp
4083 $! Check for <netinet/in.h>
4085 $ IF Has_Dec_C_Sockets .or. Has_Socketshr
4087 $ tmp = "netinet/in.h"
4094 $! Check for <netinet/tcp.h>
4096 $ IF Has_Dec_C_Sockets .or. Has_Socketshr
4098 $ tmp = "netinet/tcp.h"
4100 $ i_netinettcp = tmp
4102 $ i_netinettcp="undef"
4105 $! Check for endhostent
4107 $ IF Has_Dec_C_Sockets .or. Has_Socketshr
4110 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4111 $ WS "#include <stdlib.h>"
4113 $ WS "#include <stdio.h>"
4115 $ THEN WS "#include <socketshr.h>"
4116 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4120 $ WS "endhostent();"
4124 $ tmp = "endhostent"
4131 $! Check for endnetent
4133 $ IF Has_Dec_C_Sockets .or. Has_Socketshr
4136 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4137 $ WS "#include <stdlib.h>"
4139 $ WS "#include <stdio.h>"
4141 $ THEN WS "#include <socketshr.h>"
4142 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4157 $! Check for endprotoent
4159 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
4162 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4163 $ WS "#include <stdlib.h>"
4165 $ WS "#include <stdio.h>"
4167 $ THEN WS "#include <socketshr.h>"
4168 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4172 $ WS "endprotoent();"
4176 $ tmp = "endprotoent"
4183 $! Check for endservent
4185 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
4188 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4189 $ WS "#include <stdlib.h>"
4191 $ WS "#include <stdio.h>"
4193 $ THEN WS "#include <socketshr.h>"
4194 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4198 $ WS "endservent();"
4202 $ tmp = "endservent"
4209 $! Check for sethostent
4211 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
4214 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4215 $ WS "#include <stdlib.h>"
4217 $ WS "#include <stdio.h>"
4219 $ THEN WS "#include <socketshr.h>"
4220 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4224 $ WS "sethostent(1);"
4228 $ tmp = "sethostent"
4235 $! Check for setnetent
4237 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
4240 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4241 $ WS "#include <stdlib.h>"
4243 $ WS "#include <stdio.h>"
4245 $ THEN WS "#include <socketshr.h>"
4246 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4250 $ WS "setnetent(1);"
4261 $! Check for setprotoent
4263 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
4266 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4267 $ WS "#include <stdlib.h>"
4269 $ WS "#include <stdio.h>"
4271 $ THEN WS "#include <socketshr.h>"
4272 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4276 $ WS "setprotoent(1);"
4280 $ tmp = "setprotoent"
4287 $! Check for setservent
4289 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
4292 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4293 $ WS "#include <stdlib.h>"
4295 $ WS "#include <stdio.h>"
4297 $ THEN WS "#include <socketshr.h>"
4298 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4302 $ WS "setservent(1);"
4306 $ tmp = "setservent"
4313 $! Check for gethostent
4315 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
4318 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4319 $ WS "#include <stdlib.h>"
4321 $ WS "#include <stdio.h>"
4323 $ THEN WS "#include <socketshr.h>"
4324 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4328 $ WS "gethostent();"
4332 $ tmp = "gethostent"
4339 $! Check for getnetent
4341 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
4344 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4345 $ WS "#include <stdlib.h>"
4347 $ WS "#include <stdio.h>"
4349 $ THEN WS "#include <socketshr.h>"
4350 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4365 $! Check for getprotoent
4367 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
4370 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4371 $ WS "#include <stdlib.h>"
4373 $ WS "#include <stdio.h>"
4375 $ THEN WS "#include <socketshr.h>"
4376 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4380 $ WS "getprotoent();"
4384 $ tmp = "getprotoent"
4391 $! Check for getservent
4393 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
4396 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4397 $ WS "#include <stdlib.h>"
4399 $ WS "#include <stdio.h>"
4401 $ THEN WS "#include <socketshr.h>"
4402 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4406 $ WS "getservent();"
4410 $ tmp = "getservent"
4417 $! Check for socklen_t
4419 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
4421 $ echo4 "Checking to see if you have socklen_t..."
4423 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4424 $ WS "#include <stdlib.h>"
4426 $ WS "#include <stdio.h>"
4428 $ THEN WS "#include <socketshr.h>"
4429 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4433 $ WS "socklen_t x = 16;"
4438 $ IF compile_status .EQ. good_compile .AND. link_status .EQ. good_link
4440 $ d_socklen_t="define"
4441 $ echo "You have socklen_t."
4443 $ d_socklen_t="undef"
4444 $ echo "You do not have socklen_t."
4447 $ d_socklen_t="undef"
4450 $! Check for pthread_yield
4455 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4456 $ WS "#include <stdlib.h>"
4458 $ WS "#include <pthread.h>"
4459 $ WS "#include <stdio.h>"
4462 $ WS "pthread_yield();"
4466 $ tmp = "pthread_yield"
4468 $ d_pthread_yield = tmp
4470 $ d_pthread_yield="undef"
4473 $! Check for sched_yield
4478 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4479 $ WS "#include <stdlib.h>"
4481 $ WS "#include <pthread.h>"
4482 $ WS "#include <stdio.h>"
4485 $ WS "sched_yield();"
4489 $ tmp = "sched_yield"
4491 $ d_sched_yield = tmp
4492 $ IF d_sched_yield .EQS. "define"
4493 $ THEN sched_yield = "sched_yield"
4494 $ ELSE sched_yield = " "
4497 $ d_sched_yield="undef"
4501 $! Check for generic pointer size
4503 $ echo4 "Checking to see how big your pointers are..."
4505 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4506 $ WS "#include <stdlib.h>"
4508 $ WS "#include <stdio.h>"
4512 $ WS "foo = sizeof(char *);"
4513 $ WS "printf(""%d\n"", foo);"
4518 $ GOSUB type_size_check
4520 $ echo "Your pointers are ''ptrsize' bytes long."
4522 $! Check for size_t size
4526 $ echo4 "Checking the size of ''zzz'..."
4527 $ GOSUB type_size_check
4529 $ echo "Your ''zzz' size is ''sizesize' bytes."
4531 $! Check rand48 and its ilk
4533 $ echo4 "Looking for a random number function..."
4535 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4536 $ WS "#include <stdlib.h>"
4538 $ WS "#include <stdio.h>"
4541 $ WS "srand48(12L);"
4546 $ IF compile_status .EQ. good_compile .AND. link_status .EQ. good_link
4548 $ drand01 = "drand48()"
4549 $ randseedtype = "long int"
4550 $ seedfunc = "srand48"
4551 $ echo4 "Good, found drand48()."
4552 $ d_drand48proto = "define"
4554 $ d_drand48proto = "undef"
4555 $ drand01="random()"
4556 $ randseedtype = "unsigned"
4557 $ seedfunc = "srandom"
4559 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4560 $ WS "#include <stdlib.h>"
4562 $ WS "#include <stdio.h>"
4570 $ IF compile_status .EQ. good_compile .AND. link_status .EQ. good_link
4572 $ echo4 "OK, found random()."
4574 $ drand01="(((float)rand())*MY_INV_RAND_MAX)"
4575 $ randseedtype = "unsigned"
4576 $ seedfunc = "srand"
4577 $ echo4 "Yick, looks like I have to use rand()."
4580 $! Done with compiler checks. Clean up.
4581 $ IF F$SEARCH("try.c") .NES."" THEN DELETE/NOLOG/NOCONFIRM try.c;*
4582 $ IF F$SEARCH("try.obj").NES."" THEN DELETE/NOLOG/NOCONFIRM try.obj;*
4583 $ IF F$SEARCH("try.exe").NES."" THEN DELETE/NOLOG/NOCONFIRM try.exe;*
4584 $ IF F$SEARCH("try.opt").NES."" THEN DELETE/NOLOG/NOCONFIRM try.opt;*
4585 $ IF F$SEARCH("try.out").NES."" THEN DELETE/NOLOG/NOCONFIRM try.out;*
4586 $ IF ccname .EQS. "CXX"
4588 $ CALL Cxx_demangler_cleanup
4591 $! Some that are compiler or VMS version sensitive
4594 $ IF ccname .EQS. "GCC"
4596 $ d_attribut="define"
4600 $ d_attribut="undef"
4603 $! Dec C >= 5.2 and VMS ver >= 7.0
4604 $ IF (ccname .EQS. "DEC") .AND. -
4605 (F$INTEGER(Dec_C_Version).GE.50200000) .AND. (vms_ver .GES. "7.0")
4608 $ d_getitimer="define"
4609 $ d_gettimeod="define"
4611 $ d_mprotect="define"
4617 $ d_setitimer="define"
4618 $ d_sigaction="define"
4619 $ d_sigprocmask="define"
4620 $ d_truncate="define"
4624 $ sig_name="ZERO HUP INT QUIT ILL TRAP IOT EMT FPE KILL BUS SEGV SYS PIPE ALRM TERM ABRT USR1 USR2 SPARE18 SPARE19 CHLD CONT STOP TSTP TTIN TTOU DEBUG SPARE27 SPARE28 SPARE29 SPARE30 SPARE31 SPARE32 RTMIN RTMAX"",0"
4625 $ psnwc1="""ZERO"",""HUP"",""INT"",""QUIT"",""ILL"",""TRAP"",""IOT"",""EMT"",""FPE"",""KILL"",""BUS"",""SEGV"",""SYS"","
4626 $ psnwc2="""PIPE"",""ALRM"",""TERM"",""ABRT"",""USR1"",""USR2"",""SPARE18"",""SPARE19"",""CHLD"",""CONT"",""STOP"",""TSTP"","
4627 $ psnwc3="""TTIN"",""TTOU"",""DEBUG"",""SPARE27"",""SPARE28"",""SPARE29"",""SPARE30"",""SPARE31"",""SPARE32"",""RTMIN"",""RTMAX"",0"
4628 $ sig_name_init = psnwc1 + psnwc2 + psnwc3
4629 $ sig_num="0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 6 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 64"",0"
4630 $ sig_num_init="0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,6,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,64,0"
4631 $! perl_sig_num_with_commas=sig_num_init
4634 $ d_pathconf="define"
4635 $ d_fpathconf="define"
4636 $ d_sysconf="define"
4637 $ d_sigsetjmp="define"
4639 $ pidtype="unsigned int"
4641 $ d_getitimer="undef"
4642 $ d_gettimeod="undef"
4644 $ d_mprotect="undef"
4650 $ d_setitimer="undef"
4651 $ d_sigaction="undef"
4652 $ d_sigprocmask="undef"
4653 $ d_truncate="undef"
4656 $ sig_name="ZERO HUP INT QUIT ILL TRAP IOT EMT FPE KILL BUS SEGV SYS PIPE ALRM TERM ABRT USR1 USR2"",0"
4657 $ psnwc1="""ZERO"",""HUP"",""INT"",""QUIT"",""ILL"",""TRAP"",""IOT"",""EMT"",""FPE"",""KILL"",""BUS"",""SEGV"",""SYS"","
4658 $ psnwc2="""PIPE"",""ALRM"",""TERM"",""ABRT"",""USR1"",""USR2"",0"
4659 $ sig_name_init = psnwc1 + psnwc2
4660 $ sig_num="0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 6 16 17"",0"
4661 $ sig_num_init="0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,6,16,17,0"
4662 $! perl_sig_num_with_commas=sig_num_init
4664 $ uidtype="unsigned int"
4665 $ d_pathconf="undef"
4666 $ d_fpathconf="undef"
4668 $ d_sigsetjmp="undef"
4670 $!: see if tzname[] exists
4672 $ WS "#include <stdio.h>"
4673 $ WS "#include <time.h>"
4674 $ WS "int main() { extern short tzname[]; printf(""%hd"", tzname[0]); }"
4677 $ IF compile_status .EQ. good_compile
4679 $ d_tzname = "undef"
4680 $ echo4 "tzname[] NOT found."
4682 $ d_tzname = "define"
4683 $ echo4 "tzname[] found."
4685 $ IF F$SEARCH("try.obj") .NES. "" THEN DELETE/NOLOG/NOCONFIRM try.obj;
4687 $ IF d_gethname .EQS. "undef" .AND. d_uname .EQS. "undef"
4689 $ d_phostname="define"
4691 $ d_phostname="undef"
4695 $ IF ccname .EQS. "DEC"
4697 $ d_mbstowcs="define"
4699 $ d_stdiobase="define"
4700 $ d_stdio_cnt_lval="define"
4701 $ d_stdio_ptr_lval="define"
4702 $ d_stdstdio="define"
4703 $ d_wcstombs="define"
4706 $ d_strcoll="define"
4707 $ d_strxfrm="define"
4710 $ i_langinfo="define"
4711 $ d_locconv="define"
4712 $ d_nl_langinfo="define"
4713 $ d_setlocale="define"
4714 $ vms_cc_type="decc"
4716 $ d_mbstowcs="undef"
4718 $ d_stdiobase="undef"
4719 $ d_stdio_cnt_lval="undef"
4720 $ d_stdio_ptr_lval="undef"
4721 $ d_stdstdio="undef"
4722 $ d_wcstombs="undef"
4729 $ i_langinfo="undef"
4731 $ d_nl_langinfo="undef"
4732 $ d_setlocale="undef"
4734 $ d_stdio_ptr_lval_sets_cnt="undef"
4735 $ d_stdio_ptr_lval_nochange_cnt="define"
4738 $ if Has_Socketshr .OR. Has_Dec_C_Sockets
4740 $ d_vms_do_sockets="define"
4744 $ netdb_hlen_type="int"
4745 $ netdb_host_type="char *"
4746 $ netdb_name_type="char *"
4747 $ netdb_net_type="long"
4748 $ d_gethbyaddr="define"
4749 $ d_gethbyname="define"
4750 $ d_getnbyaddr="define"
4751 $ d_getnbyname="define"
4752 $ d_getpbynumber="define"
4753 $ d_getpbyname="define"
4754 $ d_getsbyport="define"
4755 $ d_getsbyname="define"
4756 $ d_gethostprotos="define"
4757 $ d_getnetprotos="define"
4758 $ d_getprotoprotos="define"
4759 $ d_getservprotos="define"
4760 $ IF ccname .EQS. "DEC" .OR. ccname .EQS. "CXX"
4762 $ socksizetype="unsigned int"
4764 $ socksizetype="int *"
4767 $ d_vms_do_sockets="undef"
4771 $ netdb_hlen_type="int"
4772 $ netdb_host_type="char *"
4773 $ netdb_name_type="char *"
4774 $ netdb_net_type="long"
4775 $ d_gethbyaddr="undef"
4776 $ d_gethbyname="undef"
4777 $ d_getnbyaddr="undef"
4778 $ d_getnbyname="undef"
4779 $ d_getpbynumber="undef"
4780 $ d_getpbyname="undef"
4781 $ d_getsbyport="undef"
4782 $ d_getsbyname="undef"
4783 $ d_gethostprotos="undef"
4784 $ d_getnetprotos="undef"
4785 $ d_getprotoprotos="undef"
4786 $ d_getservprotos="undef"
4787 $ socksizetype="undef"
4792 $ usethreads="define"
4793 $ d_pthreads_created_joinable="define"
4794 $ if (vms_ver .GES. "7.0")
4796 $ d_oldpthreads="undef"
4798 $ d_oldpthreads="define"
4801 $ d_oldpthreads="undef"
4802 $ usethreads="undef"
4803 $ d_pthreads_created_joinable="undef"
4806 $! new (5.005_62++) typedefs for primitives
4808 $ echo "Choosing the C types to be used for Perl's internal types..."
4810 $ uvtype="unsigned long"
4812 $ u8type="unsigned char"
4814 $ u16type="unsigned short"
4816 $ u32type="unsigned int"
4817 $ i64type="long long"
4818 $ u64type="unsigned long long"
4821 $ IF use64bitint .OR. use64bitint .EQS. "define"
4823 $ ivtype = "''i64type'"
4824 $ uvtype = "''u64type'"
4825 $ nvtype="long double"
4832 $ GOSUB type_size_check
4834 $ IF use64bitint .OR. use64bitint .EQS. "define" THEN i64size = tmp
4835 $ IF ivtype .eqs. "long"
4836 $ THEN longsize = tmp
4839 $ GOSUB type_size_check
4844 $ GOSUB type_size_check
4846 $ IF use64bitint .OR. use64bitint .EQS. "define" THEN u64size = tmp
4849 $ GOSUB type_size_check
4853 $ GOSUB type_size_check
4856 $ tmp = "''i16type'"
4857 $ GOSUB type_size_check
4859 $ IF i16type .eqs. "short"
4860 $ THEN shortsize = tmp
4863 $ gosub type_size_check
4867 $ tmp = "''u16type'"
4868 $ GOSUB type_size_check
4871 $ tmp = "''i32type'"
4872 $ GOSUB type_size_check
4874 $ IF i32type .eqs. "int"
4875 $ THEN intsize = tmp
4878 $ gosub type_size_check
4882 $ tmp = "''u32type'"
4883 $ gosub type_size_check
4887 $ GOSUB type_size_check
4890 $ echo "(IV will be ""''ivtype'"", ''ivsize' bytes)"
4891 $ echo "(UV will be ""''uvtype'"", ''uvsize' bytes)"
4892 $ echo "(NV will be ""''nvtype'"", ''nvsize' bytes)"
4894 $ echo4 "Checking whether your NVs can preserve your UVs..."
4896 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4897 $ WS "#include <stdlib.h>"
4899 $ WS "#include <stdio.h>"
4901 $ WS " ''uvtype' k = (''uvtype')~0, l;"
4902 $ WS " ''nvtype' d;"
4904 $ WS " d = (''nvtype')l;"
4905 $ WS " l = (''uvtype')d;"
4907 $ WS " printf(""preserve\n"");"
4912 $ IF tmp .EQS. "preserve"
4914 $ d_nv_preserves_uv = "define"
4915 $ echo "Yes, they can."
4916 $ d_nv_preserves_uv_bits = F$STRING(F$INTEGER(uvsize) * 8)
4918 $ d_nv_preserves_uv = "undef"
4919 $ echo "No, they can't."
4920 $ echo4 "Checking how many bits of your UVs your NVs can preserve..."
4922 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4923 $ WS "#include <stdlib.h>"
4925 $ WS "#include <stdio.h>"
4927 $ WS " ''uvtype' u = 0;"
4928 $ WS " int n = 8 * ''uvsize';"
4930 $ WS " for (i = 0; i < n; i++) {"
4931 $ WS " u = u << 1 | (''uvtype')1;"
4932 $ WS " if ((''uvtype')(''nvtype')u != u)"
4935 $ WS " printf(""%d\n"", i);"
4940 $ d_nv_preserves_uv_bits = tmp
4943 $ echo4 "Checking whether your kill() uses SYS$FORCEX..."
4944 $ kill_by_sigprc = "undef"
4946 $ WS "#include <stdio.h>"
4947 $ WS "#include <signal.h>"
4948 $ WS "void handler(int s) { printf(""%d\n"",s); } "
4950 $ WS " printf(""0"");"
4951 $ WS " signal(1,handler); kill(0,1);"
4954 $ ON ERROR THEN CONTINUE
4958 $ echo "Yes, it does."
4959 $ echo4 "Checking whether we can use SYS$SIGPRC instead"
4961 $ WS "#include <stdio.h>"
4962 $ WS "#include <lib$routines.h>"
4963 $ WS "unsigned long code = 0;"
4964 $ WS "int handler(unsigned long *args) {"
4965 $ WS " code = args[1];"
4969 $ WS " int iss, sys$sigprc();"
4970 $ WS " lib$establish(handler);"
4971 $ WS " iss = sys$sigprc(0,0,0x1234);"
4972 $ WS " iss = ((iss&1)==1 && code == 0x1234);"
4973 $ WS " printf(""%d\n"",iss);"
4979 $ echo "looks like we can"
4980 $ kill_by_sigprc = "define"
4982 $! since SIGBUS and SIGSEGV indistinguishable, make them the same here.
4983 $! sigusr1 and sigusr2 show up in VMS6.2 and later
4985 $ if vms_ver .GES. "6.2"
4987 $ sig_name="ZERO HUP INT QUIT ILL TRAP IOT EMT FPE KILL BUS SEGV SYS PIPE ALRM TERM ABRT USR1 USR2"",0"
4988 $ psnwc1="""ZERO"",""HUP"",""INT"",""QUIT"",""ILL"",""TRAP"",""IOT"",""EMT"",""FPE"",""KILL"",""BUS"",""SEGV"",""SYS"","
4989 $ psnwc2="""PIPE"",""ALRM"",""TERM"",""ABRT"",""USR1"",""USR2"",0"
4990 $ sig_name_init = psnwc1 + psnwc2
4991 $ sig_num="0 1 2 3 4 5 6 7 8 9 10 10 12 13 14 15 6 16 17"",0"
4992 $ sig_num_init="0,1,2,3,4,5,6,7,8,9,10,10,12,13,14,15,6,16,17,0"
4995 $ sig_name="ZERO HUP INT QUIT ILL TRAP IOT EMT FPE KILL BUS SEGV SYS PIPE ALRM TERM ABRT"",0"
4996 $ psnwc1="""ZERO"",""HUP"",""INT"",""QUIT"",""ILL"",""TRAP"",""IOT"",""EMT"",""FPE"",""KILL"",""BUS"",""SEGV"",""SYS"","
4997 $ psnwc2="""PIPE"",""ALRM"",""TERM"",""ABRT"",0"
4998 $ sig_name_init = psnwc1 + psnwc2
4999 $ sig_num="0 1 2 3 4 5 6 7 8 9 10 10 12 13 14 15 6"",0"
5000 $ sig_num_init="0,1,2,3,4,5,6,7,8,9,10,10,12,13,14,15,6,0"
5007 $! Finally the composite ones. All config
5009 $ myuname="''osname' ''myname' ''osvers' ''F$EDIT(hwname, "TRIM")'"
5011 $ IF ccname .EQS. "DEC"
5013 $ ccflags="/Include=[]/Standard=Relaxed_ANSI/Prefix=All/Obj=''obj_ext' ''ccflags'"
5015 $ i_dirent = "undef"
5016 $ IF ccname .EQS. "CXX"
5018 $ i_dirent = "define"
5019 $ ccflags="/Include=[]/Standard=ANSI/Prefix=All/Obj=''obj_ext' ''ccflags'"
5021 $ IF use_vmsdebug_perl
5023 $ optimize="/List/Debug/NoOpt"
5024 $ ldflags="/Debug/Trace/Map"
5027 $ optimize= "/NoList"
5028 $ ldflags="/NoTrace/NoMap"
5032 $! Okay, we've got everything configured. Now go write out a config.sh.
5033 $ basename_config_sh = F$PARSE(config_sh,,,"NAME",)+F$PARSE(config_sh,,,"TYPE",)
5034 $ echo4 "Creating ''basename_config_sh'..."
5035 $ open/write CONFIG 'config_sh'
5036 $ WC := write CONFIG
5038 $! ##BEGIN WRITE NEW CONSTANTS HERE##
5042 $ WC "# This file was produced by Configure.COM on a ''osname' system."
5044 $ WC "# Package name : ''package'"
5045 $ WC "# Source directory : ''src'"
5046 $ WC "# Configuration time: " + cf_time
5047 $ WC "# Configuration by : " + cf_by
5048 $ WC "# Target system : " + myuname
5050 $ WC "CONFIG='true'"
5051 $ WC "Makefile_SH='" + Makefile_SH + "'"
5052 $ WC "Mcc='" + Mcc + "'"
5053 $ WC "PERL_REVISION='" + revision + "'"
5054 $ WC "PERL_VERSION='" + patchlevel + "'"
5055 $ WC "PERL_SUBVERSION='" + subversion + "'"
5056 $ WC "PERL_API_VERSION='" + api_version + "'"
5057 $ WC "PERL_API_SUBVERSION='" + api_subversion + "'"
5058 $ WC "alignbytes='" + alignbytes + "'"
5059 $ WC "aphostname='write sys$output f$edit(f$getsyi(\""SCSNODE\""),\""TRIM,LOWERCASE\"")'"
5061 $ WC "archlib='" + archlib + "'"
5062 $ WC "archlibexp='" + archlibexp + "'"
5063 $ WC "archname='" + archname + "'"
5064 $ WC "baserev='" + baserev + "'"
5065 $ WC "bin='" + bin + "'"
5066 $ WC "binexp='" + binexp + "'"
5067 $ WC "builddir='" + builddir + "'"
5068 $ WC "byteorder='1234'"
5069 $ WC "castflags='0'"
5070 $ WC "cc='" + perl_cc + "'"
5071 $ WC "cccdlflags='" + cccdlflags + "'"
5072 $ WC "ccdlflags='" + ccdlflags + "'"
5073 $ WC "ccflags='" + ccflags + "'"
5074 $ WC "ccname='" + ccname + "'"
5075 $ WC "ccversion='" + ccversion + "'"
5076 $ WC "cf_by='" + cf_by + "'"
5077 $ WC "cf_email='" + cf_email + "'"
5078 $ WC "cf_time='" + cf_time + "'"
5079 $ WC "config_args='" + config_args + "'"
5080 $ WC "config_sh='" + config_sh + "'"
5081 $ WC "cpp_stuff='" + cpp_stuff + "'"
5082 $ WC "cpplast='" + cpplast + "'"
5083 $ WC "cppminus='" + cppminus + "'"
5084 $ WC "cpprun='" + cpprun + "'"
5085 $ WC "cppstdin='" + cppstdin + "'"
5086 $ IF use64bitint .OR. use64bitint .EQS. "define"
5088 $! gcvt() does not work for > 16 decimal places; fallback to sprintf
5089 $ WC "d_Gconvert='sprintf((b),""%.*" + (nvgformat-"""") + ",(n),(x))'"
5091 $ WC "d_Gconvert='my_gconvert(x,n,t,b)'"
5093 $ WC "d_PRIEldbl='" + d_PRIEUldbl + "'"
5094 $ WC "d_PRIFldbl='" + d_PRIFUldbl + "'"
5095 $ WC "d_PRIGldbl='" + d_PRIGUldbl + "'"
5096 $ WC "d_PRIXU64='" + d_PRIXU64 + "'"
5097 $ WC "d_PRId64='" + d_PRId64 + "'"
5098 $ WC "d_PRIeldbl='" + d_PRIeldbl + "'"
5099 $ WC "d_PRIfldbl='" + d_PRIfldbl + "'"
5100 $ WC "d_PRIgldbl='" + d_PRIgldbl + "'"
5101 $ WC "d_PRIo64='" + d_PRIo64 + "'"
5102 $ WC "d_PRIu64='" + d_PRIu64 + "'"
5103 $ WC "d_PRIx64='" + d_PRIx64 + "'"
5104 $ WC "d_SCNfldbl='" + d_SCNfldbl + "'"
5105 $ WC "d__fwalk='undef'"
5106 $ WC "d_access='" + d_access + "'"
5107 $ WC "d_accessx='undef'"
5108 $ WC "d_alarm='define'"
5109 $ WC "d_archlib='define'"
5110 $ WC "d_atolf='" + d_atolf + "'"
5111 $ WC "d_atoll='" + d_atoll + "'"
5112 $ WC "d_attribut='" + d_attribut + "'"
5113 $ WC "d_bcmp='" + d_bcmp + "'"
5114 $ WC "d_bcopy='" + d_bcopy + "'"
5115 $ WC "d_bincompat3='undef'"
5116 $ WC "d_bincompat5005='undef'"
5117 $! WC "d_bsdpgrp='undef'"
5118 $ WC "d_bsdgetpgrp='undef'"
5119 $ WC "d_bsdsetpgrp='undef'"
5120 $ WC "d_bzero='" + d_bzero + "'"
5121 $ WC "d_casti32='define'"
5122 $ WC "d_castneg='define'"
5123 $ WC "d_charvspr='undef'"
5124 $ WC "d_chown='define'"
5125 $ WC "d_chroot='undef'"
5126 $ WC "d_chsize='undef'"
5127 $ WC "d_class='undef'"
5128 $ WC "d_cmsghdr_s='undef'"
5129 $ WC "d_const='define'"
5130 $ WC "d_crypt='define'"
5131 $ WC "d_csh='undef'"
5132 $ WC "d_cuserid='define'"
5133 $ WC "d_dbl_dig='define'"
5134 $ WC "d_dbminitproto='undef'"
5135 $ WC "d_difftime='define'"
5136 $ WC "d_dirfd='undef'"
5137 $ WC "d_dirnamlen='define'"
5138 $ WC "d_dlerror='undef'"
5139 $ WC "d_dlsymun='undef'"
5140 $ WC "d_dosuid='undef'"
5141 $ WC "d_drand48proto='" + d_drand48proto + "'"
5142 $ WC "d_dup2='define'"
5143 $ WC "d_eaccess='undef'"
5144 $ WC "d_endgrent='define'"
5145 $ WC "d_endhent='" + d_endhent + "'"
5146 $ WC "d_endnent='" + d_endnent + "'"
5147 $ WC "d_endpent='" + d_endpent + "'"
5148 $ WC "d_endpwent='define'"
5149 $ WC "d_endsent='" + d_endsent + "'"
5150 $ WC "d_eofnblk='undef'"
5151 $ WC "d_eunice='undef'"
5152 $ WC "d_fchmod='undef'"
5153 $ WC "d_fchdir='undef'"
5154 $ WC "d_fchown='undef'"
5155 $ WC "d_fcntl='" + d_fcntl + "'"
5156 $ WC "d_fcntl_can_lock='" + d_fcntl_can_lock + "'"
5157 $ WC "d_fd_set='" + d_fd_set + "'"
5158 $ WC "d_fgetpos='define'"
5159 $ WC "d_finite='undef'"
5160 $ WC "d_finitel='undef'"
5161 $ WC "d_flexfnam='define'"
5162 $ WC "d_flock='undef'"
5163 $ WC "d_flockproto='undef'"
5164 $ WC "d_fork='undef'"
5165 $ WC "d_fp_class='undef'"
5166 $ WC "d_fpathconf='" + d_fpathconf + "'"
5167 $ WC "d_fpclass='undef'"
5168 $ WC "d_fpclassify='undef'"
5169 $ WC "d_fpclassl='undef'"
5170 $ WC "d_fpos64_t='" + d_fpos64_t + "'"
5171 $ WC "d_frexpl='" + d_frexpl + "'"
5172 $ WC "d_fs_data_s='undef'"
5173 $ WC "d_fseeko='undef'"
5174 $ WC "d_fsetpos='define'"
5175 $ WC "d_fstatfs='undef'"
5176 $ WC "d_fstatvfs='undef'"
5177 $ WC "d_fsync='undef'"
5178 $ WC "d_ftello='undef'"
5179 $ WC "d_getcwd='define'"
5180 $ WC "d_getespwnam='undef'"
5181 $ WC "d_getfsstat='undef'"
5182 $ WC "d_getgrent='define'"
5183 $ WC "d_getgrps='undef'"
5184 $ WC "d_gethbyaddr='" + d_gethbyaddr + "'"
5185 $ WC "d_gethbyname='" + d_gethbyname + "'"
5186 $ WC "d_gethent='" + d_gethent + "'"
5187 $ WC "d_gethname='" + d_gethname + "'"
5188 $ WC "d_gethostprotos='" + d_gethostprotos + "'"
5189 $ WC "d_getitimer='" + d_getitimer + "'"
5190 $ WC "d_getlogin='define'"
5191 $ WC "d_getmnt='undef'"
5192 $ WC "d_getmntent='undef'"
5193 $ WC "d_getnbyaddr='" + d_getnbyaddr + "'"
5194 $ WC "d_getnbyname='" + d_getnbyname + "'"
5195 $ WC "d_getnent='" + d_getnent + "'"
5196 $ WC "d_getnetprotos='" + d_getnetprotos + "'"
5197 $ WC "d_getpagsz='undef'"
5198 $ WC "d_getpbyname='" + d_getpbyname + "'"
5199 $ WC "d_getpbynumber='" + d_getpbynumber + "'"
5200 $ WC "d_getpent='" + d_getpent + "'"
5201 $ WC "d_getpgid='undef'"
5202 $ WC "d_getpgrp2='undef'"
5203 $ WC "d_getpgrp='undef'"
5204 $ WC "d_getppid='undef'"
5205 $ WC "d_getprior='undef'"
5206 $ WC "d_getprotoprotos='" + d_getprotoprotos + "'"
5207 $ WC "d_getprpwnam='undef'"
5208 $ WC "d_getpwent='define'"
5209 $ WC "d_getsbyname='" + d_getsbyname + "'"
5210 $ WC "d_getsbyport='" + d_getsbyport + "'"
5211 $ WC "d_getsent='" + d_getsent + "'"
5212 $ WC "d_getservprotos='" + d_getservprotos + "'"
5213 $ WC "d_getspnam='undef'"
5214 $ WC "d_gettimeod='" + d_gettimeod + "'"
5215 $ WC "d_gnulibc='undef'"
5216 $ WC "d_grpasswd='undef'"
5217 $ WC "d_hasmntopt='undef'"
5218 $ WC "d_htonl='" + d_htonl + "'"
5219 $ WC "d_index='" + d_index + "'"
5220 $ WC "d_inetaton='undef'"
5221 $ WC "d_int64_t='" + d_int64_t + "'"
5222 $ WC "d_isascii='define'"
5223 $ WC "d_isfinite='undef'"
5224 $ WC "d_isinf='undef'"
5225 $ WC "d_isnan='" + d_isnan + "'"
5226 $ WC "d_isnanl='" + d_isnanl + "'"
5227 $ WC "d_killpg='undef'"
5228 $ WC "d_lchown='undef'"
5229 $ WC "d_ldbl_dig='define'"
5230 $ WC "d_link='undef'"
5231 $ WC "d_llseek='undef'"
5232 $ WC "d_locconv='" + d_locconv + "'"
5233 $ WC "d_lockf='undef'"
5234 $ WC "d_longdbl='" + d_longdbl + "'"
5235 $ WC "d_longlong='" + d_longlong + "'"
5236 $ WC "d_lseekproto='define'"
5237 $ WC "d_lstat='undef'"
5238 $ WC "d_madvise='undef'"
5239 $ WC "d_mblen='" + d_mblen + "'"
5240 $ WC "d_mbstowcs='" + d_mbstowcs + "'"
5241 $ WC "d_mbtowc='" + d_mbtowc + "'"
5242 $ WC "d_memchr='" + d_memchr + "'"
5243 $ WC "d_memcmp='define'"
5244 $ WC "d_memcpy='define'"
5245 $ WC "d_memmove='define'"
5246 $ WC "d_memset='define'"
5247 $ WC "d_mkdir='define'"
5248 $ WC "d_mkdtemp='" + d_mkdtemp + "'"
5249 $ WC "d_mkfifo='undef'"
5250 $ WC "d_mknod='undef'"
5251 $ WC "d_mkstemp='" + d_mkstemp + "'"
5252 $ WC "d_mkstemps='" + d_mkstemps + "'"
5253 $ WC "d_mktime='" + d_mktime + "'"
5254 $ WC "d_mmap='" + d_mmap + "'"
5255 $ WC "d_modfl='" + d_modfl + "'"
5256 $ WC "d_modfl_pow32_bug='undef'"
5257 $ WC "d_mprotect='" + d_mprotect + "'"
5258 $ WC "d_msg='undef'"
5259 $ WC "d_msg_ctrunc='undef'"
5260 $ WC "d_msg_dontroute='undef'"
5261 $ WC "d_msg_oob='undef'"
5262 $ WC "d_msg_peek='undef'"
5263 $ WC "d_msg_proxy='undef'"
5264 $ WC "d_msghdr_s='undef'"
5265 $ WC "d_msync='" + d_msync + "'"
5266 $ WC "d_munmap='" + d_munmap + "'"
5267 $ WC "d_mymalloc='" + d_mymalloc + "'"
5268 $ WC "d_nice='define'"
5269 $ WC "d_nl_langinfo='" + d_nl_langinfo + "'"
5270 $ WC "d_nv_preserves_uv='" + d_nv_preserves_uv + "'"
5271 $ WC "d_nv_preserves_uv_bits='" + d_nv_preserves_uv_bits + "'"
5272 $ WC "d_off64_t='" + d_off64_t + "'"
5273 $ WC "d_old_pthread_create_joinable='" + d_old_pthread_create_joinable + "'"
5274 $ WC "d_oldarchlib='define'"
5275 $ WC "d_oldpthreads='" + d_oldpthreads + "'"
5276 $ WC "d_open3='define'"
5277 $ WC "d_pathconf='" + d_pathconf + "'"
5278 $ WC "d_pause='define'"
5279 $ WC "d_perl_otherlibdirs='undef'"
5280 $ WC "d_phostname='" + d_phostname + "'"
5281 $ WC "d_pipe='define'"
5282 $ WC "d_poll='undef'"
5283 $ WC "d_procselfexe='undef'"
5284 $ WC "d_pthread_atfork='undef'"
5285 $ WC "d_pthread_yield='" + d_pthread_yield + "'"
5286 $ WC "d_pthreads_created_joinable='" + d_pthreads_created_joinable + "'"
5287 $ WC "d_pwage='undef'"
5288 $ WC "d_pwchange='undef'"
5289 $ WC "d_pwclass='undef'"
5290 $ WC "d_pwcomment='define'"
5291 $ WC "d_pwexpire='undef'"
5292 $ WC "d_pwgecos='define'"
5293 $ WC "d_pwpasswd='define'"
5294 $ WC "d_pwquota='undef'"
5295 $ WC "d_qgcvt='undef'"
5296 $ WC "d_quad='" + d_quad + "'"
5297 $ WC "d_readdir='define'"
5298 $ WC "d_readlink='undef'"
5299 $ WC "d_readv='undef'"
5300 $ WC "d_realpath='undef'"
5301 $ WC "d_recvmsg='undef'"
5302 $ WC "d_rename='define'"
5303 $ WC "d_rewinddir='define'"
5304 $ WC "d_rmdir='define'"
5305 $ WC "d_safebcpy='undef'"
5306 $ WC "d_safemcpy='define'"
5307 $ WC "d_sanemcmp='define'"
5308 $ WC "d_sbrkproto='define'"
5309 $ WC "d_sched_yield='" + d_sched_yield + "'"
5310 $ WC "d_scm_rights='undef'"
5311 $ WC "d_seekdir='define'"
5312 $ WC "d_select='" + d_select + "'"
5313 $ WC "d_sem='undef'"
5314 $ WC "d_semctl_semid_ds='undef'"
5315 $ WC "d_semctl_semun='undef'"
5316 $ WC "d_sendmsg='undef'"
5317 $ WC "d_setegid='undef'"
5318 $ WC "d_setenv='" + d_setenv + "'"
5319 $ WC "d_seteuid='undef'"
5320 $ WC "d_setgrent='undef'"
5321 $ WC "d_setgrps='undef'"
5322 $ WC "d_sethent='" + d_sethent + "'"
5323 $ WC "d_setitimer='" + d_setitimer + "'"
5324 $ WC "d_setlinebuf='undef'"
5325 $ WC "d_setlocale='" + d_setlocale + "'"
5326 $ WC "d_setnent='" + d_setnent + "'"
5327 $ WC "d_setpent='" + d_setpent + "'"
5328 $ WC "d_setpgid='undef'"
5329 $ WC "d_setpgrp2='undef'"
5330 $ WC "d_setpgrp='undef'"
5331 $ WC "d_setprior='undef'"
5332 $ WC "d_setproctitle='" + d_setproctitle + "'"
5333 $ WC "d_setpwent='define'"
5334 $ WC "d_setregid='undef'"
5335 $ WC "d_setresgid='undef'"
5336 $ WC "d_setresuid='undef'"
5337 $ WC "d_setreuid='undef'"
5338 $ WC "d_setrgid='undef'"
5339 $ WC "d_setruid='undef'"
5340 $ WC "d_setsent='" + d_setsent + "'"
5341 $ WC "d_setsid='undef'"
5342 $ WC "d_setvbuf='" + d_setvbuf + "'"
5343 $ WC "d_sfio='undef'"
5344 $ WC "d_shm='undef'"
5345 $ WC "d_shmatprototype='undef'"
5346 $ WC "d_sigaction='" + d_sigaction + "'"
5347 $ WC "d_sigprocmask='" + d_sigprocmask + "'"
5348 $ WC "d_sigsetjmp='" + d_sigsetjmp + "'"
5349 $ WC "d_sockatmark='undef'"
5350 $ WC "d_sockatmarkproto='undef'"
5351 $ WC "d_socket='" + d_socket + "'"
5352 $ WC "d_socklen_t='" + d_socklen_t + "'"
5353 $ WC "d_sockpair='undef'"
5354 $ WC "d_socks5_init='undef'"
5355 $ WC "d_sqrtl='define'"
5356 $ WC "d_sresgproto='undef'"
5357 $ WC "d_sresgproto='undef'"
5358 $ WC "d_sresproto='undef'"
5359 $ WC "d_sresuproto='undef'"
5360 $ WC "d_statblks='undef'"
5361 $ WC "d_statfs_f_flags='undef'"
5362 $ WC "d_statfs_s='undef'"
5363 $ WC "d_statfsflags='undef'"
5364 $ WC "d_stdio_cnt_lval='" + d_stdio_cnt_lval + "'"
5365 $ WC "d_stdio_ptr_lval='" + d_stdio_ptr_lval + "'"
5366 $ WC "d_stdio_ptr_lval_nochange_cnt='" + d_stdio_ptr_lval_nochange_cnt + "'"
5367 $ WC "d_stdio_ptr_lval_sets_cnt='" + d_stdio_ptr_lval_sets_cnt + "'"
5368 $ WC "d_stdio_stream_array='undef'"
5369 $ WC "d_stdiobase='" + d_stdiobase + "'"
5370 $ WC "d_stdstdio='" + d_stdstdio + "'"
5371 $ WC "d_strchr='define'"
5372 $ WC "d_strcoll='" + d_strcoll + "'"
5373 $ WC "d_strctcpy='define'"
5374 $ WC "d_strerrm='strerror((e),vaxc$errno)'"
5375 $ WC "d_strerror='define'"
5376 $ WC "d_strftime='define'"
5377 $ WC "d_strtod='define'"
5378 $ WC "d_strtol='define'"
5379 $ WC "d_strtold='" + d_strtold + "'"
5380 $ WC "d_strtoll='" + d_strtoll + "'"
5381 $ WC "d_strtoq='define'"
5382 $ WC "d_strtoul='define'"
5383 $ WC "d_strtoull='" + d_strtoull + "'"
5384 $ WC "d_strtouq='" + d_strtouq + "'"
5385 $ WC "d_strxfrm='" + d_strxfrm + "'"
5386 $ WC "d_suidsafe='undef'"
5387 $ WC "d_symlink='undef'"
5388 $ WC "d_syscall='undef'"
5389 $ WC "d_syscallproto='undef'"
5390 $ WC "d_sysconf='" + d_sysconf + "'"
5391 $ WC "d_syserrlst='undef'"
5392 $ WC "d_system='define'"
5393 $ WC "d_tcgetpgrp='undef'"
5394 $ WC "d_tcsetpgrp='undef'"
5395 $ WC "d_telldir='define'"
5396 $ WC "d_telldirproto='define'"
5397 $ WC "d_times='define'"
5398 $ WC "d_truncate='" + d_truncate + "'"
5399 $ WC "d_tzname='" + d_tzname + "'"
5400 $ WC "d_u32align='define'"
5401 $ WC "d_ualarm='" + d_ualarm + "'"
5402 $ WC "d_umask='define'"
5403 $ WC "d_uname='" + d_uname + "'"
5404 $ WC "d_union_semun='undef'"
5405 $ WC "d_unlink_all_versions='undef'"
5406 $ WC "d_unordered='undef'"
5407 $ WC "d_usleep='" + d_usleep + "'"
5408 $ WC "d_usleepproto='" + d_usleep + "'"
5409 $ WC "d_ustat='undef'"
5410 $ WC "d_vendorarch='undef'"
5411 $ WC "d_vendorlib='undef'"
5412 $ WC "d_vfork='define'"
5413 $ WC "d_vms_case_sensitive_symbols='" + d_vms_be_case_sensitive + "'" ! VMS
5414 $ WC "d_vms_do_sockets='" + d_vms_do_sockets + "'" ! VMS
5415 $ WC "d_void_closedir='define'"
5416 $ WC "d_volatile='define'"
5417 $ WC "d_vprintf='define'"
5418 $ WC "d_wait4='" + d_wait4 + "'"
5419 $ WC "d_waitpid='define'"
5420 $ WC "d_wcstombs='" + d_wcstombs + "'"
5421 $ WC "d_wctomb='" + d_wctomb + "'"
5422 $ WC "d_writev='undef'"
5423 $ WC "db_hashtype=' '"
5424 $ WC "db_prefixtype=' '"
5425 $ WC "dbgprefix='" + dbgprefix + "'"
5426 $ WC "defvoidused='15'"
5427 $ WC "devtype='" + devtype + "'"
5428 $ WC "direntrytype='struct dirent'"
5429 $ WC "dlext='" + dlext + "'"
5430 $ WC "dlobj='" + dlobj + "'"
5431 $ WC "dlsrc='dl_vms.c'"
5432 $ WC "doublesize='" + doublesize + "'"
5433 $ WC "drand01='" + drand01 + "'"
5435 $! The extensions symbol may be quite long
5437 $ tmp = "dynamic_ext='" + extensions + "'"
5441 $ WC "ebcdic='undef'"
5442 $ WC "embedmymalloc='" + usemymalloc + "'"
5443 $ WC "eunicefix=':'"
5444 $ WC "exe_ext='" + exe_ext + "'"
5446 $! The extensions symbol may be quite long
5448 $ tmp = "extensions='" + extensions + "'"
5451 $ WC "fflushNULL='define'"
5452 $ WC "fflushall='undef'"
5453 $ WC "fpostype='fpos_t'"
5454 $ WC "freetype='void'"
5455 $ WC "full_ar='" + "'"
5456 $ WC "full_csh='" + " '"
5457 $ WC "full_sed='_NLA0:'"
5458 $ WC "gccversion='" + gccversion + "'"
5459 $ WC "gidformat='lu'"
5462 $ WC "gidtype='" + gidtype + "'"
5463 $ WC "groupstype='Gid_t'"
5465 $ WC "hintfile='" + "'"
5466 $ WC "i16size='" + i16size + "'"
5467 $ WC "i16type='" + i16type + "'"
5468 $ WC "i32size='" + i32size + "'"
5469 $ WC "i32type='" + i32type + "'"
5470 $ WC "i64size='" + i64size + "'"
5471 $ WC "i64type='" + i64type + "'"
5472 $ WC "i8size='" + i8size + "'"
5473 $ WC "i8type='" + i8type + "'"
5474 $ WC "i_arpainet='undef'"
5475 $ WC "i_dbm='undef'"
5476 $ WC "i_dirent='" + i_dirent + "'"
5477 $ WC "i_dlfcn='undef'"
5478 $ WC "i_fcntl='" + i_fcntl + "'"
5479 $ WC "i_float='define'"
5481 $ WC "i_fp_class='undef'"
5482 $ WC "i_grp='undef'"
5483 $ WC "i_ieeefp='undef'"
5484 $ WC "i_inttypes='" + i_inttypes + "'"
5485 $ WC "i_langinfo='" + i_langinfo + "'"
5486 $ WC "i_libutil='" + i_libutil + "'"
5487 $ WC "i_limits='define'"
5488 $ WC "i_locale='" + i_locale + "'"
5489 $ WC "i_machcthr='undef'"
5490 $ WC "i_machcthreads='undef'"
5491 $ WC "i_math='define'"
5492 $ WC "i_memory='undef'"
5493 $ WC "i_mntent='undef'"
5494 $ WC "i_ndbm='undef'"
5495 $ WC "i_netdb='" + i_netdb + "'"
5496 $ WC "i_neterrno='define'"
5497 $ WC "i_netinettcp='" + i_netinettcp + "'"
5498 $ WC "i_niin='" + i_niin + "'"
5499 $ WC "i_poll='" + i_poll + "'"
5500 $ WC "i_prot='undef'"
5501 $ WC "i_pthread='define'"
5502 $ WC "i_pwd='undef'"
5503 $ WC "i_rpcsvcdbm='undef'"
5504 $ WC "i_sfio='undef'"
5505 $ WC "i_sgtty='undef'"
5506 $ WC "i_shadow='" + i_shadow + "'"
5507 $ WC "i_socks='" + i_socks + "'"
5508 $ WC "i_stdarg='define'"
5509 $ WC "i_stddef='define'"
5510 $ WC "i_stdlib='define'"
5511 $ WC "i_string='define'"
5512 $ WC "i_sunmath='undef'"
5513 $ WC "i_sysaccess='" + i_sysaccess + "'"
5514 $ WC "i_sysdir='undef'"
5515 $ WC "i_sysfile='" + i_sysfile + "'"
5516 $ WC "i_sysioctl='undef'"
5517 $ WC "i_syslog='" + i_syslog + "'"
5518 $ WC "i_sysmman='undef'"
5519 $ WC "i_sysmode='" + i_sysmode + "'"
5520 $ WC "i_sysmount='undef'"
5521 $ WC "i_sysndir='undef'"
5522 $ WC "i_sysparam='undef'"
5523 $ WC "i_sysresrc='undef'"
5524 $ WC "i_syssecrt='" + i_syssecrt + "'"
5525 $ WC "i_sysselct='undef'"
5526 $ WC "i_syssockio='undef'"
5527 $ WC "i_sysstat='define'"
5528 $ WC "i_sysstatfs='undef'"
5529 $ WC "i_sysstatvfs='undef'"
5530 $ WC "i_systime='undef'"
5531 $ WC "i_systimek='undef'"
5532 $ WC "i_systimes='undef'"
5533 $ WC "i_systypes='define'"
5534 $ WC "i_sysuio='" + i_sysuio + "'"
5535 $ WC "i_sysun='undef'"
5536 $ WC "i_sysutsname='" + i_sysutsname + "'"
5537 $ WC "i_sysvfs='undef'"
5538 $ WC "i_syswait='undef'"
5539 $ WC "i_termio='undef'"
5540 $ WC "i_termios='undef'"
5541 $ WC "i_time='define'"
5542 $ WC "i_unistd='" + i_unistd + "'"
5543 $ WC "i_ustat='undef'"
5544 $ WC "i_utime='undef'"
5545 $ WC "i_values='undef'"
5546 $ WC "i_varargs='undef'"
5547 $ WC "i_vfork='undef'"
5548 $ WC "inc_version_list='0'"
5549 $ WC "inc_version_list_init='0'"
5550 $ WC "installarchlib='" + installarchlib + "'"
5551 $ WC "installbin='" + installbin + "'"
5552 $ WC "installman1dir='" + installman1dir + "'"
5553 $ WC "installman3dir='" + installman3dir + "'"
5554 $ WC "installprivlib='" + installprivlib + "'"
5555 $ WC "installscript='" + installscript + "'"
5556 $ WC "installsitearch='" + installsitearch + "'"
5557 $ WC "installsitelib='" + installsitelib + "'"
5558 $ WC "installusrbinperl='undef'"
5559 $ WC "intsize='" + intsize + "'"
5560 $ WC "ivdformat='" + ivdformat + "'"
5561 $ WC "ivsize='" + ivsize + "'"
5562 $ WC "ivtype='" + ivtype + "'"
5564 $! The known_extensions symbol may be quite long
5566 $ tmp = "known_extensions='" + known_extensions + "'"
5569 $ WC "ld='" + ld + "'"
5570 $ WC "lddlflags='/Share'"
5571 $ WC "ldflags='" + ldflags + "'"
5572 $ WC "lib_ext='" + lib_ext + "'"
5573 $ WC "libc='" + libc + "'"
5574 $ WC "libpth='/sys$share /sys$library'"
5575 $ WC "libs='" + libs + "'"
5576 $ WC "longdblsize='" + longdblsize + "'"
5577 $ WC "longlongsize='" + longlongsize + "'"
5578 $ WC "longsize='" + longsize + "'"
5579 $ WC "lseeksize='4'"
5580 $ WC "lseektype='int'"
5582 $ WC "make='" + make + "'"
5583 $ WC "malloctype='void *'"
5584 $ WC "man1ext='rno'"
5585 $ WC "man3ext='rno'"
5586 $ WC "mmaptype='void *'"
5587 $ WC "modetype='unsigned int'"
5588 $ WC "multiarch='undef'"
5589 $ WC "mydomain='" + mydomain + "'"
5590 $ WC "myhostname='" + myhostname + "'"
5591 $ WC "myuname='" + myuname + "'"
5592 $ WC "need_va_copy='undef'"
5593 $ WC "netdb_hlen_type='" + netdb_hlen_type + "'"
5594 $ WC "netdb_host_type='" + netdb_host_type + "'"
5595 $ WC "netdb_name_type='" + netdb_name_type + "'"
5596 $ WC "netdb_net_type='" + netdb_net_type + "'"
5597 $ WC "nveformat='" + nveformat + "'"
5598 $ WC "nvfformat='" + nvfformat + "'"
5599 $ WC "nvgformat='" + nvgformat + "'"
5600 $ WC "nvsize='" + nvsize + "'"
5601 $ WC "nvtype='" + nvtype + "'"
5602 $ WC "o_nonblock=' '"
5603 $ WC "obj_ext='" + obj_ext + "'"
5604 $ WC "old_pthread_create_joinable='" + old_pthread_create_joinable + "'"
5605 $ WC "oldarchlib='" + oldarchlib + "'"
5606 $ WC "oldarchlibexp='" + oldarchlibexp + "'"
5607 $ WC "optimize='" + optimize + "'"
5608 $ WC "osname='" + osname + "'"
5609 $ WC "osvers='" + osvers + "'"
5610 $ WC "otherlibdirs='" + "'"
5611 $ WC "package='" + package + "'"
5612 $ WC "pager='" + pager + "'"
5613 $ WC "patchlevel='" + patchlevel + "'"
5615 $ WC "perl_root='" + perl_root + "'" ! VMS specific $trnlnm()
5616 $ WC "perladmin='" + perladmin + "'"
5617 $ WC "perllibs='" + perllibs + "'"
5618 $ WC "perl_symbol='" + perl_symbol + "'" ! VMS specific
5619 $ WC "perl_verb='" + perl_verb + "'" ! VMS specific
5620 $ WC "pgflquota='" + pgflquota + "'"
5621 $ WC "pidtype='" + pidtype + "'"
5622 $ WC "pm_apiversion='" + version + "'"
5623 $! WC "prefix='" + vms_prefix + "'"
5624 $ WC "prefix='" + prefix + "'"
5625 $ WC "privlib='" + privlib + "'"
5626 $ WC "privlibexp='" + privlibexp + "'"
5627 $ WC "procselfexe=' '"
5628 $ WC "prototype='define'"
5629 $ WC "ptrsize='" + ptrsize + "'"
5630 $ WC "quadkind='" + quadkind + "'"
5631 $ WC "quadtype='" + quadtype + "'"
5632 $ WC "randbits='31'"
5633 $ WC "randseedtype='" + randseedtype + "'"
5634 $ WC "ranlib='" + "'"
5635 $ WC "rd_nodata=' '"
5636 $ WC "revision='" + revision + "'"
5637 $ WC "sPRId64='" + sPRId64 + "'"
5638 $ WC "sPRIEldbl='" + sPRIEUldbl + "'"
5639 $ WC "sPRIFldbl='" + sPRIFUldbl + "'"
5640 $ WC "sPRIGldbl='" + sPRIGUldbl + "'"
5641 $ WC "sPRIX64='" + sPRIXU64 + "'"
5642 $ WC "sPRIeldbl='" + sPRIeldbl + "'"
5643 $ WC "sPRIfldbl='" + sPRIfldbl + "'"
5644 $ WC "sPRIgldbl='" + sPRIgldbl + "'"
5645 $! WC "sPRIi64='" + sPRIi64 + "'"
5646 $ WC "sPRIo64='" + sPRIo64 + "'"
5647 $ WC "sPRIu64='" + sPRIu64 + "'"
5648 $ WC "sPRIx64='" + sPRIx64 + "'"
5649 $ WC "sSCNfldbl='" + sSCNfldbl + "'"
5650 $ WC "sched_yield='" + sched_yield + "'"
5651 $ WC "scriptdir='" + scriptdir + "'"
5652 $ WC "seedfunc='" + seedfunc + "'"
5653 $ WC "selectminbits='32'"
5654 $ WC "selecttype='" + selecttype + "'"
5656 $ WC "shmattype='" + " '"
5657 $ WC "shortsize='" + shortsize + "'"
5658 $ WC "shrplib='define'"
5659 $ WC "sig_name='" + sig_name + "'"
5660 $ tmp = "sig_name_init='" + sig_name_init + "'"
5663 $ WC "sig_num='" + sig_num + "'"
5664 $ WC "sig_num_init='" + sig_num_init + "'"
5665 $ WC "sig_size='" + sig_size + "'"
5666 $ WC "signal_t='" + signal_t + "'"
5667 $ WC "sitearch='" + sitearch + "'"
5668 $ WC "sitearchexp='" + sitearchexp + "'"
5669 $ WC "sitelib='" + sitelib + "'"
5670 $ WC "sitelib_stem='" + sitelib_stem + "'"
5671 $ WC "sitelibexp='" + sitelibexp + "'"
5672 $ WC "sizesize='" + sizesize + "'"
5673 $ WC "sizetype='size_t'"
5674 $ WC "so='" + so + "'"
5675 $ WC "socksizetype='" + socksizetype + "'"
5676 $ WC "spitshell='write sys$output '"
5677 $ WC "src='" + src + "'"
5678 $ WC "ssizetype='int'"
5679 $ WC "startperl=" + startperl ! This one's special--no enclosing single quotes
5680 $ WC "static_ext='" + static_ext + "'"
5681 $ WC "stdchar='" + stdchar + "'"
5682 $ WC "stdio_base='((*fp)->_base)'"
5683 $ WC "stdio_bufsiz='((*fp)->_cnt + (*fp)->_ptr - (*fp)->_base)'"
5684 $ WC "stdio_cnt='((*fp)->_cnt)'"
5685 $ WC "stdio_ptr='((*fp)->_ptr)'"
5686 $ WC "stdio_stream_array=' " + "'"
5687 $ WC "subversion='" + subversion + "'"
5688 $ WC "timetype='" + timetype + "'"
5689 $ WC "u16size='" + u16size + "'"
5690 $ WC "u16type='" + u16type + "'"
5691 $ WC "u32size='" + u32size + "'"
5692 $ WC "u32type='" + u32type + "'"
5693 $ WC "u64size='" + u64size + "'"
5694 $ WC "u64type='" + u64type + "'"
5695 $ WC "u8size='" + u8size + "'"
5696 $ WC "u8type='" + u8type + "'"
5697 $ WC "uidformat='lu'"
5700 $ WC "uidtype='" + uidtype + "'"
5701 $ WC "uquadtype='" + uquadtype + "'"
5702 $ WC "use5005threads='" + use5005threads + "'"
5703 $ WC "use64bitall='" + use64bitall + "'"
5704 $ WC "use64bitint='" + use64bitint + "'"
5705 $ WC "usecasesensitive='" + be_case_sensitive + "'" ! VMS-specific
5706 $ WC "usedebugging_perl='"+use_debugging_perl+"'"
5707 $ WC "usedefaulttypes='" + usedefaulttypes + "'" ! VMS-specific
5708 $ WC "usecrosscompile='undef'"
5709 $ WC "usedl='" + usedl + "'"
5710 $ WC "useieee='" + useieee + "'" ! VMS-specific
5711 $ WC "useithreads='" + useithreads + "'"
5712 $ WC "uselargefiles='" + uselargefiles + "'"
5713 $ WC "uselongdouble='" + uselongdouble + "'"
5714 $ WC "usemorebits='" + usemorebits + "'"
5715 $ WC "usemultiplicity='" + usemultiplicity + "'"
5716 $ WC "usemymalloc='" + usemymalloc + "'"
5717 $ WC "useperlio='" + useperlio + "'"
5718 $ WC "useposix='false'"
5719 $ WC "usereentrant='undef'"
5720 $ WC "usesecurelog='" + usesecurelog + "'" ! VMS-specific
5721 $ WC "usesocks='undef'"
5722 $ WC "usethreads='" + usethreads + "'"
5723 $ WC "usevfork='true'"
5724 $ WC "usevmsdebug='" + usevmsdebug + "'" ! VMS-specific
5725 $ WC "uvoformat='" + uvoformat + "'"
5726 $ WC "uvsize='" + uvsize + "'"
5727 $ WC "uvtype='" + uvtype + "'"
5728 $ WC "uvuformat='" + uvuformat + "'"
5729 $ WC "uvxformat='" + uvxformat + "'"
5730 $ WC "uvXUformat='" + uvXUformat + "'"
5731 $ WC "vendorarchexp='" + "'"
5732 $ WC "vendorlib_stem='" + "'"
5733 $ WC "vendorlibexp='" + "'"
5734 $ WC "version='" + version + "'"
5735 $ WC "version_patchlevel_string='" + version_patchlevel_string + "'"
5736 $ WC "vms_cc_type='" + vms_cc_type + "'" ! VMS specific
5737 $ WC "vms_prefix='" + vms_prefix + "'" ! VMS specific
5738 $ WC "vms_ver='" + vms_ver + "'" ! VMS specific
5739 $ WC "voidflags='15'"
5740 $ WC "xs_apiversion='" + version + "'"
5741 $ WC "PERL_CONFIG_SH='true'"
5743 $! ##END WRITE NEW CONSTANTS HERE##
5747 $! Okay, we've gotten here. Build munchconfig.exe
5748 $ COPY/NOLOG [-.vms]munchconfig.c []
5749 $ COPY/NOLOG [-.vms]'Makefile_SH' []
5750 $ 'Perl_CC' munchconfig.c
5753 $ OPEN/WRITE CONFIG []munchconfig.opt
5754 $ IF ccname .EQS. "GCC"
5756 $ WRITE CONFIG "Gnu_CC:[000000]gcclib.olb/library"
5758 $ WRITE CONFIG "Sys$Share:VAXCRTL/Share"
5760 $ 'ld' munchconfig.obj,munchconfig.opt/opt
5761 $ DELETE/NOLOG/NOCONFIRM munchconfig.opt;
5763 $ 'ld' munchconfig.obj
5765 $ IF F$SEARCH("munchconfig.obj") .NES. "" THEN DELETE/NOLOG/NOCONFIRM munchconfig.obj;
5766 $ IF F$SEARCH("munchconfig.c") .NES. "" THEN DELETE/NOLOG/NOCONFIRM munchconfig.c;
5767 $ IF ccname .EQS. "CXX"
5769 $ CALL Cxx_demangler_cleanup
5772 $ IF alldone .EQS. ""
5777 If you'd like to make any changes to the config.sh file before I begin
5778 to configure things, answer yes to the following question.
5782 $ rp="Do you wish to edit ''basename_config_sh'? [''bool_dflt'] "
5787 $ echo4 "Be sure to type LOGOUT after you have edited the file,"
5788 $ echo4 "then this procedure will resume."
5790 $ default = F$ENVIRONMENT("DEFAULT")
5791 $ DIRECTORY 'config_sh'
5794 $ SET DEFAULT 'default'
5799 $ echo4 "Adding ''osname' specific preprocessor commands."
5801 $ ! we need an fdl file
5802 $ CREATE [-]CONFIG.FDL
5807 $ CREATE /FDL=[-]CONFIG.FDL [-]CONFIG.LOCAL
5808 $ ! First spit out the header info with the local defines (to get
5809 $ ! around the 255 character command line limit)
5810 $ OPEN/APPEND CONFIG [-]config.local
5811 $ IF use_debugging_perl THEN WC "#define DEBUGGING"
5812 $ IF use_two_pot_malloc THEN WC "#define TWO_POT_OPTIMIZE"
5813 $ IF mymalloc THEN WC "#define EMBEDMYMALLOC"
5814 $ IF use_pack_malloc THEN WC "#define PACK_MALLOC"
5815 $ IF use_debugmalloc THEN WC "#define DEBUGGING_MSTATS"
5816 $ IF ccname .EQS. "GCC" THEN WC "#define GNUC_ATTRIBUTE_CHECK"
5817 $ IF (Has_Dec_C_Sockets)
5819 $ WC "#define VMS_DO_SOCKETS"
5820 $ WC "#define DECCRTL_SOCKETS"
5822 $ IF Has_Socketshr THEN WC "#define VMS_DO_SOCKETS"
5824 $! This is VMS-specific for now
5825 $ WC "#''d_setenv' HAS_SETENV"
5826 $ IF d_secintgenv THEN WC "#define SECURE_INTERNAL_GETENV"
5827 $ IF d_alwdeftype THEN WC "#define ALWAYS_DEFTYPES"
5828 $ IF use64bitint .OR. use64bitint .EQS. "define"
5830 $ WC "#define USE_64_BIT_INT"
5831 $ WC "#define USE_LONG_DOUBLE"
5833 $ IF use64bitall .OR. use64bitall .EQS. "define" THEN -
5834 WC "#define USE_64_BIT_ALL"
5835 $ IF be_case_sensitive THEN WC "#define VMS_WE_ARE_CASE_SENSITIVE"
5836 $ IF d_herrno .EQS. "undef" THEN WC "#define NEED_AN_H_ERRNO"
5837 $ WC "#define HAS_ENVGETENV"
5838 $ WC "#define PERL_EXTERNAL_GLOB"
5839 $ IF archname .EQS. "VMS_VAX" .AND. -
5840 ccname .EQS. "DEC" .AND. -
5841 ccversion .LE. 50390006
5843 $! Alas this does not help to build Fcntl
5844 $! WC "#define PERL_IGNORE_FPUSIG SIGFPE"
5846 $ IF kill_by_sigprc .EQS. "define" then WC "#define KILL_BY_SIGPRC"
5849 $ echo4 "Doing variable substitutions on .SH files..."
5850 $ echo4 "Extracting config.h (with variable substitutions)"
5852 $! Now build the normal config.h
5853 $ DEFINE/USER_MODE sys$output [-]config.main
5854 $ mcr []munchconfig 'config_sh' [-]config_h.sh
5855 $ ! Concatenate them together
5856 $ copy [-]config.local,[-]config.main [-]config.h
5858 $ DELETE/NOLOG [-]CONFIG.MAIN;*
5859 $ DELETE/NOLOG [-]CONFIG.LOCAL;*
5860 $ DELETE/NOLOG [-]CONFIG.FDL;*
5862 $ IF ccname .EQS. "DEC"
5864 $ DECC_REPLACE = "DECC=decc=1"
5866 $ DECC_REPLACE = "DECC="
5868 $ IF ccname .EQS. "CXX"
5870 $ DECCXX_REPLACE = "DECCXX=DECCXX=1"
5872 $ DECCXX_REPLACE = "DECCXX="
5874 $ IF ccname .EQS. "GCC"
5876 $ GNUC_REPLACE = "GNUC=gnuc=1"
5878 $ GNUC_REPLACE = "GNUC="
5880 $ IF Has_Dec_C_Sockets
5882 $ SOCKET_REPLACE = "SOCKET=DECC_SOCKETS=1"
5886 $ SOCKET_REPLACE = "SOCKET=SOCKETSHR_SOCKETS=1"
5888 $ SOCKET_REPLACE = "SOCKET="
5893 $ IF (vms_ver .LES. "6.2")
5895 $ THREAD_REPLACE = "THREAD=OLDTHREADED=1"
5897 $ THREAD_REPLACE = "THREAD=THREADED=1"
5900 $ THREAD_REPLACE = "THREAD="
5904 $ MALLOC_REPLACE = "MALLOC=MALLOC=1"
5906 $ MALLOC_REPLACE = "MALLOC="
5908 $ echo4 "Extracting ''defmakefile' (with variable substitutions)"
5909 $ DEFINE/USER_MODE sys$output 'UUmakefile'
5910 $ mcr []munchconfig 'config_sh' 'Makefile_SH' "''DECC_REPLACE'" -
5911 "''DECCXX_REPLACE'" "''ARCH_TYPE'" "''GNUC_REPLACE'" "''SOCKET_REPLACE'" -
5912 "''THREAD_REPLACE'" "''C_Compiler_Replace'" "''MALLOC_REPLACE'" -
5913 "''Thread_Live_Dangerously'" "PV=''version'" "FLAGS=FLAGS=''extra_flags'"
5914 $! Clean up after ourselves
5915 $ DELETE/NOLOG/NOCONFIRM []munchconfig.exe;
5917 $ echo4 "Extracting make_ext.com (without variable substitutions)"
5918 $ Create Sys$Disk:[-]make_ext.com
5919 $ Deck/Dollar="$EndOfTpl$"
5921 $! NOTE: This file is extracted as part of the VMS configuration process.
5922 $! Any changes made to it directly will be lost. If you need to make any
5923 $! changes, please edit the template in Configure.Com instead.
5924 $ def = F$Environment("Default")
5925 $! p1 - how to invoke miniperl (passed in from descrip.mms)
5926 $ p1 = F$Edit(p1,"Upcase,Compress,Trim")
5927 $ If F$Locate("MCR ",p1).eq.0 Then p1 = F$Extract(3,255,p1)
5928 $ miniperl = "$" + F$Search(F$Parse(p1,".Exe"))
5929 $! p2 - how to invoke local make utility (passed in from descrip.mms)
5931 $ if f$type('p2') .nes. "" then makeutil = 'p2'
5932 $! p3 - make target (passed in from descrip.mms)
5933 $ targ = F$Edit(p3,"Lowercase")
5936 $ open/read CONFIG config.sh
5938 $ read/end=end_ext_loop CONFIG line
5939 $ if (f$extract(0,12,line) .NES. "extensions='")
5940 $ then goto find_ext_loop
5941 $ else extensions = f$extract(12,f$length(line),line) - "'"
5945 $ extensions = f$edit(extensions,"TRIM,COMPRESS")
5948 $ ext = f$element(i," ",extensions)
5949 $ If ext .eqs. " " .or. ext .eqs. "" Then Goto done
5950 $ Define/User_mode Perl_Env_Tables CLISYM_LOCAL
5953 ($extdir = $ENV{'ext'}) =~ s/::/./g;
5955 if ($extdir =~ /^vms/i) { $extdir =~ s/vms/.vms.ext/i; }
5956 else { $extdir = ".ext.$extdir"; }
5957 ($ENV{'extdir'} = "[$extdir]");
5958 ($ENV{'up'} = ('-') x ($extdir =~ tr/././));
5960 $ Set Default &extdir
5962 $ If F$Locate("clean",targ) .eqs. F$Length(targ)
5964 $ Write Sys$Output ""
5965 $ Write Sys$Output " Making ''ext' (dynamic)"
5966 $ On Error Then Goto done
5967 $ If F$Search("Descrip.MMS") .eqs. ""
5971 $ If F$CvTime(F$File("Descrip.MMS","rdt")) .lts. -
5972 F$CvTime(F$File("Makefile.PL","rdt")) Then redesc = 1
5975 $ Write Sys$Output "''targ'ing ''ext' . . ."
5976 $ On Error Then Continue
5979 miniperl "-I[''up'.lib]" Makefile.PL "INST_LIB=[''up'.lib]" "INST_ARCHLIB=[''up'.lib]"
5991 $! Note that the /key qualifier to search, as in:
5992 $! search README.* "=head"/key=(position=1)/window=0/output=extra.pods
5993 $! is not supported on VMS V5.5-2, hence not used in extra_pods.com.
5995 $ echo4 "Extracting extra_pods.com (without variable substitutions)"
5996 $ Create Sys$Disk:[-]extra_pods.com
5997 $ Deck/Dollar="$EOExtra_Pods$"
5999 $! NOTE: This file is extracted as part of the VMS configuration process.
6000 $! Any changes made to it directly will be lost. If you need to make any
6001 $! changes, please edit the template in Configure.Com instead.
6002 $! Use FORCE if you've just podified a README.* file on VMS.
6003 $ if f$search("extra.pods") .eqs. "" .or. P1 .eqs. "FORCE" then -
6004 search README.* "=head"/window=0/output=extra.pods
6005 $ open/read/error=extra_close EXTRA extra.pods
6007 $ read/error=extra_close/END_OF_FILE=extra_close EXTRA file
6008 $ file_type = f$parse(file,,,"TYPE",) - "."
6009 $ if file_type .nes. "VMS" .and. file_type .nes. "vms"
6011 $ pod_file = "[.pod]perl''file_type'.pod"
6012 $ file = file - "''f$parse(file,,,"VERSION",)'"
6013 $ if p1 .eqs. "CLEAN"
6014 $ then if f$search(pod_file) .nes. "" then delete/log 'pod_file';*
6017 $ if f$search(pod_file) .eqs. ""
6018 $ then do_copy := true
6020 $ file_rdt = f$cvtime(f$file_attributes(file,"RDT"))
6021 $ pod_file_rdt = f$cvtime(f$file_attributes(pod_file,"RDT"))
6022 $ if file_rdt .GTS. pod_file_rdt then do_copy := true
6024 $ if do_copy then copy/log/noconfirm 'file' 'pod_file'
6030 $ if p1 .eqs. "CLEAN" .and. f$search("extra.pods;-1") .nes. "" then -
6031 purge/nolog extra.pods
6035 $! Warn of dangerous symbols or logical names
6037 $Bad_environment: SUBROUTINE
6039 $ IF p2 .eqs. "SYMBOL"
6041 $ IF f$type('p1') .nes. "" THEN Bad_env := SYMBOL
6043 $ IF f$trnlnm(p1) .nes. "" THEN Bad_env := LOGICAL
6045 $ IF Bad_env .eqs. "SYMBOL" .or. Bad_env .eqs. "LOGICAL"
6047 $ IF f$search("config.msg") .nes. ""
6049 $ OPEN/APPEND CONFIG config.msg
6051 $ OPEN/WRITE CONFIG config.msg
6053 $ IF Bad_env .eqs. "SYMBOL"
6056 $ WRITE CONFIG "Symbol name ''p1' found in environment as " + &p1
6057 $ WRITE CONFIG " delete before building ''package' via:"
6058 $ WRITE CONFIG " $ DELETE/SYMBOL/GLOBAL ''p1'"
6059 $ IF f$locate("""",&p1) .ge. f$length(&p1)
6061 $ WRITE CONFIG " after building, testing, and installing ''package'"
6062 $ WRITE CONFIG " restore the symbol with:"
6063 $ WRITE CONFIG " $ ''p1' == """ + &p1 + """"
6066 $ IF Bad_env .eqs. "LOGICAL"
6069 $ WRITE CONFIG "Logical name ''p1' found in environment as " + f$trnlnm(p1)
6070 $ WRITE CONFIG " deassign before building ''package'"
6076 $ ENDSUBROUTINE ! Bad_environment
6078 $ echo4 "Checking for dangerous pre-existing global symbols and logical names."
6079 $ CALL Bad_environment "TMP"
6080 $ CALL Bad_environment "LIB"
6081 $ CALL Bad_environment "T"
6082 $ CALL Bad_environment "FOO"
6083 $ CALL Bad_environment "EXT"
6084 $ CALL Bad_environment "TEST" "SYMBOL"
6085 $ IF f$search("config.msg") .eqs. "" THEN echo "OK."
6087 $! %Config-I-VMS, write perl_setup.com here
6089 $ IF (.NOT.perl_symbol)
6091 $ file_2_find = "[-]''packageup'.cld"
6093 $ echo4 "The perl.cld file is now being written..."
6094 $ OPEN/WRITE CONFIG 'file_2_find'
6096 $ IF (sharedperl .AND. archname .EQS. "VMS_AXP") THEN ext := .AXE
6097 $ IF (use_vmsdebug_perl)
6099 $ WRITE CONFIG "define verb dbgperl"
6100 $ WRITE CONFIG F$FAO("!_!AS","image ''vms_prefix':[000000]dbgperl''ext'")
6101 $ WRITE CONFIG F$FAO("!_!AS","cliflags (foreign)")
6103 $ WRITE CONFIG "define verb perl"
6104 $ WRITE CONFIG F$FAO("!_!AS","image ''vms_prefix':[000000]ndbgPerl''ext'")
6105 $ WRITE CONFIG F$FAO("!_!AS","cliflags (foreign)")
6107 $ WRITE CONFIG "define verb perl"
6108 $ WRITE CONFIG F$FAO("!_!AS","image ''vms_prefix':[000000]perl''ext'")
6109 $ WRITE CONFIG F$FAO("!_!AS","cliflags (foreign)")
6112 $ ENDIF ! (.NOT.perl_symbol)
6114 $ echo4 "The perl_setup.com file is now being written..."
6115 $ file_2_find = "[-]perl_setup.com"
6116 $ OPEN/WRITE CONFIG 'file_2_find'
6118 $ WRITE CONFIG "$! Perl_Setup.com ''cf_time'"
6119 $ IF cf_email.NES.perladmin
6121 $ WRITE CONFIG "$! perl configured by ''cf_email'"
6123 $ WRITE CONFIG "$! This perl configured & administered by ''perladmin'"
6126 $ prefix = prefix - "000000."
6127 $ IF F$LOCATE(".]",prefix) .EQ. F$LENGTH(prefix) THEN -
6128 prefix = prefix - "]" + ".]"
6129 $ WRITE CONFIG "$ define/translation=concealed ''vms_prefix' ''prefix'"
6130 $ WRITE CONFIG "$ ext = "".exe"""
6133 $ write config "$ if f$getsyi(""HW_MODEL"") .ge. 1024 then ext = "".AXE"""
6137 $ IF (use_vmsdebug_perl)
6139 $ WRITE CONFIG "$ dbgperl :== $''vms_prefix':[000000]dbgPerl'ext'"
6140 $ WRITE CONFIG "$ perl :== $''vms_prefix':[000000]ndbgPerl'ext'"
6141 $ WRITE CONFIG "$ define dbgPerlShr ''vms_prefix':[000000]dbgPerlShr'ext'"
6143 $ WRITE CONFIG "$ perl :== $''vms_prefix':[000000]Perl'ext'"
6144 $ WRITE CONFIG "$ define PerlShr ''vms_prefix':[000000]PerlShr'ext'"
6146 $ ELSE ! .NOT.perl_symbol
6147 $ IF (use_vmsdebug_perl)
6149 $ WRITE CONFIG "$ define dbgPerlShr ''vms_prefix':[000000]dbgPerlShr'ext'"
6151 $ WRITE CONFIG "$ define PerlShr ''vms_prefix':[000000]PerlShr'ext'"
6153 $ IF perl_verb .EQS. "PROCESS"
6155 $ WRITE CONFIG "$ set command ''vms_prefix':[000000]''packageup'.CLD"
6157 $ ENDIF ! perl_symbol
6158 $ WRITE CONFIG "$ define/nolog pod2text ''vms_prefix':[lib.pod]pod2text.com"
6159 $ WRITE CONFIG "$ define/nolog pod2html ''vms_prefix':[lib.pod]pod2html.com"
6160 $ WRITE CONFIG "$ define/nolog pod2man ''vms_prefix':[lib.pod]pod2man.com"
6164 $ WRITE CONFIG "$ define SYS$TIMEZONE_DIFFERENTIAL ''tzd'"
6165 $ ELSE !leave in but commented out (in case setting was from perl :-)
6166 $ WRITE CONFIG "$! define SYS$TIMEZONE_DIFFERENTIAL ''tzd'"
6169 $ WRITE CONFIG "$! Symbols for commonly used programs:"
6173 $ WRITE CONFIG "$ Perldoc == ""'"+"'Perl' ''vms_prefix':[lib.pod]Perldoc.com -t"""
6174 $ WRITE CONFIG "$ pod2text == ""'"+"'Perl' pod2text"""
6175 $ WRITE CONFIG "$ pod2html == ""'"+"'Perl' pod2html"""
6176 $ WRITE CONFIG "$ pod2latex == ""'"+"'Perl' ''vms_prefix':[lib.pod]pod2latex.com"""
6177 $ WRITE CONFIG "$!pod2man == ""'"+"'Perl' pod2man"""
6178 $ WRITE CONFIG "$!Perlbug == ""'"+"'Perl' ''vms_prefix':[lib]Perlbug.com"""
6179 $ WRITE CONFIG "$ c2ph == ""'"+"'Perl' ''vms_prefix':[utils]c2ph.com"""
6180 $ IF F$LOCATE("Devel::DProf",extensions) .LT. F$LENGTH(extensions)
6182 $ WRITE CONFIG "$ dprofpp == ""'"+"'Perl' ''vms_prefix':[utils]dprofpp.com"""
6184 $ WRITE CONFIG "$ h2ph == ""'"+"'Perl' ''vms_prefix':[utils]h2ph.com"""
6185 $ WRITE CONFIG "$ h2xs == ""'"+"'Perl' ''vms_prefix':[utils]h2xs.com"""
6186 $ WRITE CONFIG "$ libnetcfg == ""'"+"'Perl' ''vms_prefix':[utils]libnetcfg.com"""
6187 $ WRITE CONFIG "$!perlcc == ""'"+"'Perl' ''vms_prefix':[utils]perlcc.com"""
6188 $ WRITE CONFIG "$ perlivp == ""'"+"'Perl' ''vms_prefix':[utils]perlivp.com"""
6189 $ WRITE CONFIG "$ splain == ""'"+"'Perl' ''vms_prefix':[utils]splain.com"""
6190 $ WRITE CONFIG "$ xsubpp == ""'"+"'Perl' ''vms_prefix':[utils]xsubpp.com"""
6192 $ WRITE CONFIG "$ Perldoc == ""Perl ''vms_prefix':[lib.pod]Perldoc.com -t"""
6193 $ WRITE CONFIG "$ pod2text == ""Perl pod2text"""
6194 $ WRITE CONFIG "$ pod2html == ""Perl pod2html"""
6195 $ WRITE CONFIG "$ pod2latex == ""Perl ''vms_prefix':[lib.pod]pod2latex.com"""
6196 $ WRITE CONFIG "$!pod2man == ""Perl pod2man"""
6197 $ WRITE CONFIG "$!Perlbug == ""Perl ''vms_prefix':[lib]Perlbug.com"""
6198 $ WRITE CONFIG "$ c2ph == ""Perl ''vms_prefix':[utils]c2ph.com"""
6199 $ IF F$LOCATE("Devel::DProf",extensions) .LT. F$LENGTH(extensions)
6201 $ WRITE CONFIG "$ dprofpp == ""Perl ''vms_prefix':[utils]dprofpp.com"""
6203 $ WRITE CONFIG "$ h2ph == ""Perl ''vms_prefix':[utils]h2ph.com"""
6204 $ WRITE CONFIG "$ h2xs == ""Perl ''vms_prefix':[utils]h2xs.com"""
6205 $ WRITE CONFIG "$ libnetcfg == ""Perl ''vms_prefix':[utils]libnetcfg.com"""
6206 $ WRITE CONFIG "$!perlcc == ""Perl ''vms_prefix':[utils]perlcc.com"""
6207 $ WRITE CONFIG "$ perlivp == ""Perl ''vms_prefix':[utils]perlivp.com"""
6208 $ WRITE CONFIG "$ splain == ""Perl ''vms_prefix':[utils]splain.com"""
6209 $ WRITE CONFIG "$ xsubpp == ""Perl ''vms_prefix':[utils]xsubpp.com"""
6214 $ echo "The file can be found at:"
6215 $ echo4 " ''F$SEARCH(file_2_find)'"
6216 $ echo "Add that file (or an @ call to it) to your [SY]LOGIN.COM"
6217 $ echo "when you are satisfied with a successful compilation,"
6218 $ echo "testing, and installation of your perl."
6220 $ IF ((.NOT.perl_symbol) .AND. (perl_verb .EQS. "DCLTABLES"))
6222 $ file_2_find = "[-]''packageup'_install.com"
6223 $ OPEN/WRITE CONFIG 'file_2_find'
6224 $ WRITE CONFIG "$ set command perl /table=sys$common:[syslib]dcltables.exe -"
6225 $ WRITE CONFIG " /output=sys$common:[syslib]dcltables.exe"
6226 $ WRITE CONFIG "$ install replace sys$common:[syslib]dcltables.exe"
6229 $ echo4 "In order to install the ''packageup' verb into DCLTABLES run:"
6230 $ echo4 " @ ''F$SEARCH(file_2_find)'"
6231 $ echo4 "after a successful build, test, and install. Do so with CMKRNL privilege."
6235 $!figure out where we "are" by parsing 'vms_default_directory_name'
6237 $ set_def_command = ""
6238 $ dflt = F$ENVIRONMENT("DEFAULT") - ".UU]"
6239 $ tmp = vms_default_directory_name - dflt - "]"
6241 $ IF tmp .EQS. "" THEN GOTO Beyond_set_def_loop
6243 $ tmp1 = F$ELEMENT(i,".",tmp)
6244 $ IF tmp1 .EQS. "." THEN GOTO Beyond_set_def_loop
6246 $ THEN set_def_command = "set default [-"
6247 $ ELSE set_def_command = set_def_command + "-"
6251 $Beyond_set_def_loop:
6252 $ IF set_def_command.NES.""
6254 $ set_def_command = set_def_command - "-" + "]"
6256 $ echo4 "In order to build ''package' you must now issue the commands:"
6258 $ echo4 " ''set_def_command'"
6261 $ echo4 "In order to build ''package' you must now issue the command:"
6264 $ echo4 " ''make'''makefile'", macros
6267 $ IF ( F$SEARCH("config.msg").NES."" )
6269 $ echo "Hmm. I also noted the following information while running:"
6272 $ SET PROTECTION=(SYSTEM:RWED,OWNER:RWED) config.msg
6273 $ DELETE/NOLOG/NOCONFIRM config.msg;
6280 $ CLOSE/NOLOG STDOUT
6281 $ DEASSIGN SYS$OUTPUT
6283 $ CLOSE/NOLOG CONFIG
6284 $ IF F$GETJPI("","FILCNT").GT.vms_filcnt
6285 $ THEN WRITE SYS$ERROR "%Config-W-VMS, WARNING: There is a file still open"
6287 $ dflt = F$ENVIRONMENT("DEFAULT")
6288 $ IF F$LOCATE("UU]",dflt).EQS.(F$LENGTH(dflt)-3)
6290 $ IF ( F$SEARCH("[]*.*").NES."" ) THEN DELETE/NOLOG/NOCONFIRM []*.*;*
6292 $ SET PROTECTION=(SYSTEM:RWED,OWNER:RWED) UU.DIR
6293 $ DELETE/NOLOG/NOCONFIRM UU.DIR;
6295 $ SET DEFAULT 'vms_default_directory_name' !be kind rewind
6297 $!: End of Configure