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/NOCONFIRM [.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/NOCONFIRM 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|sitebin|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..."
1282 $ api_subversion="0"
1283 $ perl_patchlevel="0"
1284 $ patchlevel_h = F$SEARCH("[-]patchlevel.h")
1285 $ IF (patchlevel_h.NES."")
1287 $ got_patch = "false"
1289 $ got_api_revision = "false"
1290 $ got_api_version = "false"
1291 $ got_api_subversion = "false"
1292 $ got_perl_patchlevel= "false"
1293 $ OPEN/READONLY CONFIG 'patchlevel_h'
1295 $ READ/END_Of_File=Close_patch/ERROR=Close_patch CONFIG line
1296 $ IF ((F$LOCATE("#define PERL_VERSION",line).NE.F$LENGTH(line)).AND.(.NOT.got_patch))
1298 $ line = F$EDIT(line,"COMPRESS, TRIM")
1299 $ patchlevel = F$ELEMENT(2," ",line)
1300 $ got_patch = "true"
1302 $ IF ((F$LOCATE("#define PERL_SUBVERSION",line).NE.F$LENGTH(line)).AND.(.NOT.got_sub))
1304 $ line = F$EDIT(line,"COMPRESS, TRIM")
1305 $ subversion = F$ELEMENT(2," ",line)
1308 $ IF ((F$LOCATE("#define PERL_API_REVISION",line).NE.F$LENGTH(line)).AND.(.NOT.got_api_revision))
1310 $ line = F$EDIT(line,"COMPRESS, TRIM")
1311 $ api_revision = F$ELEMENT(2," ",line)
1312 $ got_api_revision = "true"
1314 $ IF ((F$LOCATE("#define PERL_API_VERSION",line).NE.F$LENGTH(line)).AND.(.NOT.got_api_version))
1316 $ line = F$EDIT(line,"COMPRESS, TRIM")
1317 $ api_version = F$ELEMENT(2," ",line)
1318 $ got_api_version = "true"
1320 $ IF ((F$LOCATE("#define PERL_API_SUBVERSION",line).NE.F$LENGTH(line)).AND.(.NOT.got_api_subversion))
1322 $ line = F$EDIT(line,"COMPRESS, TRIM")
1323 $ api_subversion = F$ELEMENT(2," ",line)
1324 $ got_api_subversion = "true"
1326 $ IF ((F$LOCATE("""DEVEL",line).NE.F$LENGTH(line)).AND.(.NOT.got_perl_patchlevel))
1328 $ line = F$EDIT(line,"COMPRESS, TRIM")
1329 $ perl_patchlevel = F$ELEMENT(1,"""",line)
1330 $ perl_patchlevel = perl_patchlevel - "DEVEL"
1331 $ got_perl_patchlevel = "true"
1333 $ IF (.NOT. got_patch) .OR. -
1334 (.NOT. got_sub) .OR. -
1335 (.NOT. got_api_revision) .OR. -
1336 (.NOT. got_api_version) .OR. -
1337 (.NOT. got_api_subversion) .OR. -
1338 (.NOT. got_perl_patchlevel) -
1339 THEN GOTO Patchlevel_h_loop
1343 $ version_patchlevel_string = "version ''patchlevel' subversion ''subversion'"
1344 $ IF got_perl_patchlevel .AND. perl_patchlevel .NES. "0"
1346 $ version_patchlevel_string = "''version_patchlevel_string' patch ''perl_patchlevel'"
1348 $ echo "(You have ''package' ''version_patchlevel_string'.)"
1350 $ version = revision + "_" + patchlevel + "_" + subversion
1352 $ IF (.NOT.vms_skip_install)
1354 $!: set the prefixup variable, to restore leading tilde escape !sfn
1356 $!: determine where public architecture dependent libraries go
1360 $ echo "''package' contains architecture-dependent library files. If you are"
1366 sharing libraries in a heterogeneous environment, you might store
1367 these files in a separate location. Otherwise, you can just include
1368 them with the rest of the public library files.
1371 $ IF F$TYPE(archlib) .NES. ""
1372 $ THEN dflt = archlib
1373 $ ELSE dflt = privlib - "]" + "." + archname + "." + version + "]"
1375 $ rp = "Where do you want to put the public architecture-dependent libraries? "
1376 $ rp = F$FAO("!AS!/!AS",rp,"[ ''dflt' ] ")
1380 $ ENDIF !%Config-I-VMS, skip "where install" questions
1382 $! This quotation from Configure has to be included on VMS:
1387 There is, however, a strange, musty smell in the air that reminds me of
1388 something...hmm...yes...I've got it...there's a VMS nearby, or I'm a Blit.
1390 $ IF (.NOT.vms_skip_install)
1392 $!: it so happens the Eunice I know will not run shell scripts in Unix format
1394 $!: see if setuid scripts can be secure !sfn
1395 $!: now see if they want to do setuid emulation !sfn
1397 $!: determine where site specific libraries go.
1403 The installation process will also create a directory for
1404 site-specific extensions and modules. Some users find it convenient
1405 to place all local files in this directory rather than in the main
1406 distribution directory.
1409 $ IF F$TYPE(sitelib) .NES. ""
1410 $ THEN dflt = sitelib
1411 $ ELSE dflt = privlib - "]" + ".SITE_PERL]"
1413 $ rp = "Pathname for the site-specific library files? "
1414 $ rp = F$FAO("!AS!/!AS",rp,"[ ''dflt' ] ")
1418 $!: determine where site specific architecture-dependent libraries go.
1420 $ THEN TYPE SYS$INPUT:
1423 The installation process will also create a directory for
1424 architecture-dependent site-specific extensions and modules.
1427 $ IF F$TYPE(sitearch) .NES. ""
1428 $ THEN dflt = sitearch
1429 $ ELSE dflt = sitelib - "]" + "." + archname + "]"
1431 $ rp = "Pathname for the site-specific architecture-dependent library files? "
1432 $ rp = F$FAO("!AS!/!AS",rp,"[ ''dflt' ] ")
1436 $!: determine where old public architecture dependent libraries might be
1438 $!: determine where public executables go
1439 $ IF F$TYPE(bin) .NES. ""
1441 $! ELSE dflt = prefix - ".]" + ".BIN]"
1442 $ ELSE dflt = "/''vms_prefix'/000000"
1444 $ rp = "Pathname where the public executables will reside? "
1445 $ rp = F$FAO("!AS!/!AS",rp,"[ ''dflt' ] ")
1449 $!: determine where add-on public executables go
1450 $ IF F$TYPE(sitebin) .NES. ""
1451 $ THEN dflt = sitebin
1452 $ ELSE dflt = "''vms_prefix':[bin.''archname']"
1454 $ rp = "Pathname where the add-on public executables should be installed? "
1455 $ rp = F$FAO("!AS!/!AS",rp,"[ ''dflt' ] ")
1459 $!: determine where manual pages are on this system
1460 $!: What suffix to use on installed man pages
1461 $!: see if we can have long filenames
1462 $!: determine where library module manual pages go
1463 $!: What suffix to use on installed man pages
1464 $!: see what memory models we can support
1466 $ ELSE ! skipping "where install" questions, we must set some symbols
1467 $ IF F$TYPE(archlib).EQS."" THEN -
1468 archlib="''vms_prefix':[lib.''archname'.''version']"
1469 $ IF F$TYPE(bin) .EQS. "" THEN -
1470 bin="/''vms_prefix'/000000"
1471 $ IF F$TYPE(privlib) .EQS. "" THEN -
1472 privlib ="''vms_prefix':[lib]"
1473 $ IF F$TYPE(sitearch) .EQS. "" THEN -
1474 sitearch="''vms_prefix':[lib.site_perl.''archname']"
1475 $ IF F$TYPE(sitelib) .EQS. "" THEN -
1476 sitelib ="''vms_prefix':[lib.site_perl]"
1477 $ IF F$TYPE(sitebin) .EQS. "" THEN -
1478 sitebin="''vms_prefix':[bin.''archname']"
1479 $ ENDIF !%Config-I-VMS, skip "where install" questions
1481 $! These derived locations can be set whether we've opted to
1482 $! skip the where install questions or not.
1484 $ IF F$TYPE(archlibexp) .EQS. "" THEN -
1485 archlibexp="''vms_prefix':[lib.''archname'.''version']"
1486 $ IF F$TYPE(binexp) .EQS. "" THEN -
1487 binexp ="''vms_prefix':[000000]"
1488 $ IF F$TYPE(builddir) .EQS. "" THEN -
1489 builddir ="''vms_prefix':[000000]"
1490 $ IF F$TYPE(installarchlib) .EQS. "" THEN -
1491 installarchlib="''vms_prefix':[lib.''archname'.''version']"
1492 $ IF F$TYPE(installbin) .EQS. "" THEN -
1493 installbin ="''vms_prefix':[000000]"
1494 $ IF F$TYPE(installscript) .EQS. "" THEN -
1495 installscript ="''vms_prefix':[utils]"
1496 $ IF F$TYPE(installman1dir) .EQS. "" THEN -
1497 installman1dir ="''vms_prefix':[man.man1]"
1498 $ IF F$TYPE(installman3dir) .EQS. "" THEN -
1499 installman3dir ="''vms_prefix':[man.man3]"
1500 $ IF F$TYPE(installprivlib) .EQS. "" THEN -
1501 installprivlib ="''vms_prefix':[lib]"
1502 $ IF F$TYPE(installsitearch) .EQS. "" THEN -
1503 installsitearch="''vms_prefix':[lib.site_perl.''archname']"
1504 $ IF F$TYPE(installsitelib) .EQS. "" THEN -
1505 installsitelib ="''vms_prefix':[lib.site_perl]"
1506 $ IF F$TYPE(oldarchlib) .EQS. "" THEN -
1507 oldarchlib="''vms_prefix':[lib.''archname']"
1508 $ IF F$TYPE(oldarchlibexp) .EQS. "" THEN -
1509 oldarchlibexp="''vms_prefix':[lib.''archname']"
1510 $ IF F$TYPE(privlibexp) .EQS. "" THEN -
1511 privlibexp ="''vms_prefix':[lib]"
1512 $ IF F$TYPE(scriptdir) .EQS. "" THEN -
1513 scriptdir ="''vms_prefix':[utils]"
1514 $ IF F$TYPE(sitearchexp) .EQS. "" THEN -
1515 sitearchexp ="''vms_prefix':[lib.site_perl.''archname']"
1516 $ IF F$TYPE(sitelib_stem) .EQS. "" THEN -
1517 sitelib_stem ="''vms_prefix':[lib.site_perl]"
1518 $ IF F$TYPE(sitelibexp) .EQS. "" THEN -
1519 sitelibexp ="''vms_prefix':[lib.site_perl]"
1521 $!: see if we need a special compiler
1522 $! cc_list = "cc/decc|gcc" !%Config-I-VMS, compiler symbols/commands
1526 $ vms_cc_available = ""
1528 $ OPEN/WRITE CONFIG ccvms.c
1529 $ WRITE CONFIG "#ifdef __DECC"
1530 $ WRITE CONFIG "#include <stdlib.h>" !DECC is sooo picky
1531 $ WRITE CONFIG "#endif"
1532 $ WRITE CONFIG "#include <stdio.h>"
1533 $ WRITE CONFIG "int main() {"
1534 $ WRITE CONFIG "#ifdef __DECC"
1535 $ WRITE CONFIG " printf(""/DECC\n"");"
1536 $ WRITE CONFIG "#else"
1537 $ WRITE CONFIG " printf(""/VAXC\n"");"
1538 $ WRITE CONFIG "#endif"
1539 $ WRITE CONFIG " exit(0);"
1544 $ DEFINE/USER_MODE SYS$ERROR _NLA0:
1545 $ DEFINE/USER_MODE SYS$OUTPUT _NLA0:
1546 $ cc/NoObj/list=ccvms.lis ccvms.c
1549 $ IF (silent) THEN GOSUB Shut_up
1550 $ IF tmp.NE.%X10B90001
1552 $ IF tmp.NE.%X10000001
1554 $ nocc = "t" !%X10000001 is return from gcc
1555 $ GOTO Gcc_initial_check
1560 $ IF .NOT.silent THEN echo ""
1561 $ echo "Default ""cc"" is ''line' ''archsufx' ''F$GETSYI("VERSION")'"
1562 $ IF F$LOCATE("VAX",line).NE.F$LENGTH(line)
1566 $ echo "Will try cc/decc..."
1569 $ DEFINE/USER_MODE SYS$ERROR NL:
1570 $ DEFINE/USER_MODE SYS$OUTPUT NL:
1571 $ cc/decc/NoObj/list=ccvms.lis ccvms.c
1574 $ IF (silent) THEN GOSUB Shut_up
1575 $ IF tmp.NE.%X10B90001
1577 $ echo "Apparently you don't have that one."
1580 $ echo "You also have: ''line' ''archsufx' ''F$GETSYI("VERSION")'"
1581 $ vms_cc_available = vms_cc_available + "cc/decc "
1584 $ IF (F$LOCATE("DEC",line).NE.F$LENGTH(line)).or.(F$LOCATE("Compaq",line).NE.F$LENGTH(line))
1586 $ vms_cc_dflt = "/decc"
1587 $ vms_cc_available = vms_cc_available + "cc/decc "
1592 $ echo "Checking for gcc"
1593 $ OPEN/WRITE CONFIG gccvers.lis
1595 $ DEFINE/USER_MODE SYS$ERROR CONFIG
1596 $ DEFINE/USER_MODE SYS$OUTPUT CONFIG
1597 $ 'gcc_symbol'/noobj/version _nla0:
1600 $ IF (silent) THEN GOSUB Shut_up
1602 $ IF (tmp.NE.%X10000001).and.(tmp.ne.%X00030001)
1604 $ echo "Symbol ""''gcc_symbol'"" is not defined. I guess you do not have it."
1605 $ DELETE/NOLOG/NOCONFIRM gccvers.lis;
1606 $ GOTO Cxx_initial_check
1608 $ OPEN/READ CONFIG gccvers.lis
1610 $ READ/END_OF_FILE=GCC_List_End CONFIG line
1611 $ GOTO GCC_List_Read
1615 $ vms_cc_available = vms_cc_available + "''gcc_symbol' "
1616 $ DELETE/NOLOG/NOCONFIRM gccvers.lis;
1620 $! Do note that [vms]perl source files have a ways to go before they will
1621 $! compile under CXX.
1622 $! In order to test Configure.com with CXX invoke it with "-Dtry_cxx" on
1623 $! the command line.
1625 $ IF F$TYPE(try_cxx) .EQS. "" THEN try_cxx := n
1626 $ IF try_cxx .OR. try_cxx .EQS. "define"
1630 $ echo "Checking for CXX..."
1631 $ OPEN/WRITE CONFIG ccvms.c
1632 $ WRITE CONFIG "#include <iostream>"
1633 $ WRITE CONFIG "int main() {"
1634 $ WRITE CONFIG "#ifdef __DECCXX"
1635 $ WRITE CONFIG " cout << __DECCXX, endl;"
1636 $ WRITE CONFIG "#else"
1637 $ WRITE CONFIG " cout << 0,endl;"
1638 $ WRITE CONFIG "#endif"
1639 $! Todo: add G++ identifier check ??
1640 $ WRITE CONFIG " return(0);"
1644 $ DEFINE/USER_MODE SYS$OUTPUT NL:
1645 $ DEFINE/USER_MODE SYS$ERROR NL:
1649 $! success $status with:
1650 $! DEC C++ V1.1-001 on VMS VAX V5.5-2
1651 $! DEC C++ V5.6-013 on OpenVMS VAX V7.1
1652 $! DEC C++ V6.1-003 on OpenVMS Alpha V7.1
1653 $! Compaq C++ V6.2-016 for OpenVMS Alpha V7.2-1
1654 $ IF tmp .eq. %X15F60001
1658 $ DEFINE/USER_MODE SYS$OUTPUT NL:
1659 $ DEFINE/USER_MODE SYS$ERROR NL:
1663 $ ! success $status with:
1664 $ ! link && DEC C++ V1.1-001 on VMS VAX V5.5-2
1665 $ ! link && DEC C++ V5.6-013 on OpenVMS VAX V7.1
1666 $ IF tmp .eq. %X10000001
1669 $ vms_cc_available = vms_cc_available + "cxx "
1670 $ echo "CXX and LINK are available."
1672 $ IF F$SEARCH("ccvms.exe") .NES. "" THEN DELETE/NOLOG/NOCONFIRM ccvms.exe;
1674 $ DEFINE/USER_MODE SYS$OUTPUT NL:
1675 $ DEFINE/USER_MODE SYS$ERROR NL:
1679 $ ! success $status with:
1680 $ ! cxxlink && DEC C++ V6.1-003 on OpenVMS Alpha V7.1
1681 $ ! cxxlink && Compaq C++ V6.2-016 for OpenVMS Alpha V7.2-1
1682 $ IF tmp .eq. %X10000001
1684 $ ld_try = "cxxlink"
1685 $ vms_cc_available = vms_cc_available + "cxx "
1686 $ echo "CXX and CXXLINK are available."
1689 $ IF F$SEARCH("ccvms.exe") .NES. "" THEN DELETE/NOLOG/NOCONFIRM ccvms.exe;
1693 $ DELETE/NOLOG/NOCONFIRM ccvms.c;
1694 $ IF F$SEARCH("ccvms.obj") .NES. "" THEN DELETE/NOLOG/NOCONFIRM ccvms.obj;
1695 $ CALL Cxx_demangler_cleanup
1697 $ ENDIF ! 1 .eq. 0 or 1 .eq. 1
1700 $ DELETE/NOLOG/NOCONFIRM ccvms.*;
1702 $!: see if we need a special compiler
1704 $ echo "Available compiler(s):"
1705 $ echo "( ''vms_cc_available')"
1708 $ dflt = "cc''vms_cc_dflt'" !-> "cc" in case first compile went OK
1712 $ rp = "Use which C compiler? [''dflt'] "
1716 $ ans = F$EDIT(ans,"TRIM, COMPRESS, LOWERCASE")
1718 $ IF (F$LOCATE("dec",ans).NE.F$LENGTH(ans)).or.(F$LOCATE("compaq",ans).NE.F$LENGTH(ans))
1723 $ C_COMPILER_Replace = "CC=cc=''Mcc'"
1725 $ IF F$LOCATE("cxx",F$EDIT(ans,"COLLAPSE,LOWERCASE")) .NE. F$LENGTH(ans)
1730 $ C_COMPILER_Replace = "CC=cc=''Mcc'"
1734 $ IF F$LOCATE("dec",dflt) .NE. F$LENGTH(dflt) .or. -
1735 F$LOCATE("compaq",dflt) .NE. F$LENGTH(dflt)
1737 $ C_COMPILER_Replace = "CC=cc=''Mcc'"
1742 $ IF Mcc .EQS. "cc/decc"
1745 $ C_COMPILER_Replace = "CC=cc=''Mcc'"
1751 $ IF Mcc .EQS. "cc/decc"
1754 $ C_COMPILER_Replace = "CC=cc=''Mcc'"
1756 $ IF Mcc .EQS. "gcc"
1759 $ C_COMPILER_Replace = "CC=cc=''Mcc'"
1762 $Decc_Version_check:
1764 $ IF ccname .EQS. "DEC"
1767 $ echo4 "Checking for the Dec C version number..."
1768 $ OPEN/WRITE CONFIG deccvers.c
1769 $ WRITE CONFIG "#include <stdlib.h>" !DECC is sooo picky
1770 $ WRITE CONFIG "#include <stdio.h>"
1771 $ WRITE CONFIG "int main() {"
1772 $ WRITE CONFIG "#ifdef __DECC"
1773 $ WRITE CONFIG "#ifdef __DECC_VER"
1774 $ WRITE CONFIG " printf(""%i\n"", __DECC_VER);"
1775 $ WRITE CONFIG "#else"
1776 $ WRITE CONFIG " printf(""%i\n"", ""1"");"
1777 $ WRITE CONFIG "#endif"
1778 $ WRITE CONFIG "#endif"
1779 $ WRITE CONFIG " exit(0);"
1783 $ DEFINE/USER_MODE SYS$ERROR NL:
1784 $ DEFINE/USER_MODE SYS$OUTPUT NL:
1787 $ IF (silent) THEN GOSUB Shut_up
1788 $ DEFINE/USER_MODE SYS$ERROR NL:
1789 $ DEFINE/USER_MODE SYS$OUTPUT NL:
1792 $ IF (silent) THEN GOSUB Shut_up
1793 $ OPEN/WRITE CONFIG deccvers.out
1794 $ DEFINE/USER_MODE SYS$ERROR CONFIG
1795 $ DEFINE/USER_MODE SYS$OUTPUT CONFIG
1796 $ mcr []deccvers.exe
1800 $ IF (silent) THEN GOSUB Shut_up
1801 $ OPEN/READ CONFIG deccvers.out
1802 $ READ/END_OF_FILE=Dec_c_cleanup CONFIG line
1805 $ echo "You are using Dec C ''line'"
1807 $ Dec_C_Version = F$INTEGER(line)
1808 $ IF Dec_C_Version .GE. 60200000 .AND. archname .NES. "VMS_VAX"
1810 $ echo4 "adding /NOANSI_ALIAS qualifier to ccflags."
1811 $ ccflags = ccflags + "/NOANSI_ALIAS"
1813 $ DELETE/NOLOG/NOCONFIRM deccvers.*;
1817 $ IF ccname .EQS. "GCC"
1819 $ vaxcrtl_olb = F$SEARCH("SYS$LIBRARY:VAXCRTL.OLB")
1820 $ vaxcrtl_exe = F$SEARCH("SYS$SHARE:VAXCRTL.EXE")
1821 $ gcclib_olb = F$SEARCH("GNU_CC:[000000]GCCLIB.OLB")
1822 $ IF gcclib_olb .EQS. ""
1824 $! These objects/libs come w/ gcc 2.7.2 for AXP:
1825 $ tmp = F$SEARCH("GNU_CC:[000000]libgcc2.olb")
1826 $ IF tmp .NES. "" then gcclib_olb = tmp
1827 $ tmp = F$SEARCH("GNU_CC:[000000]libgcclib.olb")
1830 $ IF gcclib_olb .EQS. ""
1831 $ THEN gcclib_olb = tmp
1832 $ ELSE gcclib_olb = gcclib_olb + "/lib," + tmp
1835 $ tmp = F$SEARCH("SYS$LIBRARY:VAXCRTL.OLB")
1838 $ IF gcclib_olb .EQS. ""
1839 $ THEN gcclib_olb = tmp
1840 $ ELSE gcclib_olb = gcclib_olb + "/lib," + tmp
1843 $ tmp = F$SEARCH("GNU_CC:[000000]crt0.obj")
1846 $ IF gcclib_olb .EQS. ""
1847 $ THEN gcclib_olb = tmp
1848 $ ELSE gcclib_olb = gcclib_olb + "/lib," + tmp
1851 $ IF gcclib_olb .EQS. vaxcrtl_olb THEN gcclib_olb = "" !goofy order of axplibs
1853 $ gcclib_olb = gcclib_olb + "/lib"
1855 $ IF gcclib_olb .NES. "" .AND. -
1856 (vaxcrtl_olb .NES. "" .OR. -
1857 vaxcrtl_exe .NES. "" )
1860 $ echo4 "Checking for GNU cc in disguise and/or its version number..." !>&4
1861 $ OPEN/WRITE CONFIG gccvers.c
1862 $ WRITE CONFIG "#include <stdio.h>"
1863 $ WRITE CONFIG "int main() {"
1864 $ WRITE CONFIG "#ifdef __GNUC__"
1865 $ WRITE CONFIG "#ifdef __VERSION__"
1866 $ WRITE CONFIG " printf(""%s\n"", __VERSION__);"
1867 $ WRITE CONFIG "#else"
1868 $ WRITE CONFIG " printf(""%s\n"", ""1"");"
1869 $ WRITE CONFIG "#endif"
1870 $ WRITE CONFIG "#endif"
1871 $ WRITE CONFIG " exit(0);"
1874 $ DEFINE SYS$ERROR _NLA0:
1875 $ DEFINE SYS$OUTPUT _NLA0:
1878 $ DEASSIGN SYS$ERROR _NLA0:
1879 $ DEASSIGN SYS$OUTPUT _NLA0:
1880 $ IF (silent) THEN GOSUB Shut_up
1881 $ DEFINE SYS$ERROR _NLA0:
1882 $ DEFINE SYS$OUTPUT _NLA0:
1883 $ IF vaxcrtl_exe .EQS. ""
1885 $ IF F$LOCATE("VAXCRTL",gcclib_olb).NE.F$LENGTH(gcclib_olb)
1887 $ link gccvers.obj,'gcclib_olb',SYS$LIBRARY:VAXCRTL/Library
1890 $ link gccvers.obj,'gcclib_olb'
1894 $ OPEN/WRITE CONFIG GCCVERS.OPT
1895 $ WRITE CONFIG "SYS$SHARE:VAXCRTL/SHARE"
1897 $ link gccvers.obj,GCCVERS.OPT/OPT,'gcclib_olb'
1900 $ DEASSIGN SYS$ERROR
1901 $ DEASSIGN SYS$OUTPUT
1902 $ IF (silent) THEN GOSUB Shut_up
1903 $ OPEN/WRITE CONFIG gccvers.out
1904 $ DEFINE SYS$ERROR CONFIG
1905 $ DEFINE SYS$OUTPUT CONFIG
1909 $ DEASSIGN SYS$OUTPUT
1910 $ DEASSIGN SYS$ERROR
1911 $ IF (silent) THEN GOSUB Shut_up
1912 $ OPEN/READ CONFIG gccvers.out
1913 $ READ/END_OF_FILE=Gcc_cleanup CONFIG line
1916 $ DELETE/NOLOG/NOCONFIRM gccvers.*;
1917 $ IF F$LOCATE("GNU C version ",line).NE.F$LENGTH(line)
1919 $ echo "You are not using GNU cc."
1922 $ echo "You are using GNU cc ''line'"
1925 $ C_COMPILER_Replace = "CC=cc=''Mcc'"
1931 $ IF ccname .EQS. "CXX"
1933 $ OPEN/WRITE CONFIG cxxvers.c
1934 $ WRITE CONFIG "#include <stdio.h>"
1935 $ WRITE CONFIG "int main() {"
1936 $ WRITE CONFIG "#ifdef __DECCXX_VER"
1937 $ WRITE CONFIG " printf(""%i\n"", __DECCXX_VER);"
1938 $ WRITE CONFIG "#else"
1939 $ WRITE CONFIG " printf(""%i\n"", ""0"");"
1940 $ WRITE CONFIG "#endif"
1941 $ WRITE CONFIG " return(0);"
1945 $ DEFINE/USER_MODE SYS$ERROR NL:
1946 $ DEFINE/USER_MODE SYS$OUTPUT NL:
1950 $ IF (silent) THEN GOSUB Shut_up
1952 $ DEFINE/USER_MODE SYS$ERROR NL:
1953 $ DEFINE/USER_MODE SYS$OUTPUT NL:
1957 $ IF (silent) THEN GOSUB Shut_up
1958 $ OPEN/WRITE CONFIG cxxvers.out
1960 $ DEFINE/USER_MODE SYS$ERROR CONFIG
1961 $ DEFINE/USER_MODE SYS$OUTPUT CONFIG
1966 $ IF (silent) THEN GOSUB Shut_up
1967 $ OPEN/READ CONFIG cxxvers.out
1968 $ READ/END_OF_FILE=Cxx_cleanup CONFIG line
1971 $ DELETE/NOLOG/NOCONFIRM cxxvers.*;
1972 $ echo "You are using CXX ''line'"
1975 $ CALL Cxx_demangler_cleanup
1978 $Cxx_demangler_cleanup: SUBROUTINE
1980 $! If we do build with CXX these demangler Dbs will be left all over.
1981 $! However, configure.com does try to remove the [.UU] sub directory.
1982 $! Be sure to set default to the correct place before calling this sub.
1985 $ IF F$SEARCH("[.CXX_REPOSITORY]*.*") .NES. "" THEN DELETE/NOLOG/NOCONFIRM [.CXX_REPOSITORY]*.*;*
1986 $ IF F$SEARCH("CXX_REPOSITORY.DIR") .NES. ""
1988 $ SET PROTECTION=(SYSTEM:RWED,OWNER:RWED) CXX_REPOSITORY.DIR
1989 $ DELETE/NOLOG/NOCONFIRM CXX_REPOSITORY.DIR;
1993 $ ENDSUBROUTINE ! Cxx_demangler_cleanup
1998 $ OPEN/READ CONFIG ccvms.lis
2000 $ IF archname .EQS. "VMS_VAX"
2008 $ line = F$EDIT(line,"TRIM,COMPRESS")
2009 $ line = line - "Page 1" ! occurs at end all compilers
2010 $ line = line - "CCVMS " ! filename appears w/ VAXC
2011 $ line = line - "Source Listing " ! Seen w/ AXP DECC
2012 $ tmp = F$EXTRACT(0,20,line) !timestamp, e.g. "30-JUL-1996 21:12:54 "
2014 $ line = F$EDIT(line,"TRIM") !bit redundant but we're in no big hurry
2015 $ DELETE/NOLOG/NOCONFIRM ccvms.lis;
2019 $!: What should the include directory be ? (.TLB text libraries)
2021 $ rp = "Where are the include files you want to use? "
2022 $ IF f$length( rp + "[''dflt'] " ).gt.76
2023 $ THEN rp = F$FAO("!AS!/!AS",rp,"[''dflt'] ")
2024 $ ELSE rp = rp + "[''dflt'] "
2029 $!: see if we have to deal with yellow pages, now NIS.
2030 $!: now get the host name
2033 $ echo4 "Figuring out host name..." !>&4
2035 $ IF myhostname.eqs."" THEN myhostname = F$TRNLNM("ARPANET_HOST_NAME")
2036 $ IF myhostname.eqs."" THEN myhostname = F$TRNLNM("INTERNET_HOST_NAME")
2037 $ IF myhostname.eqs."" THEN myhostname = F$TRNLNM("MULTINET_HOST_NAME")
2038 $ IF myhostname.eqs."" THEN myhostname = F$TRNLNM("UCX$INET_HOST_NAME")
2039 $ IF myhostname.eqs."".and. -
2040 F$TRNLNM("UCX$INET_HOST") .nes. "" .and. -
2041 F$TRNLNM("UCX$INET_DOMAIN") .nes. "" THEN -
2042 myhostname = F$TRNLNM("UCX$INET_HOST") + "." + F$TRNLNM("UCX$INET_DOMAIN")
2043 $ IF myhostname.eqs."".and. -
2044 F$TRNLNM("TCPIP$INET_HOST") .nes. "" .and. -
2045 F$TRNLNM("TCPIP$INET_DOMAIN") .nes. "" THEN -
2046 myhostname = F$TRNLNM("TCPIP$INET_HOST") + "." + F$TRNLNM("TCPIP$INET_DOMAIN")
2047 $ IF myhostname.eqs."" THEN myhostname = F$TRNLNM("TCPWARE_DOMAINNAME")
2048 $ IF myhostname.eqs."" THEN myhostname = F$TRNLNM("NEWS_ADDRESS")
2049 $ IF myhostname.eqs."" THEN myhostname = F$TRNLNM("SYS$NODE") - "::"
2050 $ IF myhostname.eqs."" THEN myhostname = F$EDIT(F$GETSYI("SCSNODE"),"TRIM")
2051 $!: you do not want to know about this
2053 $ rp = "Your host name appears to be """"''myhostname'"""". Right? "
2058 $ READ SYS$COMMAND/PROMPT= -
2059 "Please type the (one word) name of your host: " ans
2062 $!: translate upper to lower if necessary
2063 $ myhostname = F$EDIT(myhostname,"COLLAPSE")
2064 $ mylowhostname = F$EDIT(myhostname," LOWERCASE")
2065 $ IF mylowhostname.NES.myhostname
2067 $ echo "(Normalizing case in your host name)"
2068 $ myhostname = mylowhostname
2071 $ fp = F$LOCATE(".",myhostname)
2072 $ mydomain = F$EXTRACT(fp,(F$LENGTH(myhostname)-fp)+1,myhostname)
2073 $ IF mydomain.NES."" !no periods in DECnet names like "MYDECNODE::"
2075 $ rp = "What is your domain name? [''mydomain'] "
2079 $!: translate upper to lower if necessary
2080 $ mydomain = F$EDIT(mydomain,"COLLAPSE")
2081 $ mylowdomain = F$EDIT(mydomain," LOWERCASE")
2082 $ IF mylowdomain.NES.mydomain
2084 $ echo "(Normalizing case in your domain name)"
2085 $ mydomain = mylowdomain
2088 $ myhostname = myhostname - mydomain
2089 $ echo "(Trimming domain name from host name--host name is now ''myhostname')"
2095 I need to get your e-mail address in Internet format if possible, i.e.
2096 something like user@host.domain. Please answer accurately since I have
2097 no easy means to double check it. The default value provided below
2098 is most probably close to the reality but may not be valid from outside
2099 your organization...
2102 $ IF F$TYPE(cf_email) .EQS. ""
2104 $ dflt = "''cf_by'@''myhostname'"+"''mydomain'"
2105 $ rp = "What is your e-mail address? [''dflt'] "
2115 If you or somebody else will be maintaining perl at your site, please
2116 fill in the correct e-mail address here so that they may be contacted
2117 if necessary. Currently, the "perlbug" program included with perl
2118 will send mail to this address in addition to perlbug@perl.com. You may
2119 enter "none" for no administrator.
2122 $ dflt = "''cf_email'"
2123 $ rp = "Perl administrator e-mail address [''dflt'] "
2127 $!: determine where public executable scripts go
2128 $!: determine perl absolute location
2129 $!: figure out how to guarantee perl startup
2131 $!: see how we invoke the C preprocessor
2133 $! echo4 "Now, how can we feed standard input to your C preprocessor..." !>&4
2134 $!: Set private lib path
2135 $!: Now check and see which directories actually exist, avoiding duplicates
2136 $!: determine optimize, if desired, or use for debug flag also
2137 $!: We will not override a previous value, but we might want to
2138 $!: augment a hint file
2139 $!: the following weeds options from ccflags that are of no interest to cpp
2140 $!: flags used in final linking phase
2141 $!: Try to guess additional flags to pick up local libraries.
2144 $! echo4 "Checking your choice of C compiler and flags for coherency..." !>&4
2145 $!: compute shared library extension
2146 $!: Looking for optional libraries
2147 $!: see if nm is to be used to determine whether a symbol is defined or not
2148 $!: get list of predefined functions in a handy place
2149 $!: see if we have sigaction or sigprocmask
2150 $!: see whether socketshr exists
2151 $ IF (F$SEARCH(F$PARSE("SocketShr","Sys$Share:.Exe")).NES."")
2153 $ Has_socketshr = "T"
2155 $ echo4 "Hmm... Looks like you have SOCKETSHR Berkeley networking support."
2157 $ Has_socketshr = "F"
2159 $ IF (ccname .EQS. "DEC" .AND. Dec_C_Version .GE. 50200000) .OR. (ccname .EQS. "CXX")
2161 $ Has_Dec_C_Sockets = "T"
2163 $ echo4 "Hmm... Looks like you have Dec C Berkeley networking support."
2165 $ Has_Dec_C_Sockets = "F"
2167 $ ! Hey, we've got both. Default to Dec C, then, since it's better
2168 $ IF Has_socketshr .OR. Has_Dec_C_Sockets
2171 $ echo "You have sockets available. Which socket stack do you want to"
2172 $ echo "build into Perl?"
2173 $ IF Has_Dec_C_Sockets
2177 $ dflt = "SOCKETSHR"
2179 $ rp = "Choose socket stack (NONE"
2180 $ IF Has_socketshr THEN rp = rp + ",SOCKETSHR"
2181 $ IF Has_Dec_C_Sockets THEN rp = rp + ",DECC"
2182 $ rp = rp + ") [''dflt'] "
2184 $ Has_Dec_C_Sockets = "F"
2185 $ Has_socketshr = "F"
2186 $ ans = F$EDIT(ans,"TRIM,COMPRESS,LOWERCASE")
2187 $ IF ans.eqs."decc" THEN Has_Dec_C_Sockets = "T"
2188 $ IF ans.eqs."socketshr" THEN Has_socketshr = "T"
2192 $! Ask if they want to build with VMS_DEBUG perl
2194 $ echo "Perl can be built to run under the VMS debugger."
2195 $ echo "You should only select this option if you are debugging"
2196 $ echo "perl itself. This can be a useful feature if you are "
2197 $ echo "embedding perl in a program."
2199 $ if f$type(usevmsdebug) .nes. ""
2201 $ if usevmsdebug .or. usevmsdebug .eqs. "define" then bool_dflt="y"
2203 $ rp = "Build a VMS-DEBUG version of Perl? [''bool_dflt'] "
2205 $ use_vmsdebug_perl = ans
2206 $ IF use_vmsdebug_perl
2208 $ usevmsdebug = "define"
2209 $ macros = macros + """__DEBUG__=1"","
2211 $ usevmsdebug = "undef"
2214 $! Ask if they want to build with DEBUGGING
2216 $ echo "Perl can be built with extra runtime debugging enabled. This"
2217 $ echo "enables the -D switch, at the cost of some performance. It"
2218 $ echo "was mandatory on perl 5.005 and before on VMS, but is now"
2219 $ echo "optional. If you do not generally use it you should probably"
2220 $ echo "leave this off and gain a bit of extra speed."
2222 $ if f$type(useperldebug) .nes. ""
2224 $ if f$extract(0,1,f$edit(useperldebug,"collapse,upcase")).eqs."N" .or. useperldebug .eqs. "undef" then bool_dflt="n"
2226 $ rp = "Build a DEBUGGING version of Perl? [''bool_dflt'] "
2228 $ use_debugging_perl = ans
2230 $! Ask if they want to build with MULTIPLICITY
2232 $ echo "Perl can be built so that multiple Perl interpreters can coexist"
2233 $ echo "within the same Perl executable."
2234 $ echo "There is some performance overhead, however, so you"
2235 $ echo "probably do not want to choose this unless you are going to be"
2236 $ echo "doing things with embedded perl."
2238 $ if f$type(usemultiplicity) .nes. ""
2240 $ if usemultiplicity .or. usemultiplicity .eqs. "define" then bool_dflt = "y"
2242 $ rp = "Build Perl for multiplicity? [''bool_dflt'] "
2246 $ usemultiplicity="define"
2248 $ usemultiplicity="undef"
2251 $! Ask if they want to build with 64-bit support
2252 $ IF (archname.eqs."VMS_AXP").and.("''f$extract(1,3, f$getsyi(""version""))'".ges."7.1")
2255 $ IF F$TYPE(use64bitint) .NES. ""
2257 $ IF use64bitint .OR. use64bitint .eqs. "define" THEN bool_dflt = "y"
2260 $ echo "You can have native 64-bit long integers."
2262 $ echo "Perl can be built to take advantage of 64-bit integer types"
2263 $ echo "on some systems, which provide a much larger range for perl's"
2264 $ echo "mathematical operations. (Note that does *not* enable 64-bit"
2265 $ echo "fileops at the moment, as Dec C doesn't do that yet)."
2266 $ echo "Choosing this option will most probably introduce binary incompatibilities."
2268 $ echo "If this does not make any sense to you, just accept the default ''dflt'."
2269 $ rp = "Try to use 64-bit integers, if available? [''bool_dflt'] "
2274 $ IF F$TYPE(use64bitall) .NES. ""
2276 $ IF use64bitall .OR. use64bitall .eqs. "define" THEN bool_dflt = "y"
2279 $ echo "You may also choose to try maximal 64-bitness. It means using as much"
2280 $ echo "64-bitness as possible on the platform. This in turn means even more"
2281 $ echo "binary incompatibilities. On the other hand, your platform may not"
2282 $ echo "have any more 64-bitness available than what you already have chosen."
2284 $ echo "If this does not make any sense to you, just accept the default ''dflt'."
2285 $ rp = "Try to use maximal 64-bit support, if available? [''bool_dflt'] "
2288 $ IF use64bitall .AND. .NOT. use64bitint
2291 $ echo "Since you have chosen a maximally 64-bit build, I'm also turning on"
2292 $ echo "the use of 64-bit integers."
2295 $ ENDIF ! AXP && >= 7.1
2297 $! Ask about threads, if appropriate
2298 $ IF ccname .EQS. "DEC" .OR. ccname .EQS. "CXX"
2301 $ echo "Perl can be built to take advantage of threads on some systems."
2302 $ echo "To do so, configure.com can be run with -""Dusethreads""."
2304 $ echo "Note that Perl built with threading support runs slightly slower"
2305 $ echo "and uses more memory than plain Perl. The current implementation"
2306 $ echo "is believed to be stable, but it is fairly new, and so should be"
2307 $ echo "treated with caution."
2310 $ if f$type(usethreads) .nes. ""
2312 $ if usethreads .or. usethreads .eqs. "define" then bool_dflt="y"
2314 $! Catch cases where user specified ithreads or 5005threads but
2315 $! forgot -Dusethreads
2316 $ if f$type(useithreads) .nes. ""
2318 $ if useithreads .or. useithreads .eqs. "define" then bool_dflt="y"
2320 $ if f$type(use5005threads) .nes. ""
2322 $ if use5005threads .or. use5005threads .eqs. "define" then bool_dflt="y"
2324 $ echo "If this doesn't make any sense to you, just accept the default '" + bool_dflt + "'."
2325 $ rp = "Build a threading Perl? [''bool_dflt'] "
2330 $ ! Shall we do the 5.005-type threads, or IThreads?
2331 $ echo "Since release 5.6, Perl has had two different threading implementations,"
2332 $ echo "the newer interpreter-based version (ithreads) with one interpreter per"
2333 $ echo "thread, and the older 5.005 version (5005threads)."
2334 $ echo "The 5005threads version is effectively unmaintained and will probably be"
2335 $ echo "removed in Perl 5.10, so there should be no need to build a Perl using it"
2336 $ echo "unless needed for backwards compatibility with some existing 5.005threads"
2340 $ if f$type(useithreads) .nes. ""
2342 $ if useithreads .eqs. "undef" then bool_dflt="n"
2344 $ if f$type(use5005threads) .nes. ""
2346 $ if use5005threads .or. use5005threads .eqs. "define" then bool_dflt="n"
2348 $ rp = "Use the newer intepreter-based ithreads? [''bool_dflt'] "
2353 $ use_5005_threads="N"
2355 $ use_5005_threads="Y"
2357 $ ! Are they on VMS 7.1 on an alpha?
2358 $ if (archname.eqs."VMS_AXP").and.("''f$extract(1,3, f$getsyi(""version""))'".ges."7.1")
2361 $ echo "Threaded perl can be linked to use multiple kernel threads"
2362 $ echo "and system upcalls on VMS 7.1+ on Alpha systems. This feature"
2363 $ echo "allows multiple threads to execute simultaneously on an SMP"
2364 $ echo "system as well as preventing a single thread from blocking"
2365 $ echo "all the threads in a program, even on a single-processor"
2366 $ echo "machine. Unfortunately, this feature isn't safe on an"
2367 $ echo "unpatched 7.1 system (several OS patches were required when"
2368 $ echo "this procedure was written)."
2370 $ rp = "Enable multiple kernel threads and upcalls? [''bool_dflt'] "
2374 $ Thread_Live_Dangerously = "MT=MT=1"
2379 $ IF archname .EQS. "VMS_AXP"
2383 $ echo "By default, perl (and pretty much everything else on VMS) uses"
2384 $ echo "case-insensitive linker symbols. Which is to say, when the"
2385 $ echo "underlying C code makes a call to a routine called Perl_foo in"
2386 $ echo "the source, the name in the object modules or shareable images"
2387 $ echo "is really PERL_FOO. There are some packages that use an"
2388 $ echo "embedded perl interpreter that instead require case-sensitive"
2389 $ echo "linker symbols."
2391 $ echo "If you have no idea what this means, and do not have"
2392 $ echo "any program requiring anything, choose the default."
2393 $ bool_dflt = be_case_sensitive
2394 $ if f$type(usecasesensitive) .nes. ""
2396 $ if usecasesensitive .or. usecasesensitive .eqs. "define" then bool_dflt = "y"
2397 $ if f$extract(0,1,f$edit(usecasesensitive,"collapse,upcase")).eqs."N" .or. usecasesensitive .eqs. "undef" then bool_dflt = "n"
2399 $ rp = "Build with case-sensitive symbols? [''bool_dflt'] "
2401 $ be_case_sensitive = ans
2404 $ echo "Perl normally uses IEEE format (T_FLOAT) floating point numbers"
2405 $ echo "internally on Alpha, but if you need G_FLOAT for binary compatibility"
2406 $ echo "with an external library or existing data, you may wish to disable"
2407 $ echo "the IEEE math option."
2408 $ bool_dflt = use_ieee_math
2409 $ if f$type(useieee) .nes. ""
2411 $ if useieee .or. useieee .eqs. "define"
2418 $ rp = "Use IEEE math? [''bool_dflt'] "
2420 $ use_ieee_math = ans
2422 $ be_case_sensitive = "n"
2423 $ use_ieee_math = "n"
2426 $ usecasesensitive = "undef"
2427 $ if (use_ieee_math) then useieee = "define"
2428 $ if (be_case_sensitive) then usecasesensitive = "define"
2431 $ echo "Your compiler may want other flags. For this question you should include"
2432 $ echo "/INCLUDE=(whatever) and /DEFINE=(whatever), flags and any other flags"
2433 $ echo "or qualifiers used by the compiler."
2435 $ echo "To use no flags, specify the word ""none""."
2436 $ dflt = user_c_flags
2437 $ rp = "Any additional cc flags? [''dflt'] "
2439 $ IF ans .EQS. "none" THEN ans = ""
2440 $ user_c_flags = "''ans'"
2442 $! Ask whether they want to use secure logical translation when tainting
2444 $ echo "As Perl starts up, it checks several logical names, such as"
2445 $ echo "PERL5LIB and PERL_ENV_TABLES, which allow you to modify aspects"
2446 $ echo "of its behavior. For additional security, you may limit this"
2447 $ echo "process to executive- and kernel-mode translation when tainting"
2448 $ echo "is enabled. In this case, logical names normally skipped when"
2449 $ echo "tainting is enabled (e.g. PERL5OPTS) are translated as well."
2450 $ echo "If you do not choose to do this, the usual order of access modes"
2451 $ echo "is used for logical name translation."
2453 $ echo "This restriction does not apply to the %ENV hash or to implicit"
2454 $ echo "logical name translation during parsing of file specifications;"
2455 $ echo "these always use the normal sequence of access modes for logical"
2456 $ echo "name translation."
2458 $ if f$type(usesecurelog) .nes. ""
2460 $ if f$extract(0,1,f$edit(usesecurelog,"collapse,upcase")).eqs."N" .or. usesecurelog .eqs. "undef" then bool_dflt = "n"
2462 $ rp = "Use secure logical name translation? [''bool_dflt'] "
2464 $ d_secintgenv = ans
2465 $ usesecurelog = "undef"
2466 $ if (d_secintgenv) then usesecurelog = "define"
2468 $! Ask whether they want to default filetypes
2470 $ echo "When you pass the name of a program to Perl on the command line,"
2471 $ echo "it generally doesn't supply any defaults unless the -S command"
2472 $ echo "line switch is specified. In keeping with the VMS tradition of"
2473 $ echo "default file types, however, you can configure Perl to try default"
2474 $ echo "file types of nothing, .pl, and .com, in that order (e.g. typing"
2475 $ echo """$ perl foo"" would cause Perl to look for foo., then foo.pl, and"
2476 $ echo "finally foo.com)."
2478 $ echo "This is currently broken in some configurations. Only enable it if"
2479 $ echo "you know what you are doing."
2481 $ if f$type(usedefaulttypes) .nes. ""
2483 $ if usedefaulttypes .or. usedefaulttypes .eqs. "define" then bool_dflt="y"
2485 $ rp = "Always use default file types? [''bool_dflt'] "
2487 $ d_alwdeftype = ans
2488 $ usedefaulttypes = "undef"
2489 $ if (d_alwdeftype) then usedefaulttypes = "define"
2491 $! Ask if they want to use perl's memory allocator
2493 $ echo "Perl has a built-in memory allocator that is tuned for normal"
2494 $ echo "memory usage. It is oftentimes better than the standard system"
2495 $ echo "memory allocator. It also has the advantage of providing memory"
2496 $ echo "allocation statistics, if you choose to enable them."
2498 $ IF F$TYPE(usemymalloc) .nes. ""
2500 $ if usemymalloc .or. usemymalloc .eqs. "define" then bool_dflt = "y"
2502 $ rp = "Do you wish to attempt to use the malloc that comes with ''package'? [''bool_dflt'] "
2507 $ IF use_debugging_perl
2510 $ echo "Perl can keep statistics on memory usage if you choose to use"
2511 $ echo "them. This is useful for debugging, but does have some"
2512 $ echo "performance overhead."
2514 $ rp = "Do you want the debugging memory allocator? [''bool_dflt'] "
2516 $ use_debugmalloc = ans
2518 $ ! Check which memory allocator we want
2520 $ echo "There are currently three different memory allocators: the"
2521 $ echo "default (which is a pretty good general-purpose memory manager),"
2522 $ echo "the TWO_POT allocator (which is optimized to save memory for"
2523 $ echo "larger allocations), and PACK_MALLOC (which is optimized to save"
2524 $ echo "memory for smaller allocations). They're all good, but if your"
2525 $ echo "usage tends towards larger chunks use TWO_POT, otherwise use"
2526 $ echo "PACK_MALLOC."
2528 $ rp = "Memory allocator (DEFAULT, TWO_POT, PACK_MALLOC) [''dflt'] "
2530 $ if ans.eqs."TWO_POT" then use_two_pot_malloc = "Y"
2531 $ if ans.eqs."PACK_MALLOC" then use_pack_malloc = "Y"
2534 $ known_extensions = ""
2536 $ OPEN/READ CONFIG 'manifestfound'
2538 $ READ/END_OF_FILE=end_ext/ERROR=end_ext CONFIG line
2539 $ IF F$EXTRACT(0,4,line) .NES. "ext/" .AND. -
2540 F$EXTRACT(0,8,line) .NES. "vms/ext/" THEN goto ext_loop
2541 $ line = F$EDIT(line,"COMPRESS")
2542 $ line = F$ELEMENT(0," ",line)
2543 $ line_len = F$LENGTH(line)
2544 $ IF F$EXTRACT(line_len - 12,12,line) .NES. "/Makefile.PL" THEN goto ext_loop
2545 $ IF F$EXTRACT(0,4,line) .EQS. "ext/" THEN -
2546 xxx = F$EXTRACT(4,line_len - 16,line)
2547 $ IF xxx .EQS. "DynaLoader" THEN goto ext_loop ! omit
2548 $ IF xxx .EQS. "SDBM_File/sdbm" THEN goto ext_loop ! sub extension - omit
2549 $ IF xxx .EQS. "Devel/PPPort/harness" THEN goto ext_loop ! sub extension - omit
2550 $ IF F$EXTRACT(0,7,xxx) .EQS. "Encode/" THEN goto ext_loop ! sub extension - omit
2551 $ IF xxx .EQS. "B/C" THEN goto ext_loop ! sub extension - omit
2552 $ IF F$EXTRACT(0,8,line) .EQS. "vms/ext/" THEN -
2553 xxx = "VMS/" + F$EXTRACT(8,line_len - 20,line)
2554 $ known_extensions = known_extensions + " ''xxx'"
2559 $ known_extensions = F$EDIT(known_extensions,"TRIM,COMPRESS")
2560 $ dflt = known_extensions
2561 $ IF ccname .NES. "DEC" .AND. ccname .NES. "CXX"
2563 $ dflt = dflt - "POSIX" ! not with VAX C or GCC
2565 $ dflt = dflt - "ByteLoader" ! needs to be ported
2566 $ dflt = dflt - "DB_File" ! needs to be ported
2567 $ dflt = dflt - "GDBM_File" ! needs porting/special library
2568 $ dflt = dflt - "IPC/SysV" ! needs to be ported
2569 $ dflt = dflt - "NDBM_File" ! needs porting/special library
2570 $ dflt = dflt - "ODBM_File" ! needs porting/special library
2571 $ dflt = dflt - "Sys/Syslog" ! needs porting/special library "GDBM_File macro LOG_DEBUG"
2572 $ IF .NOT. Has_socketshr .AND. .NOT. Has_Dec_C_Sockets
2574 $ dflt = dflt - "Socket" ! optional on VMS
2576 $ IF .NOT. use_threads THEN dflt = dflt - "Thread"
2577 $ dflt = F$EDIT(dflt,"TRIM,COMPRESS")
2579 $! Ask for their default list of extensions to build
2581 $ echo "It is time to specify which modules you want to build into"
2582 $ echo "perl. Most of these are standard and should be chosen, though"
2583 $ echo "you might, for example, want to build GDBM_File instead of"
2584 $ echo "SDBM_File if you have the GDBM library built on your machine."
2586 $ echo "Which modules do you want to build into perl?"
2589 $ extensions = F$EDIT(ans,"TRIM,COMPRESS")
2591 $! %Config-I-VMS, determine build/make utility here (make gmake mmk mms)
2593 $ echo "Checking your ""make"" utilities..."
2594 $! If the 'build' that you use is not here add it and it's test
2595 $! switch to the _END_ of these strings (and increment max_build)
2596 $! (e.g. builders = builders + "/FOOMAKE"
2597 $! probers = probers + " -fooVersionSwitch"
2598 $! ) & please let me know about it.
2599 $ builders = "IMAKE/GNUMAKE/MGMAKE/GMAKE/MAKE/MMS/MMK"
2600 $ probers = "-f Makefile. -v!-f Makefile. -v!-f Makefile. -v!-f Makefile. -v!-f Makefile. -v!/IDENT!/IDENT"
2606 $ OPEN/WRITE/ERROR=Open_error CONFIG Makefile.
2607 $ WRITE CONFIG "dont_make_anything_yet:"
2608 $ WRITE CONFIG F$FAO("!_")
2611 $ messages = F$ENVIRONMENT("MESSAGE")
2613 $ build = F$ELEMENT(n,"/",builders)
2614 $ probe = F$ELEMENT(n,"!",probers)
2615 $ echo "Testing whether you have ''build' on your system..."
2617 $! Noted with GNU Make version 3.60 that the $status and $severity
2618 $! with the 'probe' Makefile appear to be: $STATUS == "%X1000000C"
2619 $! $SEVERITY == "4".
2622 $ ON CONTROL_Y THEN GOTO Reenable_messages_build
2623 $ SET MESSAGE/NOFAC/NOSEV/NOIDENT/NOTEXT
2625 $ IF ($SEVERITY .EQ. 1) ! not adequate?
2628 $ IF (build .EQS. orig_dflt)
2630 $ default_set = "TRUE"
2633 $ ok_builders = ok_builders + " " + build
2634 $ IF (.NOT. default_set) THEN dflt = build
2638 $Reenable_messages_build:
2639 $ SET MESSAGE 'messages'
2641 $ on control_y then goto clean_up
2643 $ IF (n .LT. max_build) THEN GOTO Build_probe
2646 $ IF (ok_builders .NES. "")
2648 $ echo "Here is the list of builders you can apparently use:"
2649 $ echo "(",ok_builders," )"
2650 $ rp = "Which """"make"""" utility do you wish to use? [''dflt'] "
2652 $ ans = F$EDIT(ans,"TRIM, COMPRESS")
2653 $ ans = F$EXTRACT(0,F$LOCATE(" ",ans),ans) !throw out "-f Makefile." here
2662 %Config-E-VMS, ERROR:
2663 Well this looks pretty serious. Perl5 cannot be compiled without a "make"
2664 utility of some sort and after checking my "builders" list I cannot find
2665 the symbol or command you use on your system to compile programs.
2668 $ READ SYS$COMMAND/PROMPT="Which ""MMS"" do you use? " ans
2669 $ ans = F$EDIT(ans,"TRIM, COMPRESS")
2670 $ ans = F$EXTRACT(0,F$LOCATE(" ",ans),ans) !throw out "-f Makefile." here
2673 $ echo "I do not know where ""make"" is, and my life depends on it."
2674 $ echo "Go find a make program or fix your DCL$PATH setting!"
2675 $ echo "ABORTING..."
2676 $ SET DEFAULT 'vms_default_directory_name' !be kind rewind
2678 $ EXIT 2 !$STATUS = "%X00000002" (error)
2684 $ DELETE/NOLOG/NOCONFIRM Makefile.;
2690 There seems to be trouble. I just tried to create a file in
2692 $ echo4 'F$ENVIRONMENT("DEFAULT")'
2695 but was unsuccessful. I am stopping now. Please check that directories'
2696 PROTECTION bits. I will leave you in the directory where you started
2699 $ echo4 "ABORTING..."
2705 $! echo " Very well I will proceed with ""''build'"""
2706 $ make = F$EDIT(build,"UPCASE")
2708 $!: locate the preferred pager for this system
2709 $!pagers = "most|more|less|type/page"
2710 $ dflt = "type/page"
2711 $! assume that the presence of a most symbol indicates the presence
2713 $ IF F$TYPE(most) .EQS. "STRING" THEN dflt = "most"
2714 $ IF F$TYPE(pager) .EQS. "STRING" THEN dflt = pager
2715 $ rp="What pager is used on your system? [''dflt'] "
2719 $! update [.vms]config.vms here
2721 $! update makefile here
2722 $! echo4 "Updating makefile..."
2724 $ IF (make .EQS. "MMS").OR.(make .EQS. "MMK")
2726 $ makefile = "" !wrt MANIFEST dir
2727 $ UUmakefile = "[-]DESCRIP.MMS" !wrt CWD dir
2728 $ DEFmakefile = "DESCRIP.MMS" !wrt DEF dir (?)
2729 $ Makefile_SH = "descrip_mms.template"
2731 $ makefile = " -f Makefile." !wrt MANIFEST dir
2732 $ UUmakefile = "[-]Makefile." !wrt CWD dir
2733 $ DEFmakefile = "Makefile." !wrt DEF dir (?)
2734 $ Makefile_SH = "Makefile.in"
2737 $ IF macros .NES. ""
2739 $ tmp = F$LENGTH(macros)
2740 $ macros = F$EXTRACT(0,(tmp-1),macros) !miss trailing comma
2741 $ macros = "/macro=(" + macros + ")"
2743 $! Build up the extra C flags
2747 $ extra_flags = "''extra_flags'" + "/float=ieee/ieee=denorm_results"
2749 $ IF be_case_sensitive
2751 $ extra_flags = "''extra_flags'" + "/Names=As_Is"
2753 $ extra_flags = "''extra_flags'" + "''user_c_flags'"
2755 $ min_pgflquota = "100000"
2756 $ pgflquota = F$STRING(F$GETJPI("","PGFLQUOTA"))
2757 $ IF pgflquota .LES. min_pgflquota
2759 $ echo4 "Your PGFLQUOTA of ''pgflquota' appears too small to build ''package'."
2760 $ READ SYS$COMMAND/PROMPT="Continue? [n] " ans
2763 $ echo4 "Continuing..."
2765 $ echo4 "ABORTING..."
2770 $! PerlIO abstraction
2773 $ IF F$TYPE(useperlio) .NES. ""
2775 $ if f$extract(0,1,f$edit(useperlio,"collapse,upcase")) .eqs. "N" .or. useperlio .eqs. "undef" then bool_dflt = "n"
2779 $ echo "Previous versions of ''package' used the standard IO mechanisms as"
2782 defined in <stdio.h>. Versions 5.003_02 and later of perl allow
2783 alternate IO mechanisms via the PerlIO abstraction layer, but the
2784 stdio mechanism is still available if needed. The abstraction layer
2785 can use AT&T's sfio (if you already have sfio installed) or regular stdio.
2786 Using PerlIO with sfio may cause problems with some extension modules.
2789 $ echo "If this does not make any sense to you, just accept the default '" + bool_dflt + "'."
2791 $ rp = "Use the PerlIO abstraction layer? [''bool_dflt'] "
2795 $ useperlio = "define"
2797 $ echo "Ok, doing things the stdio way."
2798 $ useperlio = "undef"
2802 $ echo4 "Checking the C run-time library."
2804 $! Former SUBCONFIGURE.COM
2806 $! - build a config.sh for VMS Perl.
2807 $! - use built config.sh to take config_h.SH -> config.h
2808 $! - also take vms/descrip_mms.template -> descrip.mms (VMS Makefile)
2809 $! vms/Makefile.in -> Makefile. (VMS GNU Makefile?)
2810 $! vms/Makefile.SH -> Makefile. (VMS GNU Makefile?)
2812 $! Note for folks from other platforms changing things in here:
2814 $! Fancy changes (based on compiler capabilities or VMS version or
2815 $! whatever) are tricky, so go ahead and punt on those.
2817 $! Simple changes, though (say, always setting something to 1, or undef,
2818 $! or something like that) are straightforward. Adding a new constant
2819 $! item for the ultimately created config.sh requires at least one
2820 $! (possibly more) line(s) to this file.
2822 $! Add a line in the format:
2824 $! $ WC "foo='undef'"
2826 $! somewhere between the line tagged '##BEGIN WRITE NEW CONSTANTS HERE##'
2827 $! and the one tagged '##END WRITE NEW CONSTANTS HERE##' (note the order
2828 $! is sorted ASCII and corresponds to the output of config.sh in the
2829 $! Bourne shell version of Configure).
2830 $! Be very careful with quoting, as it can be tricky.
2831 $! For example if instead of a constant string like 'undef' or 'define'
2832 $! you wanted to add something to VMS's config.sh that looks like:
2836 $! then add a line that looks like this before the
2837 $! '##END WRITE NEW CONSTANTS HERE##' tagged line:
2839 $! $ WC "blank_string='" + "'"
2841 $! (+ is the string concatenator and "''var'" has the effect
2842 $! of "${var}" in perl or sh, but "'const'" is not interpolated).
2844 $! Note that unitialized variables, such as a line like:
2846 $! $ WC "new_var='" + new_var + "'"
2848 $! should be avoided unless new_var has a value assigned prior
2849 $! to that line (think of perl's -w warnings).
2851 $! %DCL-W-UNDSYM, undefined symbol - check validity and spelling
2855 $ vms_ver = F$EXTRACT(1,3, osvers)
2856 $ IF F$LENGTH(Mcc) .EQ. 0 THEN Mcc := "cc"
2857 $ MCC = f$edit(mcc, "UPCASE")
2858 $ C_Compiler_Replace := "CC=CC=''Mcc'''ccflags'"
2859 $ IF ccname .EQS. "DEC"
2861 $ Checkcc := "''Mcc'/prefix=all"
2863 $ IF ccname .EQS. "CXX"
2867 $ Checkcc := "''Mcc'"
2870 $ ccflags = ccflags + extra_flags
2871 $ IF be_case_sensitive
2873 $ d_vms_be_case_sensitive = "define"
2875 $ d_vms_be_case_sensitive = "undef"
2877 $! Some constant defaults.
2878 $ hwname = f$getsyi("HW_NAME")
2879 $ myname = myhostname
2880 $ IF myname .EQS. "" THEN myname = F$TRNLNM("SYS$NODE")
2885 $ IF use64bitint .OR. use64bitint .EQS. "define"
2887 $ use64bitint = "define"
2888 $ uselargefiles = "define"
2889 $ uselongdouble = "define"
2891 $ usemorebits = "define"
2892 $ ivdformat="""Ld"""
2893 $ uvuformat="""Lu"""
2894 $ uvoformat="""Lo"""
2895 $ uvxformat="""Lx"""
2896 $ uvXUformat="""LX"""
2898 $ use64bitint = "undef"
2899 $ uselargefiles = "undef"
2900 $ uselongdouble = "undef"
2901 $ usemorebits = "undef"
2902 $ ivdformat="""ld"""
2903 $ uvuformat="""lu"""
2904 $ uvoformat="""lo"""
2905 $ uvxformat="""lx"""
2906 $ uvXUformat="""lX"""
2908 $ IF uselongdouble .OR. uselongdouble .EQS. "define"
2910 $ nveformat="""Le"""
2911 $ nvfformat="""Lf"""
2912 $ nvgformat="""Lg"""
2918 $ IF use64bitall .OR. use64bitall .EQS. "define"
2920 $ use64bitall = "define"
2922 $ use64bitall = "undef"
2925 $ usemymalloc = "undef"
2926 $ if mymalloc then usemymalloc = "define"
2930 $ IF (sharedperl .AND. archname .EQS. "VMS_AXP")
2944 $ dlobj="dl_vms''obj_ext'"
2946 $ cppstdin="''perl_cc'/noobj/comments=as_is/preprocess=sys$output sys$input"
2948 $ cpprun="''perl_cc'/noobj/comments=as_is/preprocess=sys$output sys$input"
2956 $ THEN d_mymalloc="define"
2957 $ ELSE d_mymalloc="undef"
2961 $ startperl="""$ perl 'f$env(\""procedure\"")' \""'"+"'p1'\"" \""'"+"'p2'\"" \""'"+"'p3'\"" \""'"+"'p4'\"" \""'"+"'p5'\"" \""'"+"'p6'\"" \""'"+"'p7'\"" \""'"+"'p8'\""!\n"
2962 $ startperl=startperl + "$ exit++ + ++$status!=0 and $exit=$status=undef; while($#ARGV != -1 and $ARGV[$#ARGV] eq '"+"'){pop @ARGV;}"""
2964 $ IF ((use_threads) .AND. (vms_ver .LES. "6.2"))
2966 $ 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"
2970 $ IF ccname .EQS. "DEC" .OR. ccname .EQS. "CXX"
2977 $! perllibs should be libs with all non-core libs (such as gdbm) removed.
2983 $ IF use64bitint .OR. use64bitint .EQS. "define"
2985 $ d_PRId64 = "define"
2986 $ d_PRIu64 = "define"
2987 $ d_PRIo64 = "define"
2988 $ d_PRIx64 = "define"
2989 $ d_PRIXU64 = "define"
2990 $ sPRId64 = """Ld"""
2991 $ sPRIXU64 = """LX"""
2992 $ sPRIi64 = """Li"""
2993 $ sPRIo64 = """Lo"""
2994 $ sPRIu64 = """Lu"""
2995 $ sPRIx64 = """Lx"""
2997 $ quadtype = "long long"
2998 $ uquadtype = "unsigned long long"
2999 $ quadkind = "QUAD_IS_LONG_LONG"
3000 $ d_frexpl = "define"
3001 $ d_isnan = "define"
3002 $ d_isnanl = "define"
3003 $ d_modfl = "define"
3004 $ d_modflproto = "define"
3006 $ d_PRId64 = "undef"
3007 $ d_PRIXU64 = "undef"
3008 $ d_PRIu64 = "undef"
3009 $ d_PRIo64 = "undef"
3010 $ d_PRIx64 = "undef"
3012 $ sPRIXU64 = """lX"""
3019 $ uquadtype = "unsigned long"
3020 $ quadkind = "QUAD_IS_LONG"
3021 $ d_frexpl = "undef"
3023 $ d_isnanl = "undef"
3025 $ d_modflproto = "undef"
3028 $! Now some that we build up
3032 $ IF use_5005_threads
3034 $ arch = "''arch'-thread"
3035 $ archname = "''archname'-thread"
3036 $ d_old_pthread_create_joinable = "undef"
3037 $ old_pthread_create_joinable = " "
3038 $ use5005threads = "define"
3039 $ useithreads = "undef"
3041 $ arch = "''arch'-ithread"
3042 $ archname = "''archname'-ithread"
3043 $ d_old_pthread_create_joinable = "undef"
3044 $ old_pthread_create_joinable = " "
3045 $ use5005threads = "undef"
3046 $ useithreads = "define"
3049 $ d_old_pthread_create_joinable = "undef"
3050 $ old_pthread_create_joinable = " "
3051 $ use5005threads = "undef"
3052 $ useithreads = "undef"
3055 $! Some that we need to invoke the compiler for
3058 $! handy construction aliases/symbols
3060 $ OS := "open/write CONFIG []try.c"
3061 $ WS := "write CONFIG"
3062 $ CS := "close CONFIG"
3063 $ DS := "delete/nolog/noconfirm []try.*;*"
3065 $ good_compile = %X10B90001
3066 $ IF ccname .EQS. "GCC"
3068 $ open/write OPTCHAN []try.opt
3069 $ write OPTCHAN "Gnu_CC:[000000]gcclib.olb/library"
3070 $ write OPTCHAN "Sys$Share:VAXCRTL/Share"
3073 $ good_compile = %X10000001
3075 $ IF ccname .EQS. "CXX"
3077 $ good_compile = %X15F60001
3079 $ good_link = %X10000001
3080 $ tmp = "" ! null string default
3082 $ GOTO beyond_compile_ok
3084 $! Check for type sizes
3089 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3090 $ WS "#include <stdlib.h>"
3092 $ WS "#include <stdio.h>"
3095 $ WS "printf(""%d\n"", sizeof(''tmp'));"
3102 $!: locate header file
3106 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3107 $ WS "#include <stdlib.h>"
3109 $ WS "#include <stdio.h>"
3110 $ WS "#include <''tmp'>"
3113 $ WS "printf(""define\n"");"
3120 $!: define an alternate in-header-list? function
3124 $ IF compile_status .EQ. good_compile .AND. link_status .EQ. good_link
3126 $ echo4 "<''tmp'> found."
3129 $ echo4 "<''tmp'> NOT found."
3134 $!: define an is-in-libc? function
3137 $ IF compile_status .EQ. good_compile .AND. link_status .EQ. good_link
3139 $ echo4 "''tmp'() found."
3142 $ echo4 "''tmp'() NOT found."
3147 $!: define a shorthand compile call
3151 $ IF compile_status .EQ. good_compile .AND. link_status .EQ. good_link
3153 $ OPEN/WRITE CONFIG []try.out
3154 $ DEFINE/USER_MODE SYS$ERROR CONFIG
3155 $ DEFINE/USER_MODE SYS$OUTPUT CONFIG
3158 $ OPEN/READ CONFIG []try.out
3161 $ DELETE/NOLOG/NOCONFIRM []try.out;
3162 $ DELETE/NOLOG/NOCONFIRM []try.exe;
3164 $ tmp = "" ! null string default
3170 $ DEFINE/USER_MODE SYS$ERROR _NLA0:
3171 $ DEFINE/USER_MODE SYS$OUTPUT _NLA0:
3175 $ 'ld' try.obj,try.opt/opt
3176 $ link_status = $status
3179 $ link_status = $status
3182 $ IF F$SEARCH("try.obj") .NES. "" THEN DELETE/NOLOG/NOCONFIRM try.obj;
3185 $!: define a shorthand compile call for compilations that should be ok.
3187 $ DEFINE/USER_MODE SYS$ERROR _NLA0:
3188 $ DEFINE/USER_MODE SYS$OUTPUT _NLA0:
3191 $ compile_status = $status
3193 $ DELETE/NOLOG/NOCONFIRM try.c;
3198 $! Check for __STDC__
3201 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3202 $ WS "#include <stdlib.h>"
3204 $ WS "#include <stdio.h>"
3207 $ WS "#ifdef __STDC__"
3208 $ WS "printf(""42\n"");"
3210 $ WS "printf(""1\n"");"
3217 $ IF F$INTEGER(tmp) .eq. 42
3219 $ echo4 "Your C compiler and pre-processor defines the symbol:"
3223 $! Check for double size
3225 $ echo4 "Checking to see how big your double precision numbers are..."
3227 $ GOSUB type_size_check
3229 $ echo "Your double is ''doublesize' bytes long."
3231 $! Check for long double size
3234 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3235 $ WS "#pragma message disable ALL" ! VAX compilers may have distracting informationals
3236 $ WS "#include <stdlib.h>"
3238 $ WS "#include <stdio.h>"
3241 $ WS "printf(""%d\n"", sizeof(long double));"
3245 $ echo4 "Checking to see if you have long double..."
3247 $ IF link_status .NE. good_link
3251 $ echo "You do not have long double."
3253 $ echo "You have long double."
3254 $ echo4 "Checking to see how big your long doubles are..."
3257 $ d_longdbl = "define"
3258 $ echo "Your long doubles are ''longdblsize' bytes long."
3261 $ IF d_longdbl .OR. d_longdbl .EQS. "define"
3263 $ d_PRIEUldbl = "define"
3264 $ d_PRIFUldbl = "define"
3265 $ d_PRIGUldbl = "define"
3266 $ d_PRIeldbl = "define"
3267 $ d_PRIfldbl = "define"
3268 $ d_PRIgldbl = "define"
3269 $ sPRIEUldbl = """LE"""
3270 $ sPRIFUldbl = """LF"""
3271 $ sPRIGUldbl = """LG"""
3272 $ sPRIeldbl = """Le"""
3273 $ sPRIfldbl = """Lf"""
3274 $ sPRIgldbl = """Lg"""
3276 $ d_PRIEUldbl = "undef"
3277 $ d_PRIFUldbl = "undef"
3278 $ d_PRIGUldbl = "undef"
3279 $ d_PRIeldbl = "undef"
3280 $ d_PRIfldbl = "undef"
3281 $ d_PRIgldbl = "undef"
3289 $ d_SCNfldbl = d_PRIfldbl
3290 $ sSCNfldbl = sPRIfldbl ! expect consistency
3292 $!: check for long long
3294 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3295 $ WS "#include <stdlib.h>"
3297 $ WS "#include <stdio.h>"
3300 $ WS "printf(""%d\n"", sizeof(long long));"
3304 $ echo4 "Checking to see if you have long long..."
3306 $ IF link_status .NE. good_link
3309 $ d_longlong="undef"
3310 $ echo "You do not have long long."
3312 $ echo "You have long long."
3313 $ echo4 "Checking to see how big your long longs are..."
3315 $ longlongsize = tmp
3316 $ d_longlong = "define"
3317 $ echo "Your long longs are ''longlongsize' bytes long."
3320 $! Check the prototype for getgid
3322 $ echo "Looking for the type for group ids returned by getgid()."
3324 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3325 $ WS "#include <stdlib.h>"
3327 $ WS "#include <stdio.h>"
3328 $ WS "#include <types.h>"
3336 $ IF compile_status .NE. good_compile
3338 $! Okay, gid_t failed. Must be unsigned int
3339 $ gidtype = "unsigned int"
3340 $ echo4 "assuming ""''gidtype'""."
3343 $ echo4 "gid_t found."
3346 $! Check to see if we've got dev_t
3348 $ echo "Looking for the type for dev."
3350 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3351 $ WS "#include <stdlib.h>"
3353 $ WS "#include <stdio.h>"
3354 $ WS "#include <types.h>"
3362 $ IF compile_status .NE. good_compile
3364 $! Okay, dev_t failed. Must be unsigned int
3365 $ devtype = "unsigned int"
3366 $ echo4 "assuming ""''devtype'""."
3369 $ echo4 "dev_t found."
3372 $! Check to see if we've got unistd.h (which we ought to, but you never know)
3379 $! do we have getppid()?
3381 $ IF i_unistd .EQS. "define"
3384 $ WS "#include <stdio.h>"
3385 $ WS "#include <unistd.h>"
3387 $ WS "printf(""%d\n"",getppid());"
3395 $ d_getppid = "undef"
3398 $!: see if this is a libutil.h system
3404 $! Check to see if we've got shadow.h (probably not, but...)
3410 $! Check to see if we've got socks.h (probably not, but...)
3416 $! Check the prototype for select
3418 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
3421 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3422 $ WS "#include <stdlib.h>"
3424 $ WS "#include <stdio.h>"
3425 $ WS "#include <types.h>"
3426 $ IF i_unistd .EQS. "define" THEN WS "#include <unistd.h>"
3429 $ WS "#include <socketshr.h>"
3431 $ WS "#include <time.h>"
3432 $ WS "#include <socket.h>"
3439 $ WS "bar = select(2, foo, foo, foo, NULL);"
3444 $ IF compile_status .NE. good_compile
3446 $! Okay, select failed. Must be an int *
3447 $ selecttype = "int *"
3448 $ echo4 "select() NOT found."
3450 $ selecttype="fd_set *"
3451 $ echo4 "select() found."
3454 $ ! No sockets, so stick in an int * : no select, so pick a harmless default
3455 $ selecttype = "int *"
3458 $! Check to see if fd_set exists
3460 $ echo "Checking to see how well your C compiler handles fd_set and friends ..."
3462 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3463 $ WS "#include <stdlib.h>"
3465 $ WS "#include <stdio.h>"
3466 $ WS "#include <types.h>"
3469 $ WS "#include <socketshr.h>"
3471 $ IF Has_Dec_C_Sockets
3473 $ WS "#include <time.h>"
3474 $ WS "#include <socket.h>"
3484 $ IF compile_status .ne. good_compile
3486 $! Okay, fd_set failed. Must not exist
3487 $ d_fd_set = "undef"
3488 $ echo4 "Hmm, your compiler has some difficulty with fd_set."
3491 $ echo4 "Well, your system knows about the normal fd_set typedef..."
3494 $! Check for inttypes.h
3496 $ tmp = "inttypes.h"
3500 $! Check to see if off64_t exists
3502 $ echo4 "Checking to see if you have off64_t..."
3504 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3505 $ WS "#include <stdlib.h>"
3507 $ WS "#include <stdio.h>"
3508 $ WS "#include <types.h>"
3509 $ WS "#''i_inttypes' IIH"
3511 $ WS "#include <inttypes.h>"
3520 $ IF compile_status .EQ. good_compile
3522 $ d_off64_t="define"
3523 $ echo "You have off64_t."
3525 $ d_off64_t = "undef"
3526 $ echo "You do not have off64_t."
3529 $! Check to see if fpos64_t exists
3531 $ echo4 "Checking to see if you have fpos64_t..."
3533 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3534 $ WS "#include <stdlib.h>"
3536 $ WS "#include <stdio.h>"
3537 $ WS "#include <types.h>"
3538 $ WS "#''i_inttypes' IIH"
3540 $ WS "#include <inttypes.h>"
3544 $ WS "fpos64_t bar;"
3549 $ IF compile_status .EQ. good_compile
3551 $ d_fpos64_t="define"
3552 $ echo "You have fpos64_t."
3554 $ d_fpos64_t = "undef"
3555 $ echo "You do not have fpos64_t."
3558 $! Check to see if int64_t exists
3560 $ echo4 "Checking to see if you have int64_t..."
3562 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3563 $ WS "#include <stdlib.h>"
3565 $ WS "#include <stdio.h>"
3566 $ WS "#include <types.h>"
3567 $ WS "#''i_inttypes' IIH"
3569 $ WS "#include <inttypes.h>"
3578 $ IF compile_status .EQ. good_compile
3580 $ d_int64_t="define"
3581 $ echo "You have int64_t."
3583 $ d_int64_t = "undef"
3584 $ echo "You do not have int64_t."
3587 $!: see if this is a netdb.h system
3588 $ IF Has_Dec_C_Sockets
3595 $! Check for h_errno
3597 $ echo4 "Checking to see if you have h_errno..."
3599 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3600 $ WS "#include <stdlib.h>"
3602 $ WS "#include <stdio.h>"
3603 $ IF i_unistd .EQS. "define" THEN WS "#include <unistd.h>"
3604 $ IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
3612 $ IF compile_status .EQ. good_compile .AND. link_status .EQ. good_link
3615 $ echo "You have h_errno."
3618 $ echo "You do not have h_errno."
3621 $! Check to see if gethostname exists
3623 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
3626 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3627 $ WS "#include <stdlib.h>"
3629 $ WS "#include <stdio.h>"
3630 $ WS "#include <types.h>"
3633 $ WS "#include <socketshr.h>"
3635 $ WS "#include <time.h>"
3636 $ WS "#include <socket.h>"
3640 $ WS "char name[100];"
3641 $ WS "int bar, baz;"
3643 $ WS "baz = gethostname(name, bar);"
3648 $ IF compile_status .EQ. good_compile .AND. link_status .EQ. good_link
3650 $ d_gethname="define"
3651 $ echo4 "gethostname() found."
3653 $ d_gethname="undef"
3656 $ ! No sockets, so no gethname
3657 $ d_gethname = "undef"
3660 $! Check for sys/file.h
3662 $ tmp = "sys/file.h"
3666 $! Check for sys/utsname.h
3668 $ tmp = "sys/utsname.h"
3670 $ i_sysutsname = tmp
3672 $! Check for syslog.h
3684 $! Check for sys/uio.h
3690 $! Check for sys/mode.h
3692 $ tmp = "sys/mode.h"
3696 $! Check for sys/access.h
3698 $ tmp = "sys/access.h"
3702 $! Check for sys/security.h
3704 $ tmp = "sys/security.h"
3708 $! Check for fcntl.h
3717 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3718 $ WS "#include <stdlib.h>"
3720 $ WS "#include <stdio.h>"
3721 $ WS "#include <fcntl.h>"
3724 $ WS "fcntl(1,2,3);"
3732 $! Check for fcntl locking capability
3734 $ echo4 "Checking if fcntl-based file locking works... "
3736 $ IF d_fcntl .EQS. "define"
3739 $ WS "#include <stdio.h>"
3740 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3741 $ WS "#include <stdlib.h>"
3743 $ WS "#include <fcntl.h>"
3744 $ WS "#include <unistd.h>"
3746 $ WS "#if defined(F_SETLK) && defined(F_SETLKW)"
3747 $ WS " struct flock flock;"
3748 $ WS " int retval, fd;"
3749 $ WS " fd = open(""try.c"", O_RDONLY);"
3750 $ WS " flock.l_type = F_RDLCK;"
3751 $ WS " flock.l_whence = SEEK_SET;"
3752 $ WS " flock.l_start = flock.l_len = 0;"
3753 $ WS " retval = fcntl(fd, F_SETLK, &flock);"
3755 $ WS " (retval < 0 ? printf(""undef\n"") : printf(""define\n""));"
3757 $ WS " printf(""undef\n"");"
3762 $ IF compile_status .EQ. good_compile .AND. link_status .EQ. good_link
3765 $ IF tmp .EQS. "define"
3767 $ echo4 "Yes, it seems to work."
3769 $ echo4 "Nope, it didn't work."
3772 $ echo4 "I'm unable to compile the test program, so I'll assume not."
3776 $ echo4 "Nope, since you don't even have fcntl()."
3778 $ d_fcntl_can_lock = tmp
3783 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3784 $ WS "#include <stdlib.h>"
3786 $ WS "#include <string.h>"
3789 $ WS "char * place;"
3790 $ WS "place = memchr(""foo"", 47, 3);"
3798 $! Check for strtoull
3801 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3802 $ WS "#include <stdlib.h>"
3804 $ WS "#include <string.h>"
3807 $ WS "unsigned __int64 result;"
3808 $ WS "result = strtoull(""123123"", NULL, 10);"
3816 $! Check for strtouq
3819 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3820 $ WS "#include <stdlib.h>"
3822 $ WS "#include <string.h>"
3825 $ WS "unsigned __int64 result;"
3826 $ WS "result = strtouq(""123123"", NULL, 10);"
3834 $! Check for strtoll
3837 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3838 $ WS "#include <stdlib.h>"
3840 $ WS "#include <string.h>"
3843 $ WS "__int64 result;"
3844 $ WS "result = strtoll(""123123"", NULL, 10);"
3855 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3856 $ WS "#include <stdlib.h>"
3858 $ WS "#include <string.h>"
3861 $ WS "__int64 result;"
3862 $ WS "result = strtoq(""123123"", NULL, 10);"
3873 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3874 $ WS "#include <stdlib.h>"
3876 $ WS "#include <string.h>"
3879 $ WS "__int64 result;"
3880 $ WS "result = strtoq(""123123"", NULL, 10);"
3888 $! Check for strtold
3891 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3892 $ WS "#include <stdlib.h>"
3894 $ WS "#include <string.h>"
3897 $ WS "long double result;"
3898 $ WS "result = strtold(""123123"", NULL, 10);"
3909 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3910 $ WS "#include <stdlib.h>"
3912 $ WS "#include <string.h>"
3915 $ WS " __int64 result;"
3916 $ WS "result = atoll(""123123"");"
3927 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3928 $ WS "#include <stdlib.h>"
3930 $ WS "#include <string.h>"
3934 $ WS "result = atolf(""123123"");"
3945 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3946 $ WS "#include <stdlib.h>"
3948 $ WS "#include <stdio.h>"
3951 $ WS "access(""foo"", F_OK);"
3962 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3963 $ WS "#include <stdlib.h>"
3965 $ WS "#include <stdio.h>"
3966 $ WS "#include <strings.h>"
3969 $ WS "char foo[10];"
3970 $ WS "bzero(foo, 10);"
3981 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3982 $ WS "#include <stdlib.h>"
3984 $ WS "#include <stdio.h>"
3985 $ WS "#include <strings.h>"
3988 $ WS "char foo[10], bar[10];"
3989 $ WS "bcopy(""foo"", bar, 3);"
3997 $! Check for mkstemp
4000 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4001 $ WS "#include <stdlib.h>"
4003 $ WS "#include <stdio.h>"
4006 $ WS "mkstemp(""foo"");"
4014 $! Check for mkstemps
4017 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4018 $ WS "#include <stdlib.h>"
4020 $ WS "#include <stdio.h>"
4023 $ WS "mkstemps(""foo"", 1);"
4031 $! Check for mkdtemp
4034 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4035 $ WS "#include <stdlib.h>"
4037 $ WS "#include <stdio.h>"
4040 $ WS "mkdtemp(""foo"");"
4048 $! Check for setvbuf
4051 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4052 $ WS "#include <stdlib.h>"
4054 $ WS "#include <stdio.h>"
4058 $ WS "char Buffer[99];"
4059 $ WS "foo = fopen(""foo"", ""r"");"
4060 $ WS "setvbuf(foo, Buffer, 0, 0);"
4068 $! see if sfio.h is available
4069 $! see if sfio library is available
4070 $! Ok, but do we want to use it.
4071 $! IF F$TYPE(usesfio) .EQS. "" THEN usesfio = "undef"
4072 $! IF val .EQS. "define"
4074 $! IF usesfio .EQS. "define"
4078 $! echo "''package' can use the sfio library, but it is experimental."
4079 $! IF useperlio .EQS. "undef"
4081 $! echo "For sfio also the PerlIO abstraction layer is needed."
4082 $! echo "Earlier you said you would not want that."
4084 $! rp="You seem to have sfio available, do you want to try using it? [''dflt'] "
4086 $! IF ans .EQS. "" THEN ans = dflt
4089 $! echo "Ok, turning on both sfio and PerlIO, then."
4090 $! useperlio="define"
4093 $! echo "Ok, avoiding sfio this time. I'll use stdio instead."
4097 $! IF usesfio .EQS. "define"
4099 $! echo4 "Sorry, cannot find sfio on this machine."
4100 $! echo4 "Ignoring your setting of usesfio=''usesfio'."
4108 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4109 $ WS "#include <stdlib.h>"
4111 $ WS "#include <stdio.h>"
4114 $ WS "setenv(""FOO"", ""BAR"", 0);"
4122 $! Check for setproctitle
4125 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4126 $ WS "#include <stdlib.h>"
4128 $ WS "#include <stdio.h>"
4131 $ WS "setproctitle(""%s"", ""FOO"");"
4135 $ tmp = "setproctitle"
4137 $ d_setproctitle = tmp
4139 $! Check for <netinet/in.h>
4141 $ IF Has_Dec_C_Sockets .or. Has_Socketshr
4143 $ tmp = "netinet/in.h"
4150 $! Check for <netinet/tcp.h>
4152 $ IF Has_Dec_C_Sockets .or. Has_Socketshr
4154 $ tmp = "netinet/tcp.h"
4156 $ i_netinettcp = tmp
4158 $ i_netinettcp="undef"
4161 $! Check for endhostent
4163 $ IF Has_Dec_C_Sockets .or. Has_Socketshr
4166 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4167 $ WS "#include <stdlib.h>"
4169 $ WS "#include <stdio.h>"
4171 $ THEN WS "#include <socketshr.h>"
4172 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4176 $ WS "endhostent();"
4180 $ tmp = "endhostent"
4187 $! Check for endnetent
4189 $ IF Has_Dec_C_Sockets .or. Has_Socketshr
4192 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4193 $ WS "#include <stdlib.h>"
4195 $ WS "#include <stdio.h>"
4197 $ THEN WS "#include <socketshr.h>"
4198 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4213 $! Check for endprotoent
4215 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
4218 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4219 $ WS "#include <stdlib.h>"
4221 $ WS "#include <stdio.h>"
4223 $ THEN WS "#include <socketshr.h>"
4224 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4228 $ WS "endprotoent();"
4232 $ tmp = "endprotoent"
4239 $! Check for endservent
4241 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
4244 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4245 $ WS "#include <stdlib.h>"
4247 $ WS "#include <stdio.h>"
4249 $ THEN WS "#include <socketshr.h>"
4250 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4254 $ WS "endservent();"
4258 $ tmp = "endservent"
4265 $! Check for sethostent
4267 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
4270 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4271 $ WS "#include <stdlib.h>"
4273 $ WS "#include <stdio.h>"
4275 $ THEN WS "#include <socketshr.h>"
4276 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4280 $ WS "sethostent(1);"
4284 $ tmp = "sethostent"
4291 $! Check for setnetent
4293 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
4296 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4297 $ WS "#include <stdlib.h>"
4299 $ WS "#include <stdio.h>"
4301 $ THEN WS "#include <socketshr.h>"
4302 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4306 $ WS "setnetent(1);"
4317 $! Check for setprotoent
4319 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
4322 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4323 $ WS "#include <stdlib.h>"
4325 $ WS "#include <stdio.h>"
4327 $ THEN WS "#include <socketshr.h>"
4328 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4332 $ WS "setprotoent(1);"
4336 $ tmp = "setprotoent"
4343 $! Check for setservent
4345 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
4348 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4349 $ WS "#include <stdlib.h>"
4351 $ WS "#include <stdio.h>"
4353 $ THEN WS "#include <socketshr.h>"
4354 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4358 $ WS "setservent(1);"
4362 $ tmp = "setservent"
4369 $! Check for gethostent
4371 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
4374 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4375 $ WS "#include <stdlib.h>"
4377 $ WS "#include <stdio.h>"
4379 $ THEN WS "#include <socketshr.h>"
4380 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4384 $ WS "gethostent();"
4388 $ tmp = "gethostent"
4395 $! Check for getnetent
4397 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
4400 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4401 $ WS "#include <stdlib.h>"
4403 $ WS "#include <stdio.h>"
4405 $ THEN WS "#include <socketshr.h>"
4406 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4421 $! Check for getprotoent
4423 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
4426 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4427 $ WS "#include <stdlib.h>"
4429 $ WS "#include <stdio.h>"
4431 $ THEN WS "#include <socketshr.h>"
4432 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4436 $ WS "getprotoent();"
4440 $ tmp = "getprotoent"
4447 $! Check for getservent
4449 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
4452 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4453 $ WS "#include <stdlib.h>"
4455 $ WS "#include <stdio.h>"
4457 $ THEN WS "#include <socketshr.h>"
4458 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4462 $ WS "getservent();"
4466 $ tmp = "getservent"
4473 $! Check for socklen_t
4475 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
4477 $ echo4 "Checking to see if you have socklen_t..."
4479 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4480 $ WS "#include <stdlib.h>"
4482 $ WS "#include <stdio.h>"
4484 $ THEN WS "#include <socketshr.h>"
4485 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4489 $ WS "socklen_t x = 16;"
4494 $ IF compile_status .EQ. good_compile .AND. link_status .EQ. good_link
4496 $ d_socklen_t="define"
4497 $ echo "You have socklen_t."
4499 $ d_socklen_t="undef"
4500 $ echo "You do not have socklen_t."
4503 $ d_socklen_t="undef"
4506 $! Check for pthread_yield
4511 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4512 $ WS "#include <stdlib.h>"
4514 $ WS "#include <pthread.h>"
4515 $ WS "#include <stdio.h>"
4518 $ WS "pthread_yield();"
4522 $ tmp = "pthread_yield"
4524 $ d_pthread_yield = tmp
4526 $ d_pthread_yield="undef"
4529 $! Check for sched_yield
4534 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4535 $ WS "#include <stdlib.h>"
4537 $ WS "#include <pthread.h>"
4538 $ WS "#include <stdio.h>"
4541 $ WS "sched_yield();"
4545 $ tmp = "sched_yield"
4547 $ d_sched_yield = tmp
4548 $ IF d_sched_yield .EQS. "define"
4549 $ THEN sched_yield = "sched_yield"
4550 $ ELSE sched_yield = " "
4553 $ d_sched_yield="undef"
4557 $! Check for generic pointer size
4559 $ echo4 "Checking to see how big your pointers are..."
4561 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4562 $ WS "#include <stdlib.h>"
4564 $ WS "#include <stdio.h>"
4568 $ WS "foo = sizeof(char *);"
4569 $ WS "printf(""%d\n"", foo);"
4574 $ GOSUB type_size_check
4576 $ echo "Your pointers are ''ptrsize' bytes long."
4578 $! Check for size_t size
4582 $ echo4 "Checking the size of ''zzz'..."
4583 $ GOSUB type_size_check
4585 $ echo "Your ''zzz' size is ''sizesize' bytes."
4587 $! Check rand48 and its ilk
4589 $ echo4 "Looking for a random number function..."
4591 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4592 $ WS "#include <stdlib.h>"
4594 $ WS "#include <stdio.h>"
4597 $ WS "srand48(12L);"
4602 $ IF compile_status .EQ. good_compile .AND. link_status .EQ. good_link
4604 $ drand01 = "drand48()"
4605 $ randseedtype = "long int"
4606 $ seedfunc = "srand48"
4607 $ echo4 "Good, found drand48()."
4608 $ d_drand48proto = "define"
4610 $ d_drand48proto = "undef"
4611 $ drand01="random()"
4612 $ randseedtype = "unsigned"
4613 $ seedfunc = "srandom"
4615 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4616 $ WS "#include <stdlib.h>"
4618 $ WS "#include <stdio.h>"
4626 $ IF compile_status .EQ. good_compile .AND. link_status .EQ. good_link
4628 $ echo4 "OK, found random()."
4630 $ drand01="(((float)rand())*MY_INV_RAND_MAX)"
4631 $ randseedtype = "unsigned"
4632 $ seedfunc = "srand"
4633 $ echo4 "Yick, looks like I have to use rand()."
4636 $! Done with compiler checks. Clean up.
4637 $ IF F$SEARCH("try.c") .NES."" THEN DELETE/NOLOG/NOCONFIRM try.c;*
4638 $ IF F$SEARCH("try.obj").NES."" THEN DELETE/NOLOG/NOCONFIRM try.obj;*
4639 $ IF F$SEARCH("try.exe").NES."" THEN DELETE/NOLOG/NOCONFIRM try.exe;*
4640 $ IF F$SEARCH("try.opt").NES."" THEN DELETE/NOLOG/NOCONFIRM try.opt;*
4641 $ IF F$SEARCH("try.out").NES."" THEN DELETE/NOLOG/NOCONFIRM try.out;*
4642 $ IF ccname .EQS. "CXX"
4644 $ CALL Cxx_demangler_cleanup
4647 $! Some that are compiler or VMS version sensitive
4650 $ IF ccname .EQS. "GCC"
4652 $ d_attribut="define"
4656 $ d_attribut="undef"
4659 $! Dec C >= 5.2 and VMS ver >= 7.0
4660 $ IF (ccname .EQS. "DEC") .AND. -
4661 (F$INTEGER(Dec_C_Version).GE.50200000) .AND. (vms_ver .GES. "7.0")
4664 $ d_getitimer="define"
4665 $ d_gettimeod="define"
4667 $ d_mprotect="define"
4673 $ d_setitimer="define"
4674 $ d_sigaction="define"
4675 $ d_sigprocmask="define"
4676 $ d_truncate="define"
4680 $ 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"
4681 $ psnwc1="""ZERO"",""HUP"",""INT"",""QUIT"",""ILL"",""TRAP"",""IOT"",""EMT"",""FPE"",""KILL"",""BUS"",""SEGV"",""SYS"","
4682 $ psnwc2="""PIPE"",""ALRM"",""TERM"",""ABRT"",""USR1"",""USR2"",""SPARE18"",""SPARE19"",""CHLD"",""CONT"",""STOP"",""TSTP"","
4683 $ psnwc3="""TTIN"",""TTOU"",""DEBUG"",""SPARE27"",""SPARE28"",""SPARE29"",""SPARE30"",""SPARE31"",""SPARE32"",""RTMIN"",""RTMAX"",0"
4684 $ sig_name_init = psnwc1 + psnwc2 + psnwc3
4685 $ 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"
4686 $ 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"
4687 $! perl_sig_num_with_commas=sig_num_init
4690 $ d_pathconf="define"
4691 $ d_fpathconf="define"
4692 $ d_sysconf="define"
4693 $ d_sigsetjmp="define"
4695 $ pidtype="unsigned int"
4697 $ d_getitimer="undef"
4698 $ d_gettimeod="undef"
4700 $ d_mprotect="undef"
4706 $ d_setitimer="undef"
4707 $ d_sigaction="undef"
4708 $ d_sigprocmask="undef"
4709 $ d_truncate="undef"
4712 $ sig_name="ZERO HUP INT QUIT ILL TRAP IOT EMT FPE KILL BUS SEGV SYS PIPE ALRM TERM ABRT USR1 USR2"",0"
4713 $ psnwc1="""ZERO"",""HUP"",""INT"",""QUIT"",""ILL"",""TRAP"",""IOT"",""EMT"",""FPE"",""KILL"",""BUS"",""SEGV"",""SYS"","
4714 $ psnwc2="""PIPE"",""ALRM"",""TERM"",""ABRT"",""USR1"",""USR2"",0"
4715 $ sig_name_init = psnwc1 + psnwc2
4716 $ sig_num="0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 6 16 17"",0"
4717 $ sig_num_init="0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,6,16,17,0"
4718 $! perl_sig_num_with_commas=sig_num_init
4720 $ uidtype="unsigned int"
4721 $ d_pathconf="undef"
4722 $ d_fpathconf="undef"
4724 $ d_sigsetjmp="undef"
4726 $!: see if tzname[] exists
4728 $ WS "#include <stdio.h>"
4729 $ WS "#include <time.h>"
4730 $ WS "int main() { extern short tzname[]; printf(""%hd"", tzname[0]); }"
4733 $ IF compile_status .EQ. good_compile
4735 $ d_tzname = "undef"
4736 $ echo4 "tzname[] NOT found."
4738 $ d_tzname = "define"
4739 $ echo4 "tzname[] found."
4741 $ IF F$SEARCH("try.obj") .NES. "" THEN DELETE/NOLOG/NOCONFIRM try.obj;
4743 $ IF d_gethname .EQS. "undef" .AND. d_uname .EQS. "undef"
4745 $ d_phostname="define"
4747 $ d_phostname="undef"
4751 $ IF ccname .EQS. "DEC"
4753 $ d_mbstowcs="define"
4755 $ d_stdiobase="define"
4756 $ d_stdio_cnt_lval="define"
4757 $ d_stdio_ptr_lval="define"
4758 $ d_stdstdio="define"
4759 $ d_wcstombs="define"
4762 $ d_strcoll="define"
4763 $ d_strxfrm="define"
4766 $ i_langinfo="define"
4767 $ d_locconv="define"
4768 $ IF vms_ver .GES. "6.2"
4770 $ d_nl_langinfo="define"
4772 $ d_nl_langinfo="undef"
4774 $ d_setlocale="define"
4775 $ vms_cc_type="decc"
4777 $ d_mbstowcs="undef"
4779 $ d_stdiobase="undef"
4780 $ d_stdio_cnt_lval="undef"
4781 $ d_stdio_ptr_lval="undef"
4782 $ d_stdstdio="undef"
4783 $ d_wcstombs="undef"
4790 $ i_langinfo="undef"
4792 $ d_nl_langinfo="undef"
4793 $ d_setlocale="undef"
4795 $ d_stdio_ptr_lval_sets_cnt="undef"
4796 $ d_stdio_ptr_lval_nochange_cnt="define"
4799 $ if Has_Socketshr .OR. Has_Dec_C_Sockets
4801 $ d_vms_do_sockets="define"
4805 $ netdb_hlen_type="int"
4806 $ netdb_host_type="char *"
4807 $ netdb_name_type="char *"
4808 $ netdb_net_type="long"
4809 $ d_gethbyaddr="define"
4810 $ d_gethbyname="define"
4811 $ d_getnbyaddr="define"
4812 $ d_getnbyname="define"
4813 $ d_getpbynumber="define"
4814 $ d_getpbyname="define"
4815 $ d_getsbyport="define"
4816 $ d_getsbyname="define"
4817 $ d_gethostprotos="define"
4818 $ d_getnetprotos="define"
4819 $ d_getprotoprotos="define"
4820 $ d_getservprotos="define"
4821 $ IF ccname .EQS. "DEC" .OR. ccname .EQS. "CXX"
4823 $ socksizetype="unsigned int"
4825 $ socksizetype="int *"
4828 $ d_vms_do_sockets="undef"
4832 $ netdb_hlen_type="int"
4833 $ netdb_host_type="char *"
4834 $ netdb_name_type="char *"
4835 $ netdb_net_type="long"
4836 $ d_gethbyaddr="undef"
4837 $ d_gethbyname="undef"
4838 $ d_getnbyaddr="undef"
4839 $ d_getnbyname="undef"
4840 $ d_getpbynumber="undef"
4841 $ d_getpbyname="undef"
4842 $ d_getsbyport="undef"
4843 $ d_getsbyname="undef"
4844 $ d_gethostprotos="undef"
4845 $ d_getnetprotos="undef"
4846 $ d_getprotoprotos="undef"
4847 $ d_getservprotos="undef"
4848 $ socksizetype="undef"
4853 $ usethreads="define"
4854 $ d_pthreads_created_joinable="define"
4855 $ if (vms_ver .GES. "7.0")
4857 $ d_oldpthreads="undef"
4859 $ d_oldpthreads="define"
4862 $ d_oldpthreads="undef"
4863 $ usethreads="undef"
4864 $ d_pthreads_created_joinable="undef"
4867 $! new (5.005_62++) typedefs for primitives
4869 $ echo "Choosing the C types to be used for Perl's internal types..."
4871 $ uvtype="unsigned long"
4873 $ u8type="unsigned char"
4875 $ u16type="unsigned short"
4877 $ u32type="unsigned int"
4878 $ i64type="long long"
4879 $ u64type="unsigned long long"
4882 $ IF use64bitint .OR. use64bitint .EQS. "define"
4884 $ ivtype = "''i64type'"
4885 $ uvtype = "''u64type'"
4886 $ nvtype="long double"
4893 $ GOSUB type_size_check
4895 $ IF use64bitint .OR. use64bitint .EQS. "define" THEN i64size = tmp
4896 $ IF ivtype .eqs. "long"
4897 $ THEN longsize = tmp
4900 $ GOSUB type_size_check
4905 $ GOSUB type_size_check
4907 $ IF use64bitint .OR. use64bitint .EQS. "define" THEN u64size = tmp
4910 $ GOSUB type_size_check
4914 $ GOSUB type_size_check
4917 $ tmp = "''i16type'"
4918 $ GOSUB type_size_check
4920 $ IF i16type .eqs. "short"
4921 $ THEN shortsize = tmp
4924 $ gosub type_size_check
4928 $ tmp = "''u16type'"
4929 $ GOSUB type_size_check
4932 $ tmp = "''i32type'"
4933 $ GOSUB type_size_check
4935 $ IF i32type .eqs. "int"
4936 $ THEN intsize = tmp
4939 $ gosub type_size_check
4943 $ tmp = "''u32type'"
4944 $ gosub type_size_check
4948 $ GOSUB type_size_check
4951 $ echo "(IV will be ""''ivtype'"", ''ivsize' bytes)"
4952 $ echo "(UV will be ""''uvtype'"", ''uvsize' bytes)"
4953 $ echo "(NV will be ""''nvtype'"", ''nvsize' bytes)"
4955 $ echo4 "Checking whether your NVs can preserve your UVs..."
4957 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4958 $ WS "#include <stdlib.h>"
4960 $ WS "#include <stdio.h>"
4962 $ WS " ''uvtype' k = (''uvtype')~0, l;"
4963 $ WS " ''nvtype' d;"
4965 $ WS " d = (''nvtype')l;"
4966 $ WS " l = (''uvtype')d;"
4968 $ WS " printf(""preserve\n"");"
4973 $ IF tmp .EQS. "preserve"
4975 $ d_nv_preserves_uv = "define"
4976 $ echo "Yes, they can."
4977 $ nv_preserves_uv_bits = F$STRING(F$INTEGER(uvsize) * 8)
4979 $ d_nv_preserves_uv = "undef"
4980 $ echo "No, they can't."
4981 $ echo4 "Checking how many bits of your UVs your NVs can preserve..."
4983 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4984 $ WS "#include <stdlib.h>"
4986 $ WS "#include <stdio.h>"
4988 $ WS " ''uvtype' u = 0;"
4989 $ WS " int n = 8 * ''uvsize';"
4991 $ WS " for (i = 0; i < n; i++) {"
4992 $ WS " u = u << 1 | (''uvtype')1;"
4993 $ WS " if ((''uvtype')(''nvtype')u != u)"
4996 $ WS " printf(""%d\n"", i);"
5001 $ nv_preserves_uv_bits = tmp
5004 $ echo4 "Checking if kill() uses SYS$FORCEX or can't be called from a signal handler..."
5005 $ kill_by_sigprc = "undef"
5007 $ WS "#include <stdio.h>"
5008 $ WS "#include <signal.h>"
5009 $ WS "#include <unistd.h>"
5010 $ WS "void handler1(int s) { printf(""%d"",s); kill(getpid(),2); }"
5011 $ WS "void handler2(int s) { printf(""%d"",s); }"
5013 $ WS " printf(""0"");"
5014 $ WS " signal(1,handler1);"
5015 $ WS " signal(2,handler2);"
5016 $ WS " kill(getpid(),1);"
5018 $ WS " printf(""\n"");"
5021 $ ON ERROR THEN CONTINUE
5023 $ IF tmp .NES. "012"
5025 $ echo4 "Yes, it has at least one of those limitations."
5026 $ echo4 "Checking whether we can use SYS$SIGPRC instead..."
5028 $ WS "#include <stdio.h>"
5029 $ WS "#include <lib$routines.h>"
5030 $ WS "unsigned long code = 0;"
5031 $ WS "int handler(unsigned long *args) {"
5032 $ WS " code = args[1];"
5036 $ WS " int iss, sys$sigprc();"
5037 $ WS " lib$establish(handler);"
5038 $ WS " iss = sys$sigprc(0,0,0x1234);"
5039 $ WS " iss = ((iss&1)==1 && code == 0x1234);"
5040 $ WS " printf(""%d\n"",iss);"
5046 $ echo4 "Yep, we can."
5047 $ kill_by_sigprc = "define"
5049 $! since SIGBUS and SIGSEGV indistinguishable, make them the same here.
5050 $! sigusr1 and sigusr2 show up in VMS6.2 and later
5052 $ if vms_ver .GES. "6.2"
5054 $ sig_name="ZERO HUP INT QUIT ILL TRAP IOT EMT FPE KILL BUS SEGV SYS PIPE ALRM TERM ABRT USR1 USR2"",0"
5055 $ psnwc1="""ZERO"",""HUP"",""INT"",""QUIT"",""ILL"",""TRAP"",""IOT"",""EMT"",""FPE"",""KILL"",""BUS"",""SEGV"",""SYS"","
5056 $ psnwc2="""PIPE"",""ALRM"",""TERM"",""ABRT"",""USR1"",""USR2"",0"
5057 $ sig_name_init = psnwc1 + psnwc2
5058 $ sig_num="0 1 2 3 4 5 6 7 8 9 10 10 12 13 14 15 6 16 17"",0"
5059 $ sig_num_init="0,1,2,3,4,5,6,7,8,9,10,10,12,13,14,15,6,16,17,0"
5062 $ sig_name="ZERO HUP INT QUIT ILL TRAP IOT EMT FPE KILL BUS SEGV SYS PIPE ALRM TERM ABRT"",0"
5063 $ psnwc1="""ZERO"",""HUP"",""INT"",""QUIT"",""ILL"",""TRAP"",""IOT"",""EMT"",""FPE"",""KILL"",""BUS"",""SEGV"",""SYS"","
5064 $ psnwc2="""PIPE"",""ALRM"",""TERM"",""ABRT"",0"
5065 $ sig_name_init = psnwc1 + psnwc2
5066 $ sig_num="0 1 2 3 4 5 6 7 8 9 10 10 12 13 14 15 6"",0"
5067 $ sig_num_init="0,1,2,3,4,5,6,7,8,9,10,10,12,13,14,15,6,0"
5071 $ echo4 "Nope, we can't."
5074 $ echo4 "Nope, it doesn't."
5078 $! Finally the composite ones. All config
5080 $ myuname="''osname' ''myname' ''osvers' ''F$EDIT(hwname, "TRIM")'"
5082 $ IF ccname .EQS. "DEC"
5084 $ ccflags="/Include=[]/Standard=Relaxed_ANSI/Prefix=All/Obj=''obj_ext' ''ccflags'"
5086 $ i_dirent = "undef"
5087 $ IF ccname .EQS. "CXX"
5089 $ i_dirent = "define"
5090 $ ccflags="/Include=[]/Standard=ANSI/Prefix=All/Obj=''obj_ext' ''ccflags'"
5092 $ IF use_vmsdebug_perl
5094 $ optimize="/List/Debug/NoOpt"
5095 $ ldflags="/Debug/Trace/Map"
5098 $ optimize= "/NoList"
5099 $ ldflags="/NoTrace/NoMap"
5103 $! Okay, we've got everything configured. Now go write out a config.sh.
5104 $ basename_config_sh = F$PARSE(config_sh,,,"NAME",)+F$PARSE(config_sh,,,"TYPE",)
5105 $ echo4 "Creating ''basename_config_sh'..."
5106 $ open/write CONFIG 'config_sh'
5107 $ WC := write CONFIG
5109 $! ##BEGIN WRITE NEW CONSTANTS HERE##
5113 $ WC "# This file was produced by Configure.COM on a ''osname' system."
5115 $ WC "# Package name : ''package'"
5116 $ WC "# Source directory : ''src'"
5117 $ WC "# Configuration time: " + cf_time
5118 $ WC "# Configuration by : " + cf_by
5119 $ WC "# Target system : " + myuname
5121 $ WC "CONFIG='true'"
5122 $ WC "Makefile_SH='" + Makefile_SH + "'"
5123 $ WC "Mcc='" + Mcc + "'"
5124 $ WC "PERL_REVISION='" + revision + "'"
5125 $ WC "PERL_VERSION='" + patchlevel + "'"
5126 $ WC "PERL_SUBVERSION='" + subversion + "'"
5127 $ WC "PERL_API_VERSION='" + api_version + "'"
5128 $ WC "PERL_API_SUBVERSION='" + api_subversion + "'"
5129 $ WC "_a='" + lib_ext + "'"
5130 $ WC "_exe='" + exe_ext + "'"
5131 $ WC "_o='" + obj_ext + "'"
5132 $ WC "alignbytes='" + alignbytes + "'"
5133 $ WC "aphostname='write sys$output f$edit(f$getsyi(\""SCSNODE\""),\""TRIM,LOWERCASE\"")'"
5135 $ WC "archlib='" + archlib + "'"
5136 $ WC "archlibexp='" + archlibexp + "'"
5137 $ WC "archname='" + archname + "'"
5138 $ WC "baserev='" + baserev + "'"
5139 $ WC "bin='" + bin + "'"
5140 $ WC "binexp='" + binexp + "'"
5141 $ WC "builddir='" + builddir + "'"
5142 $ WC "byteorder='1234'"
5143 $ WC "castflags='0'"
5144 $ WC "cc='" + perl_cc + "'"
5145 $ WC "cccdlflags='" + cccdlflags + "'"
5146 $ WC "ccdlflags='" + ccdlflags + "'"
5147 $ WC "ccflags='" + ccflags + "'"
5148 $ WC "ccname='" + ccname + "'"
5149 $ WC "ccversion='" + ccversion + "'"
5150 $ WC "cf_by='" + cf_by + "'"
5151 $ WC "cf_email='" + cf_email + "'"
5152 $ WC "cf_time='" + cf_time + "'"
5153 $ WC "config_args='" + config_args + "'"
5154 $ WC "config_sh='" + config_sh + "'"
5155 $ WC "cpp_stuff='" + cpp_stuff + "'"
5156 $ WC "cpplast='" + cpplast + "'"
5157 $ WC "cppminus='" + cppminus + "'"
5158 $ WC "cpprun='" + cpprun + "'"
5159 $ WC "cppstdin='" + cppstdin + "'"
5160 $ IF use64bitint .OR. use64bitint .EQS. "define"
5162 $! gcvt() does not work for > 16 decimal places; fallback to sprintf
5163 $ WC "d_Gconvert='sprintf((b),""%.*" + (nvgformat-"""") + ",(n),(x))'"
5165 $ WC "d_Gconvert='my_gconvert(x,n,t,b)'"
5167 $ WC "d_PRIEldbl='" + d_PRIEUldbl + "'"
5168 $ WC "d_PRIFldbl='" + d_PRIFUldbl + "'"
5169 $ WC "d_PRIGldbl='" + d_PRIGUldbl + "'"
5170 $ WC "d_PRIXU64='" + d_PRIXU64 + "'"
5171 $ WC "d_PRId64='" + d_PRId64 + "'"
5172 $ WC "d_PRIeldbl='" + d_PRIeldbl + "'"
5173 $ WC "d_PRIfldbl='" + d_PRIfldbl + "'"
5174 $ WC "d_PRIgldbl='" + d_PRIgldbl + "'"
5175 $ WC "d_PRIo64='" + d_PRIo64 + "'"
5176 $ WC "d_PRIu64='" + d_PRIu64 + "'"
5177 $ WC "d_PRIx64='" + d_PRIx64 + "'"
5178 $ WC "d_SCNfldbl='" + d_SCNfldbl + "'"
5179 $ WC "d__fwalk='undef'"
5180 $ WC "d_access='" + d_access + "'"
5181 $ WC "d_accessx='undef'"
5182 $ WC "d_alarm='define'"
5183 $ WC "d_archlib='define'"
5184 $ WC "d_atolf='" + d_atolf + "'"
5185 $ WC "d_atoll='" + d_atoll + "'"
5186 $ WC "d_attribut='" + d_attribut + "'"
5187 $ WC "d_bcmp='" + d_bcmp + "'"
5188 $ WC "d_bcopy='" + d_bcopy + "'"
5189 $ WC "d_bincompat3='undef'"
5190 $! WC "d_bsdpgrp='undef'"
5191 $ WC "d_bsdgetpgrp='undef'"
5192 $ WC "d_bsdsetpgrp='undef'"
5193 $ WC "d_bzero='" + d_bzero + "'"
5194 $ WC "d_casti32='define'"
5195 $ WC "d_castneg='define'"
5196 $ WC "d_charvspr='undef'"
5197 $ WC "d_chown='define'"
5198 $ WC "d_chroot='undef'"
5199 $ WC "d_chsize='undef'"
5200 $ WC "d_class='undef'"
5201 $ WC "d_cmsghdr_s='undef'"
5202 $ WC "d_const='define'"
5203 $ WC "d_crypt='define'"
5204 $ WC "d_csh='undef'"
5205 $ WC "d_cuserid='define'"
5206 $ WC "d_dbl_dig='define'"
5207 $ WC "d_dbminitproto='undef'"
5208 $ WC "d_difftime='define'"
5209 $ WC "d_dirfd='undef'"
5210 $ WC "d_dirnamlen='define'"
5211 $ WC "d_dlerror='undef'"
5212 $ WC "d_dlsymun='undef'"
5213 $ WC "d_dosuid='undef'"
5214 $ WC "d_drand48proto='" + d_drand48proto + "'"
5215 $ WC "d_dup2='define'"
5216 $ WC "d_eaccess='undef'"
5217 $ WC "d_endgrent='define'"
5218 $ WC "d_endhent='" + d_endhent + "'"
5219 $ WC "d_endnent='" + d_endnent + "'"
5220 $ WC "d_endpent='" + d_endpent + "'"
5221 $ WC "d_endpwent='define'"
5222 $ WC "d_endsent='" + d_endsent + "'"
5223 $ WC "d_eofnblk='undef'"
5224 $ WC "d_eunice='undef'"
5225 $ WC "d_fchmod='undef'"
5226 $ WC "d_fchdir='undef'"
5227 $ WC "d_fchown='undef'"
5228 $ WC "d_fcntl='" + d_fcntl + "'"
5229 $ WC "d_fcntl_can_lock='" + d_fcntl_can_lock + "'"
5230 $ WC "d_fd_set='" + d_fd_set + "'"
5231 $ WC "d_fgetpos='define'"
5232 $ WC "d_finite='undef'"
5233 $ WC "d_finitel='undef'"
5234 $ WC "d_flexfnam='define'"
5235 $ WC "d_flock='undef'"
5236 $ WC "d_flockproto='undef'"
5237 $ WC "d_fork='undef'"
5238 $ WC "d_fp_class='undef'"
5239 $ WC "d_fpathconf='" + d_fpathconf + "'"
5240 $ WC "d_fpclass='undef'"
5241 $ WC "d_fpclassify='undef'"
5242 $ WC "d_fpclassl='undef'"
5243 $ WC "d_fpos64_t='" + d_fpos64_t + "'"
5244 $ WC "d_frexpl='" + d_frexpl + "'"
5245 $ WC "d_fs_data_s='undef'"
5246 $ WC "d_fseeko='undef'"
5247 $ WC "d_fsetpos='define'"
5248 $ WC "d_fstatfs='undef'"
5249 $ WC "d_fstatvfs='undef'"
5250 $ WC "d_fsync='undef'"
5251 $ WC "d_ftello='undef'"
5252 $ WC "d_getcwd='define'"
5253 $ WC "d_getespwnam='undef'"
5254 $ WC "d_getfsstat='undef'"
5255 $ WC "d_getgrent='define'"
5256 $ WC "d_getgrps='undef'"
5257 $ WC "d_gethbyaddr='" + d_gethbyaddr + "'"
5258 $ WC "d_gethbyname='" + d_gethbyname + "'"
5259 $ WC "d_gethent='" + d_gethent + "'"
5260 $ WC "d_gethname='" + d_gethname + "'"
5261 $ WC "d_gethostprotos='" + d_gethostprotos + "'"
5262 $ WC "d_getitimer='" + d_getitimer + "'"
5263 $ WC "d_getlogin='define'"
5264 $ WC "d_getmnt='undef'"
5265 $ WC "d_getmntent='undef'"
5266 $ WC "d_getnbyaddr='" + d_getnbyaddr + "'"
5267 $ WC "d_getnbyname='" + d_getnbyname + "'"
5268 $ WC "d_getnent='" + d_getnent + "'"
5269 $ WC "d_getnetprotos='" + d_getnetprotos + "'"
5270 $ WC "d_getpagsz='undef'"
5271 $ WC "d_getpbyname='" + d_getpbyname + "'"
5272 $ WC "d_getpbynumber='" + d_getpbynumber + "'"
5273 $ WC "d_getpent='" + d_getpent + "'"
5274 $ WC "d_getpgid='undef'"
5275 $ WC "d_getpgrp2='undef'"
5276 $ WC "d_getpgrp='undef'"
5277 $ WC "d_getppid='" + d_getppid + "'"
5278 $ WC "d_getprior='undef'"
5279 $ WC "d_getprotoprotos='" + d_getprotoprotos + "'"
5280 $ WC "d_getprpwnam='undef'"
5281 $ WC "d_getpwent='define'"
5282 $ WC "d_getsbyname='" + d_getsbyname + "'"
5283 $ WC "d_getsbyport='" + d_getsbyport + "'"
5284 $ WC "d_getsent='" + d_getsent + "'"
5285 $ WC "d_getservprotos='" + d_getservprotos + "'"
5286 $ WC "d_getspnam='undef'"
5287 $ WC "d_gettimeod='" + d_gettimeod + "'"
5288 $ WC "d_gnulibc='undef'"
5289 $ WC "d_grpasswd='undef'"
5290 $ WC "d_hasmntopt='undef'"
5291 $ WC "d_htonl='" + d_htonl + "'"
5292 $ WC "d_index='" + d_index + "'"
5293 $ WC "d_inetaton='undef'"
5294 $ WC "d_int64_t='" + d_int64_t + "'"
5295 $ WC "d_isascii='define'"
5296 $ WC "d_isfinite='undef'"
5297 $ WC "d_isinf='undef'"
5298 $ WC "d_isnan='" + d_isnan + "'"
5299 $ WC "d_isnanl='" + d_isnanl + "'"
5300 $ WC "d_killpg='undef'"
5301 $ WC "d_lchown='undef'"
5302 $ WC "d_ldbl_dig='define'"
5303 $ WC "d_link='undef'"
5304 $ WC "d_llseek='undef'"
5305 $ WC "d_locconv='" + d_locconv + "'"
5306 $ WC "d_lockf='undef'"
5307 $ WC "d_longdbl='" + d_longdbl + "'"
5308 $ WC "d_longlong='" + d_longlong + "'"
5309 $ WC "d_lseekproto='define'"
5310 $ WC "d_lstat='undef'"
5311 $ WC "d_madvise='undef'"
5312 $ WC "d_mblen='" + d_mblen + "'"
5313 $ WC "d_mbstowcs='" + d_mbstowcs + "'"
5314 $ WC "d_mbtowc='" + d_mbtowc + "'"
5315 $ WC "d_memchr='" + d_memchr + "'"
5316 $ WC "d_memcmp='define'"
5317 $ WC "d_memcpy='define'"
5318 $ WC "d_memmove='define'"
5319 $ WC "d_memset='define'"
5320 $ WC "d_mkdir='define'"
5321 $ WC "d_mkdtemp='" + d_mkdtemp + "'"
5322 $ WC "d_mkfifo='undef'"
5323 $ WC "d_mknod='undef'"
5324 $ WC "d_mkstemp='" + d_mkstemp + "'"
5325 $ WC "d_mkstemps='" + d_mkstemps + "'"
5326 $ WC "d_mktime='" + d_mktime + "'"
5327 $ WC "d_mmap='" + d_mmap + "'"
5328 $ WC "d_modfl='" + d_modfl + "'"
5329 $ WC "d_modflproto='" + d_modflproto + "'"
5330 $ WC "d_modfl_pow32_bug='undef'"
5331 $ WC "d_mprotect='" + d_mprotect + "'"
5332 $ WC "d_msg='undef'"
5333 $ WC "d_msg_ctrunc='undef'"
5334 $ WC "d_msg_dontroute='undef'"
5335 $ WC "d_msg_oob='undef'"
5336 $ WC "d_msg_peek='undef'"
5337 $ WC "d_msg_proxy='undef'"
5338 $ WC "d_msghdr_s='undef'"
5339 $ WC "d_msync='" + d_msync + "'"
5340 $ WC "d_munmap='" + d_munmap + "'"
5341 $ WC "d_mymalloc='" + d_mymalloc + "'"
5342 $ WC "d_nice='define'"
5343 $ WC "d_nl_langinfo='" + d_nl_langinfo + "'"
5344 $ WC "d_nv_preserves_uv='" + d_nv_preserves_uv + "'"
5345 $ WC "nv_preserves_uv_bits='" + nv_preserves_uv_bits + "'"
5346 $ WC "d_off64_t='" + d_off64_t + "'"
5347 $ WC "d_old_pthread_create_joinable='" + d_old_pthread_create_joinable + "'"
5348 $ WC "d_oldarchlib='define'"
5349 $ WC "d_oldpthreads='" + d_oldpthreads + "'"
5350 $ WC "d_open3='define'"
5351 $ WC "d_pathconf='" + d_pathconf + "'"
5352 $ WC "d_pause='define'"
5353 $ WC "d_perl_otherlibdirs='undef'"
5354 $ WC "d_phostname='" + d_phostname + "'"
5355 $ WC "d_pipe='define'"
5356 $ WC "d_poll='undef'"
5357 $ WC "d_procselfexe='undef'"
5358 $ WC "d_pthread_atfork='undef'"
5359 $ WC "d_pthread_yield='" + d_pthread_yield + "'"
5360 $ WC "d_pthreads_created_joinable='" + d_pthreads_created_joinable + "'"
5361 $ WC "d_pwage='undef'"
5362 $ WC "d_pwchange='undef'"
5363 $ WC "d_pwclass='undef'"
5364 $ WC "d_pwcomment='define'"
5365 $ WC "d_pwexpire='undef'"
5366 $ WC "d_pwgecos='define'"
5367 $ WC "d_pwpasswd='define'"
5368 $ WC "d_pwquota='undef'"
5369 $ WC "d_qgcvt='undef'"
5370 $ WC "d_quad='" + d_quad + "'"
5371 $ WC "d_readdir='define'"
5372 $ WC "d_readlink='undef'"
5373 $ WC "d_readv='undef'"
5374 $ WC "d_realpath='undef'"
5375 $ WC "d_recvmsg='undef'"
5376 $ WC "d_rename='define'"
5377 $ WC "d_rewinddir='define'"
5378 $ WC "d_rmdir='define'"
5379 $ WC "d_safebcpy='undef'"
5380 $ WC "d_safemcpy='define'"
5381 $ WC "d_sanemcmp='define'"
5382 $ WC "d_sbrkproto='define'"
5383 $ WC "d_sched_yield='" + d_sched_yield + "'"
5384 $ WC "d_scm_rights='undef'"
5385 $ WC "d_seekdir='define'"
5386 $ WC "d_select='" + d_select + "'"
5387 $ WC "d_sem='undef'"
5388 $ WC "d_semctl_semid_ds='undef'"
5389 $ WC "d_semctl_semun='undef'"
5390 $ WC "d_sendmsg='undef'"
5391 $ WC "d_setegid='undef'"
5392 $ WC "d_setenv='" + d_setenv + "'"
5393 $ WC "d_seteuid='undef'"
5394 $ WC "d_setgrent='undef'"
5395 $ WC "d_setgrps='undef'"
5396 $ WC "d_sethent='" + d_sethent + "'"
5397 $ WC "d_setitimer='" + d_setitimer + "'"
5398 $ WC "d_setlinebuf='undef'"
5399 $ WC "d_setlocale='" + d_setlocale + "'"
5400 $ WC "d_setnent='" + d_setnent + "'"
5401 $ WC "d_setpent='" + d_setpent + "'"
5402 $ WC "d_setpgid='undef'"
5403 $ WC "d_setpgrp2='undef'"
5404 $ WC "d_setpgrp='undef'"
5405 $ WC "d_setprior='undef'"
5406 $ WC "d_setproctitle='" + d_setproctitle + "'"
5407 $ WC "d_setpwent='define'"
5408 $ WC "d_setregid='undef'"
5409 $ WC "d_setresgid='undef'"
5410 $ WC "d_setresuid='undef'"
5411 $ WC "d_setreuid='undef'"
5412 $ WC "d_setrgid='undef'"
5413 $ WC "d_setruid='undef'"
5414 $ WC "d_setsent='" + d_setsent + "'"
5415 $ WC "d_setsid='undef'"
5416 $ WC "d_setvbuf='" + d_setvbuf + "'"
5417 $ WC "d_sfio='undef'"
5418 $ WC "d_shm='undef'"
5419 $ WC "d_shmatprototype='undef'"
5420 $ WC "d_sigaction='" + d_sigaction + "'"
5421 $ WC "d_sigprocmask='" + d_sigprocmask + "'"
5422 $ WC "d_sigsetjmp='" + d_sigsetjmp + "'"
5423 $ WC "d_sockatmark='undef'"
5424 $ WC "d_sockatmarkproto='undef'"
5425 $ WC "d_socket='" + d_socket + "'"
5426 $ WC "d_socklen_t='" + d_socklen_t + "'"
5427 $ WC "d_sockpair='undef'"
5428 $ WC "d_socks5_init='undef'"
5429 $ WC "d_sqrtl='define'"
5430 $ WC "d_sresgproto='undef'"
5431 $ WC "d_sresgproto='undef'"
5432 $ WC "d_sresproto='undef'"
5433 $ WC "d_sresuproto='undef'"
5434 $ WC "d_statblks='undef'"
5435 $ WC "d_statfs_f_flags='undef'"
5436 $ WC "d_statfs_s='undef'"
5437 $ WC "d_statfsflags='undef'"
5438 $ WC "d_stdio_cnt_lval='" + d_stdio_cnt_lval + "'"
5439 $ WC "d_stdio_ptr_lval='" + d_stdio_ptr_lval + "'"
5440 $ WC "d_stdio_ptr_lval_nochange_cnt='" + d_stdio_ptr_lval_nochange_cnt + "'"
5441 $ WC "d_stdio_ptr_lval_sets_cnt='" + d_stdio_ptr_lval_sets_cnt + "'"
5442 $ WC "d_stdio_stream_array='undef'"
5443 $ WC "d_stdiobase='" + d_stdiobase + "'"
5444 $ WC "d_stdstdio='" + d_stdstdio + "'"
5445 $ WC "d_strchr='define'"
5446 $ WC "d_strcoll='" + d_strcoll + "'"
5447 $ WC "d_strctcpy='define'"
5448 $ WC "d_strerrm='strerror((e),vaxc$errno)'"
5449 $ WC "d_strerror='define'"
5450 $ WC "d_strftime='define'"
5451 $ WC "d_strtod='define'"
5452 $ WC "d_strtol='define'"
5453 $ WC "d_strtold='" + d_strtold + "'"
5454 $ WC "d_strtoll='" + d_strtoll + "'"
5455 $ WC "d_strtoq='define'"
5456 $ WC "d_strtoul='define'"
5457 $ WC "d_strtoull='" + d_strtoull + "'"
5458 $ WC "d_strtouq='" + d_strtouq + "'"
5459 $ WC "d_strxfrm='" + d_strxfrm + "'"
5460 $ WC "d_suidsafe='undef'"
5461 $ WC "d_symlink='undef'"
5462 $ WC "d_syscall='undef'"
5463 $ WC "d_syscallproto='undef'"
5464 $ WC "d_sysconf='" + d_sysconf + "'"
5465 $ WC "d_syserrlst='undef'"
5466 $ WC "d_system='define'"
5467 $ WC "d_tcgetpgrp='undef'"
5468 $ WC "d_tcsetpgrp='undef'"
5469 $ WC "d_telldir='define'"
5470 $ WC "d_telldirproto='define'"
5471 $ WC "d_time='define'"
5472 $ WC "d_times='define'"
5473 $ IF ("''F$EXTRACT(1,3, F$GETSYI(""VERSION""))'".GES."7.0")
5475 $ WC "d_tm_tm_gmtoff='define'"
5476 $ WC "d_tm_tm_zone='define'"
5478 $ WC "d_tm_tm_gmtoff='undef'"
5479 $ WC "d_tm_tm_zone='undef'"
5481 $ WC "d_truncate='" + d_truncate + "'"
5482 $ WC "d_tzname='" + d_tzname + "'"
5483 $ WC "d_u32align='define'"
5484 $ WC "d_ualarm='" + d_ualarm + "'"
5485 $ WC "d_umask='define'"
5486 $ WC "d_uname='" + d_uname + "'"
5487 $ WC "d_union_semun='undef'"
5488 $ WC "d_unlink_all_versions='undef'"
5489 $ WC "d_unordered='undef'"
5490 $ WC "d_usleep='" + d_usleep + "'"
5491 $ WC "d_usleepproto='" + d_usleep + "'"
5492 $ WC "d_nanosleep='undef'"
5493 $ WC "d_ustat='undef'"
5494 $ WC "d_vendorarch='undef'"
5495 $ WC "d_vendorlib='undef'"
5496 $ WC "d_vfork='define'"
5497 $ WC "d_vms_case_sensitive_symbols='" + d_vms_be_case_sensitive + "'" ! VMS
5498 $ WC "d_vms_do_sockets='" + d_vms_do_sockets + "'" ! VMS
5499 $ WC "d_void_closedir='define'"
5500 $ WC "d_volatile='define'"
5501 $ WC "d_vprintf='define'"
5502 $ WC "d_wait4='" + d_wait4 + "'"
5503 $ WC "d_waitpid='define'"
5504 $ WC "d_wcstombs='" + d_wcstombs + "'"
5505 $ WC "d_wctomb='" + d_wctomb + "'"
5506 $ WC "d_writev='undef'"
5507 $ WC "db_hashtype=' '"
5508 $ WC "db_prefixtype=' '"
5509 $ WC "db_version_major='" + "'"
5510 $ WC "db_version_minor='" + "'"
5511 $ WC "db_version_patch='" + "'"
5512 $ WC "dbgprefix='" + dbgprefix + "'"
5513 $ WC "defvoidused='15'"
5514 $ WC "devtype='" + devtype + "'"
5515 $ WC "direntrytype='struct dirent'"
5516 $ WC "dlext='" + dlext + "'"
5517 $ WC "dlobj='" + dlobj + "'"
5518 $ WC "dlsrc='dl_vms.c'"
5519 $ WC "doublesize='" + doublesize + "'"
5520 $ WC "drand01='" + drand01 + "'"
5522 $! The extensions symbol may be quite long
5524 $ tmp = "dynamic_ext='" + extensions + "'"
5528 $ WC "ebcdic='undef'"
5529 $ WC "embedmymalloc='" + usemymalloc + "'"
5530 $ WC "eunicefix=':'"
5531 $ WC "exe_ext='" + exe_ext + "'"
5533 $! The extensions symbol may be quite long
5535 $ tmp = "extensions='" + extensions + "'"
5538 $ WC "fflushNULL='define'"
5539 $ WC "fflushall='undef'"
5540 $ WC "fpostype='fpos_t'"
5541 $ WC "freetype='void'"
5542 $ WC "full_ar='" + "'"
5543 $ WC "full_csh='" + " '"
5544 $ WC "full_sed='_NLA0:'"
5545 $ WC "gccversion='" + gccversion + "'"
5546 $ WC "gidformat='lu'"
5549 $ WC "gidtype='" + gidtype + "'"
5550 $ WC "groupstype='Gid_t'"
5552 $ WC "hintfile='" + "'"
5553 $ WC "i16size='" + i16size + "'"
5554 $ WC "i16type='" + i16type + "'"
5555 $ WC "i32size='" + i32size + "'"
5556 $ WC "i32type='" + i32type + "'"
5557 $ WC "i64size='" + i64size + "'"
5558 $ WC "i64type='" + i64type + "'"
5559 $ WC "i8size='" + i8size + "'"
5560 $ WC "i8type='" + i8type + "'"
5561 $ WC "i_arpainet='undef'"
5562 $ WC "i_crypt='undef'"
5564 $ WC "i_dbm='undef'"
5565 $ WC "i_dirent='" + i_dirent + "'"
5566 $ WC "i_dlfcn='undef'"
5567 $ WC "i_fcntl='" + i_fcntl + "'"
5568 $ WC "i_float='define'"
5570 $ WC "i_fp_class='undef'"
5571 $ WC "i_grp='undef'"
5572 $ WC "i_ieeefp='undef'"
5573 $ WC "i_inttypes='" + i_inttypes + "'"
5574 $ WC "i_langinfo='" + i_langinfo + "'"
5575 $ WC "i_libutil='" + i_libutil + "'"
5576 $ WC "i_limits='define'"
5577 $ WC "i_locale='" + i_locale + "'"
5578 $ WC "i_machcthr='undef'"
5579 $ WC "i_machcthreads='undef'"
5580 $ WC "i_math='define'"
5581 $ WC "i_memory='undef'"
5582 $ WC "i_mntent='undef'"
5583 $ WC "i_ndbm='undef'"
5584 $ WC "i_netdb='" + i_netdb + "'"
5585 $ WC "i_neterrno='define'"
5586 $ WC "i_netinettcp='" + i_netinettcp + "'"
5587 $ WC "i_niin='" + i_niin + "'"
5588 $ WC "i_poll='" + i_poll + "'"
5589 $ WC "i_prot='undef'"
5590 $ WC "i_pthread='define'"
5591 $ WC "i_pwd='undef'"
5592 $ WC "i_rpcsvcdbm='undef'"
5593 $ WC "i_sfio='undef'"
5594 $ WC "i_sgtty='undef'"
5595 $ WC "i_shadow='" + i_shadow + "'"
5596 $ WC "i_socks='" + i_socks + "'"
5597 $ WC "i_stdarg='define'"
5598 $ WC "i_stddef='define'"
5599 $ WC "i_stdlib='define'"
5600 $ WC "i_string='define'"
5601 $ WC "i_sunmath='undef'"
5602 $ WC "i_sysaccess='" + i_sysaccess + "'"
5603 $ WC "i_sysdir='undef'"
5604 $ WC "i_sysfile='" + i_sysfile + "'"
5605 $ WC "i_sysioctl='undef'"
5606 $ WC "i_syslog='" + i_syslog + "'"
5607 $ WC "i_sysmman='undef'"
5608 $ WC "i_sysmode='" + i_sysmode + "'"
5609 $ WC "i_sysmount='undef'"
5610 $ WC "i_sysndir='undef'"
5611 $ WC "i_sysparam='undef'"
5612 $ WC "i_sysresrc='undef'"
5613 $ WC "i_syssecrt='" + i_syssecrt + "'"
5614 $ WC "i_sysselct='undef'"
5615 $ WC "i_syssockio='undef'"
5616 $ WC "i_sysstat='define'"
5617 $ WC "i_sysstatfs='undef'"
5618 $ WC "i_sysstatvfs='undef'"
5619 $ WC "i_systime='undef'"
5620 $ WC "i_systimek='undef'"
5621 $ WC "i_systimes='undef'"
5622 $ WC "i_systypes='define'"
5623 $ WC "i_sysuio='" + i_sysuio + "'"
5624 $ WC "i_sysun='undef'"
5625 $ WC "i_sysutsname='" + i_sysutsname + "'"
5626 $ WC "i_sysvfs='undef'"
5627 $ WC "i_syswait='undef'"
5628 $ WC "i_termio='undef'"
5629 $ WC "i_termios='undef'"
5630 $ WC "i_time='define'"
5631 $ WC "i_unistd='" + i_unistd + "'"
5632 $ WC "i_ustat='undef'"
5633 $ WC "i_utime='undef'"
5634 $ WC "i_values='undef'"
5635 $ WC "i_varargs='undef'"
5636 $ WC "i_vfork='undef'"
5637 $ WC "inc_version_list='0'"
5638 $ WC "inc_version_list_init='0'"
5639 $ WC "installarchlib='" + installarchlib + "'"
5640 $ WC "installbin='" + installbin + "'"
5641 $ WC "installman1dir='" + installman1dir + "'"
5642 $ WC "installman3dir='" + installman3dir + "'"
5643 $ WC "installprefix='" + vms_prefix + "'"
5644 $ WC "installprefixexp='" + vms_prefix + ":'"
5645 $ WC "installprivlib='" + installprivlib + "'"
5646 $ WC "installscript='" + installscript + "'"
5647 $ WC "installsitearch='" + installsitearch + "'"
5648 $ WC "installsitebin='" + sitebin + "'"
5649 $ WC "installsitelib='" + installsitelib + "'"
5650 $ WC "installusrbinperl='undef'"
5651 $ WC "intsize='" + intsize + "'"
5652 $ WC "ivdformat='" + ivdformat + "'"
5653 $ WC "ivsize='" + ivsize + "'"
5654 $ WC "ivtype='" + ivtype + "'"
5656 $! The known_extensions symbol may be quite long
5658 $ tmp = "known_extensions='" + known_extensions + "'"
5661 $ WC "ld='" + ld + "'"
5662 $ WC "lddlflags='/Share'"
5663 $ WC "ldflags='" + ldflags + "'"
5664 $ WC "lib_ext='" + lib_ext + "'"
5665 $ WC "libc='" + libc + "'"
5666 $ WC "libpth='/sys$share /sys$library'"
5667 $ WC "libs='" + libs + "'"
5668 $ WC "longdblsize='" + longdblsize + "'"
5669 $ WC "longlongsize='" + longlongsize + "'"
5670 $ WC "longsize='" + longsize + "'"
5671 $ WC "lseeksize='4'"
5672 $ WC "lseektype='int'"
5674 $ WC "make='" + make + "'"
5675 $ WC "malloctype='void *'"
5676 $ WC "man1ext='rno'"
5677 $ WC "man3ext='rno'"
5678 $ WC "mmaptype='void *'"
5679 $ WC "modetype='unsigned int'"
5680 $ WC "multiarch='undef'"
5681 $ WC "mydomain='" + mydomain + "'"
5682 $ WC "myhostname='" + myhostname + "'"
5683 $ WC "myuname='" + myuname + "'"
5684 $ WC "need_va_copy='undef'"
5685 $ WC "netdb_hlen_type='" + netdb_hlen_type + "'"
5686 $ WC "netdb_host_type='" + netdb_host_type + "'"
5687 $ WC "netdb_name_type='" + netdb_name_type + "'"
5688 $ WC "netdb_net_type='" + netdb_net_type + "'"
5689 $ WC "nveformat='" + nveformat + "'"
5690 $ WC "nvfformat='" + nvfformat + "'"
5691 $ WC "nvgformat='" + nvgformat + "'"
5692 $ WC "nvsize='" + nvsize + "'"
5693 $ WC "nvtype='" + nvtype + "'"
5694 $ WC "o_nonblock=' '"
5695 $ WC "obj_ext='" + obj_ext + "'"
5696 $ WC "old_pthread_create_joinable='" + old_pthread_create_joinable + "'"
5697 $ WC "oldarchlib='" + oldarchlib + "'"
5698 $ WC "oldarchlibexp='" + oldarchlibexp + "'"
5699 $ WC "optimize='" + optimize + "'"
5700 $ WC "osname='" + osname + "'"
5701 $ WC "osvers='" + osvers + "'"
5702 $ WC "otherlibdirs='" + "'"
5703 $ WC "package='" + package + "'"
5704 $ WC "pager='" + pager + "'"
5705 $ WC "patchlevel='" + patchlevel + "'"
5707 $ WC "perl_root='" + perl_root + "'" ! VMS specific $trnlnm()
5708 $ WC "perladmin='" + perladmin + "'"
5709 $ WC "perllibs='" + perllibs + "'"
5710 $ WC "perlpath='" + "''vms_prefix':[000000]Perl''ext'" + "'"
5711 $ WC "perl_symbol='" + perl_symbol + "'" ! VMS specific
5712 $ WC "perl_verb='" + perl_verb + "'" ! VMS specific
5713 $ WC "pgflquota='" + pgflquota + "'"
5714 $ WC "pidtype='" + pidtype + "'"
5715 $ WC "pm_apiversion='" + version + "'"
5716 $ WC "prefix='" + vms_prefix + "'"
5717 $ WC "prefixexp='" + vms_prefix + ":'"
5718 $ WC "privlib='" + privlib + "'"
5719 $ WC "privlibexp='" + privlibexp + "'"
5720 $ WC "procselfexe=' '"
5721 $ WC "prototype='define'"
5722 $ WC "ptrsize='" + ptrsize + "'"
5723 $ WC "quadkind='" + quadkind + "'"
5724 $ WC "quadtype='" + quadtype + "'"
5725 $ WC "randbits='31'"
5726 $ WC "randseedtype='" + randseedtype + "'"
5727 $ WC "ranlib='" + "'"
5728 $ WC "rd_nodata=' '"
5729 $ WC "revision='" + revision + "'"
5730 $ WC "sPRId64='" + sPRId64 + "'"
5731 $ WC "sPRIEldbl='" + sPRIEUldbl + "'"
5732 $ WC "sPRIFldbl='" + sPRIFUldbl + "'"
5733 $ WC "sPRIGldbl='" + sPRIGUldbl + "'"
5734 $ WC "sPRIX64='" + sPRIXU64 + "'"
5735 $ WC "sPRIeldbl='" + sPRIeldbl + "'"
5736 $ WC "sPRIfldbl='" + sPRIfldbl + "'"
5737 $ WC "sPRIgldbl='" + sPRIgldbl + "'"
5738 $! WC "sPRIi64='" + sPRIi64 + "'"
5739 $ WC "sPRIo64='" + sPRIo64 + "'"
5740 $ WC "sPRIu64='" + sPRIu64 + "'"
5741 $ WC "sPRIx64='" + sPRIx64 + "'"
5742 $ WC "sSCNfldbl='" + sSCNfldbl + "'"
5743 $ WC "sched_yield='" + sched_yield + "'"
5744 $ WC "scriptdir='" + scriptdir + "'"
5745 $ WC "scriptdirexp='" + scriptdir + "'" ! use scriptdir for now
5746 $ WC "seedfunc='" + seedfunc + "'"
5747 $ WC "selectminbits='32'"
5748 $ WC "selecttype='" + selecttype + "'"
5750 $ WC "shmattype='" + " '"
5751 $ WC "shortsize='" + shortsize + "'"
5752 $ WC "shrplib='define'"
5753 $ WC "sig_name='" + sig_name + "'"
5754 $ tmp = "sig_name_init='" + sig_name_init + "'"
5757 $ WC "sig_num='" + sig_num + "'"
5758 $ WC "sig_num_init='" + sig_num_init + "'"
5759 $ WC "sig_size='" + sig_size + "'"
5760 $ WC "signal_t='" + signal_t + "'"
5761 $ WC "sitearch='" + sitearch + "'"
5762 $ WC "sitearchexp='" + sitearchexp + "'"
5763 $ WC "sitebin='" + sitebin + "'"
5764 $ WC "sitebinexp='" + sitebin + "'"
5765 $ WC "sitelib='" + sitelib + "'"
5766 $ WC "sitelib_stem='" + sitelib_stem + "'"
5767 $ WC "sitelibexp='" + sitelibexp + "'"
5768 $ WC "siteprefix='" + vms_prefix + "'"
5769 $ WC "siteprefixexp='" + vms_prefix + ":'"
5770 $ WC "sizesize='" + sizesize + "'"
5771 $ WC "sizetype='size_t'"
5772 $ WC "so='" + so + "'"
5773 $ WC "socksizetype='" + socksizetype + "'"
5774 $ WC "spitshell='write sys$output '"
5775 $ WC "src='" + src + "'"
5776 $ WC "ssizetype='int'"
5777 $ WC "startperl=" + startperl ! This one's special--no enclosing single quotes
5778 $ WC "static_ext='" + static_ext + "'"
5779 $ WC "stdchar='" + stdchar + "'"
5780 $ WC "stdio_base='((*fp)->_base)'"
5781 $ WC "stdio_bufsiz='((*fp)->_cnt + (*fp)->_ptr - (*fp)->_base)'"
5782 $ WC "stdio_cnt='((*fp)->_cnt)'"
5783 $ WC "stdio_ptr='((*fp)->_ptr)'"
5784 $ WC "stdio_stream_array=' " + "'"
5785 $ WC "subversion='" + subversion + "'"
5786 $ WC "timetype='" + timetype + "'"
5787 $ WC "u16size='" + u16size + "'"
5788 $ WC "u16type='" + u16type + "'"
5789 $ WC "u32size='" + u32size + "'"
5790 $ WC "u32type='" + u32type + "'"
5791 $ WC "u64size='" + u64size + "'"
5792 $ WC "u64type='" + u64type + "'"
5793 $ WC "u8size='" + u8size + "'"
5794 $ WC "u8type='" + u8type + "'"
5795 $ WC "uidformat='lu'"
5798 $ WC "uidtype='" + uidtype + "'"
5799 $ WC "uquadtype='" + uquadtype + "'"
5800 $ WC "use5005threads='" + use5005threads + "'"
5801 $ WC "use64bitall='" + use64bitall + "'"
5802 $ WC "use64bitint='" + use64bitint + "'"
5803 $ WC "usecasesensitive='" + be_case_sensitive + "'" ! VMS-specific
5804 $ WC "usedebugging_perl='"+use_debugging_perl+"'"
5805 $ WC "usedefaulttypes='" + usedefaulttypes + "'" ! VMS-specific
5806 $ WC "usecrosscompile='undef'"
5807 $ WC "usedl='" + usedl + "'"
5808 $ WC "useieee='" + useieee + "'" ! VMS-specific
5809 $ WC "useithreads='" + useithreads + "'"
5810 $ WC "uselargefiles='" + uselargefiles + "'"
5811 $ WC "uselongdouble='" + uselongdouble + "'"
5812 $ WC "usemorebits='" + usemorebits + "'"
5813 $ WC "usemultiplicity='" + usemultiplicity + "'"
5814 $ WC "usemymalloc='" + usemymalloc + "'"
5815 $ WC "useperlio='" + useperlio + "'"
5816 $ WC "useposix='false'"
5817 $ WC "usereentrant='undef'"
5818 $ WC "usesecurelog='" + usesecurelog + "'" ! VMS-specific
5819 $ WC "usesocks='undef'"
5820 $ WC "usethreads='" + usethreads + "'"
5821 $ WC "usevendorprefix='" + "'" ! try to say no, though we'll be ignored as of MM 5.90_01
5822 $ WC "usevfork='true'"
5823 $ WC "usevmsdebug='" + usevmsdebug + "'" ! VMS-specific
5824 $ WC "uvoformat='" + uvoformat + "'"
5825 $ WC "uvsize='" + uvsize + "'"
5826 $ WC "uvtype='" + uvtype + "'"
5827 $ WC "uvuformat='" + uvuformat + "'"
5828 $ WC "uvxformat='" + uvxformat + "'"
5829 $ WC "uvXUformat='" + uvXUformat + "'"
5830 $ WC "vendorarch='" + "'"
5831 $ WC "vendorarchexp='" + "'"
5832 $ WC "vendorbin='" + "'"
5833 $ WC "vendorbinexp='" + "'"
5834 $ WC "vendorlib_stem='" + "'"
5835 $ WC "vendorlib='" + "'"
5836 $ WC "vendorlibexp='" + "'"
5837 $ WC "vendorprefix='" + "'"
5838 $ WC "vendorprefixexp='" + "'"
5839 $ WC "version='" + version + "'"
5840 $ WC "version_patchlevel_string='" + version_patchlevel_string + "'"
5841 $ WC "vms_cc_type='" + vms_cc_type + "'" ! VMS specific
5842 $ WC "vms_prefix='" + vms_prefix + "'" ! VMS specific
5843 $ WC "vms_ver='" + vms_ver + "'" ! VMS specific
5844 $ WC "voidflags='15'"
5845 $ WC "xs_apiversion='" + version + "'"
5846 $ WC "PERL_CONFIG_SH='true'"
5848 $! ## The UNIXy POSIXy reentrantey thingys ##
5849 $! See "Appendix B, Version-Dependency Tables" in the C RTL
5850 $! manual for when assorted _r functions became available.
5852 $ IF use_threads .AND. vms_ver .GES. "7.2"
5854 $ WC "asctime_r_proto='REENTRANT_PROTO_B_SB'"
5855 $ WC "d_asctime_r='define'"
5856 $ WC "ctime_r_proto='REENTRANT_PROTO_B_SB'"
5857 $ WC "d_ctime_r='define'"
5859 $ WC "asctime_r_proto='0'"
5860 $ WC "d_asctime_r='undef'"
5861 $ WC "ctime_r_proto='0'"
5862 $ WC "d_ctime_r='undef'"
5864 $ IF use_threads .AND. vms_ver .GES. "7.3-1"
5866 $ WC "readdir_r_proto='REENTRANT_PROTO_I_TSR'"
5867 $ WC "d_readdir_r='define'"
5869 $ WC "readdir_r_proto='0'"
5870 $ WC "d_readdir_r='undef'"
5872 $ WC "d_crypt_r='undef'"
5873 $ WC "d_ctermid_r='undef'"
5874 $ WC "d_drand48_r='undef'"
5875 $ WC "d_endgrent_r='undef'"
5876 $ WC "d_endhostent_r='undef'"
5877 $ WC "d_endnetent_r='undef'"
5878 $ WC "d_endprotoent_r='undef'"
5879 $ WC "d_endpwent_r='undef'"
5880 $ WC "d_endservent_r='undef'"
5881 $ WC "d_getgrent_r='undef'"
5882 $ WC "d_getgrgid_r='undef'"
5883 $ WC "d_getgrnam_r='undef'"
5884 $ WC "d_gethostbyaddr_r='undef'"
5885 $ WC "d_gethostbyname_r='undef'"
5886 $ WC "d_gethostent_r='undef'"
5887 $ WC "d_getlogin_r='undef'"
5888 $ WC "d_getnetbyaddr_r='undef'"
5889 $ WC "d_getnetbyname_r='undef'"
5890 $ WC "d_getnetent_r='undef'"
5891 $ WC "d_getprotobyname_r='undef'"
5892 $ WC "d_getprotobynumber_r='undef'"
5893 $ WC "d_getprotoent_r='undef'"
5894 $ WC "d_getpwent_r='undef'"
5895 $ WC "d_getpwnam_r='undef'"
5896 $ WC "d_getpwuid_r='undef'"
5897 $ WC "d_getservbyname_r='undef'"
5898 $ WC "d_getservbyport_r='undef'"
5899 $ WC "d_getservent_r='undef'"
5900 $ WC "d_getspnam_r='undef'"
5901 $ WC "d_gmtime_r='undef'" ! leave undef'd; we use my_gmtime
5902 $ WC "d_localtime_r='undef'" ! leave undef'd; we use my_localtime
5903 $ WC "d_random_r='undef'"
5904 $ WC "d_readdir64_r='undef'"
5905 $ WC "d_setgrent_r='undef'"
5906 $ WC "d_sethostent_r='undef'"
5907 $ WC "d_setlocale_r='undef'"
5908 $ WC "d_setnetent_r='undef'"
5909 $ WC "d_setprotoent_r='undef'"
5910 $ WC "d_setpwent_r='undef'"
5911 $ WC "d_setservent_r='undef'"
5912 $ WC "d_srand48_r='undef'"
5913 $ WC "d_srandom_r='undef'"
5914 $ WC "d_strerror_r='undef'"
5915 $ WC "d_tmpnam_r='undef'"
5916 $ WC "d_ttyname_r='undef'"
5917 $ WC "ctermid_r_proto='0'"
5918 $ WC "crypt_r_proto='0'"
5919 $ WC "drand48_r_proto='0'"
5920 $ WC "endgrent_r_proto='0'"
5921 $ WC "endhostent_r_proto='0'"
5922 $ WC "endnetent_r_proto='0'"
5923 $ WC "endprotoent_r_proto='0'"
5924 $ WC "endpwent_r_proto='0'"
5925 $ WC "endservent_r_proto='0'"
5926 $ WC "getgrent_r_proto='0'"
5927 $ WC "getgrgid_r_proto='0'"
5928 $ WC "getgrnam_r_proto='0'"
5929 $ WC "gethostbyaddr_r_proto='0'"
5930 $ WC "gethostbyname_r_proto='0'"
5931 $ WC "gethostent_r_proto='0'"
5932 $ WC "getlogin_r_proto='0'"
5933 $ WC "getnetbyaddr_r_proto='0'"
5934 $ WC "getnetbyname_r_proto='0'"
5935 $ WC "getnetent_r_proto='0'"
5936 $ WC "getprotobyname_r_proto='0'"
5937 $ WC "getprotobynumber_r_proto='0'"
5938 $ WC "getprotoent_r_proto='0'"
5939 $ WC "getpwent_r_proto='0'"
5940 $ WC "getpwnam_r_proto='0'"
5941 $ WC "getpwuid_r_proto='0'"
5942 $ WC "getservbyname_r_proto='0'"
5943 $ WC "getservbyport_r_proto='0'"
5944 $ WC "getservent_r_proto='0'"
5945 $ WC "getspnam_r_proto='0'"
5946 $ WC "gmtime_r_proto='0'"
5947 $ WC "localtime_r_proto='0'"
5948 $ WC "random_r_proto='0'"
5949 $ WC "readdir64_r_proto='0'"
5950 $ WC "setgrent_r_proto='0'"
5951 $ WC "sethostent_r_proto='0'"
5952 $ WC "setlocale_r_proto='0'"
5953 $ WC "setnetent_r_proto='0'"
5954 $ WC "setprotoent_r_proto='0'"
5955 $ WC "setpwent_r_proto='0'"
5956 $ WC "setservent_r_proto='0'"
5957 $ WC "srand48_r_proto='0'"
5958 $ WC "srandom_r_proto='0'"
5959 $ WC "strerror_r_proto='0'"
5960 $ WC "tmpnam_r_proto='0'"
5961 $ WC "ttyname_r_proto='0'"
5963 $! ##END WRITE NEW CONSTANTS HERE##
5967 $! Okay, we've gotten here. Build munchconfig.exe
5968 $ COPY/NOLOG [-.vms]munchconfig.c []
5969 $ COPY/NOLOG [-.vms]'Makefile_SH' []
5970 $ 'Perl_CC' munchconfig.c
5973 $ OPEN/WRITE CONFIG []munchconfig.opt
5974 $ IF ccname .EQS. "GCC"
5976 $ WRITE CONFIG "Gnu_CC:[000000]gcclib.olb/library"
5978 $ WRITE CONFIG "Sys$Share:VAXCRTL/Share"
5980 $ 'ld' munchconfig.obj,munchconfig.opt/opt
5981 $ DELETE/NOLOG/NOCONFIRM munchconfig.opt;
5983 $ 'ld' munchconfig.obj
5985 $ IF F$SEARCH("munchconfig.obj") .NES. "" THEN DELETE/NOLOG/NOCONFIRM munchconfig.obj;
5986 $ IF F$SEARCH("munchconfig.c") .NES. "" THEN DELETE/NOLOG/NOCONFIRM munchconfig.c;
5987 $ IF ccname .EQS. "CXX"
5989 $ CALL Cxx_demangler_cleanup
5992 $ IF alldone .EQS. ""
5997 If you'd like to make any changes to the config.sh file before I begin
5998 to configure things, answer yes to the following question.
6002 $ rp="Do you wish to edit ''basename_config_sh'? [''bool_dflt'] "
6007 $ echo4 "Be sure to type LOGOUT after you have edited the file,"
6008 $ echo4 "then this procedure will resume."
6010 $ default = F$ENVIRONMENT("DEFAULT")
6011 $ DIRECTORY 'config_sh'
6014 $ SET DEFAULT 'default'
6019 $ echo4 "Adding ''osname' specific preprocessor commands."
6021 $ ! we need an fdl file
6022 $ CREATE [-]CONFIG.FDL
6027 $ CREATE /FDL=[-]CONFIG.FDL [-]CONFIG.LOCAL
6028 $ ! First spit out the header info with the local defines (to get
6029 $ ! around the 255 character command line limit)
6030 $ OPEN/APPEND CONFIG [-]config.local
6031 $ IF use_debugging_perl THEN WC "#define DEBUGGING"
6032 $ IF use_two_pot_malloc THEN WC "#define TWO_POT_OPTIMIZE"
6033 $ IF mymalloc THEN WC "#define EMBEDMYMALLOC"
6034 $ IF use_pack_malloc THEN WC "#define PACK_MALLOC"
6035 $ IF use_debugmalloc THEN WC "#define DEBUGGING_MSTATS"
6036 $ IF ccname .EQS. "GCC" THEN WC "#define GNUC_ATTRIBUTE_CHECK"
6037 $ IF (Has_Dec_C_Sockets)
6039 $ WC "#define VMS_DO_SOCKETS"
6040 $ WC "#define DECCRTL_SOCKETS"
6042 $ IF Has_Socketshr THEN WC "#define VMS_DO_SOCKETS"
6044 $! This is VMS-specific for now
6045 $ WC "#''d_setenv' HAS_SETENV"
6046 $ IF d_secintgenv THEN WC "#define SECURE_INTERNAL_GETENV"
6047 $ IF d_alwdeftype THEN WC "#define ALWAYS_DEFTYPES"
6048 $ IF use64bitint .OR. use64bitint .EQS. "define"
6050 $ WC "#define USE_64_BIT_INT"
6051 $ WC "#define USE_LONG_DOUBLE"
6053 $ IF use64bitall .OR. use64bitall .EQS. "define" THEN -
6054 WC "#define USE_64_BIT_ALL"
6055 $ IF be_case_sensitive THEN WC "#define VMS_WE_ARE_CASE_SENSITIVE"
6056 $ IF d_herrno .EQS. "undef" THEN WC "#define NEED_AN_H_ERRNO"
6057 $ WC "#define HAS_ENVGETENV"
6058 $ WC "#define PERL_EXTERNAL_GLOB"
6059 $ IF archname .EQS. "VMS_VAX" .AND. -
6060 ccname .EQS. "DEC" .AND. -
6061 ccversion .LE. 50390006
6063 $! Alas this does not help to build Fcntl
6064 $! WC "#define PERL_IGNORE_FPUSIG SIGFPE"
6066 $ IF kill_by_sigprc .EQS. "define" then WC "#define KILL_BY_SIGPRC"
6069 $ echo4 "Doing variable substitutions on .SH files..."
6070 $ echo4 "Extracting config.h (with variable substitutions)"
6072 $! Now build the normal config.h
6073 $ DEFINE/USER_MODE sys$output [-]config.main
6074 $ mcr []munchconfig 'config_sh' [-]config_h.sh
6075 $ ! Concatenate them together
6076 $ copy [-]config.local,[-]config.main [-]config.h
6078 $ DELETE/NOLOG/NOCONFIRM [-]CONFIG.MAIN;*
6079 $ DELETE/NOLOG/NOCONFIRM [-]CONFIG.LOCAL;*
6080 $ DELETE/NOLOG/NOCONFIRM [-]CONFIG.FDL;*
6082 $ IF ccname .EQS. "DEC"
6084 $ DECC_REPLACE = "DECC=decc=1"
6086 $ DECC_REPLACE = "DECC="
6088 $ IF ccname .EQS. "CXX"
6090 $ DECCXX_REPLACE = "DECCXX=DECCXX=1"
6092 $ DECCXX_REPLACE = "DECCXX="
6094 $ IF ccname .EQS. "GCC"
6096 $ GNUC_REPLACE = "GNUC=gnuc=1"
6098 $ GNUC_REPLACE = "GNUC="
6100 $ IF Has_Dec_C_Sockets
6102 $ SOCKET_REPLACE = "SOCKET=DECC_SOCKETS=1"
6106 $ SOCKET_REPLACE = "SOCKET=SOCKETSHR_SOCKETS=1"
6108 $ SOCKET_REPLACE = "SOCKET="
6113 $ IF (vms_ver .LES. "6.2")
6115 $ THREAD_REPLACE = "THREAD=OLDTHREADED=1"
6117 $ THREAD_REPLACE = "THREAD=THREADED=1"
6120 $ THREAD_REPLACE = "THREAD="
6124 $ MALLOC_REPLACE = "MALLOC=MALLOC=1"
6126 $ MALLOC_REPLACE = "MALLOC="
6128 $ echo4 "Extracting ''defmakefile' (with variable substitutions)"
6129 $ DEFINE/USER_MODE sys$output 'UUmakefile'
6130 $ mcr []munchconfig 'config_sh' 'Makefile_SH' "''DECC_REPLACE'" -
6131 "''DECCXX_REPLACE'" "''ARCH_TYPE'" "''GNUC_REPLACE'" "''SOCKET_REPLACE'" -
6132 "''THREAD_REPLACE'" "''C_Compiler_Replace'" "''MALLOC_REPLACE'" -
6133 "''Thread_Live_Dangerously'" "PV=''version'" "FLAGS=FLAGS=''extra_flags'"
6134 $! Clean up after ourselves
6135 $ DELETE/NOLOG/NOCONFIRM []munchconfig.exe;
6137 $ echo4 "Extracting make_ext.com (without variable substitutions)"
6138 $ Create Sys$Disk:[-]make_ext.com
6139 $ Deck/Dollar="$EndOfTpl$"
6141 $! NOTE: This file is extracted as part of the VMS configuration process.
6142 $! Any changes made to it directly will be lost. If you need to make any
6143 $! changes, please edit the template in Configure.Com instead.
6144 $ def = F$Environment("Default")
6145 $! p1 - how to invoke miniperl (passed in from descrip.mms)
6146 $ p1 = F$Edit(p1,"Upcase,Compress,Trim")
6147 $ If F$Locate("MCR ",p1).eq.0 Then p1 = F$Extract(3,255,p1)
6148 $ miniperl = "$" + F$Search(F$Parse(p1,".Exe"))
6149 $! p2 - how to invoke local make utility (passed in from descrip.mms)
6151 $ if f$type('p2') .nes. "" then makeutil = 'p2'
6152 $! p3 - make target (passed in from descrip.mms)
6153 $ targ = F$Edit(p3,"Lowercase")
6156 $ open/read CONFIG config.sh
6158 $ read/end=end_ext_loop CONFIG line
6159 $ if (f$extract(0,12,line) .NES. "extensions='")
6160 $ then goto find_ext_loop
6161 $ else extensions = f$extract(12,f$length(line),line) - "'"
6165 $ extensions = f$edit(extensions,"TRIM,COMPRESS")
6168 $ ext = f$element(i," ",extensions)
6169 $ If ext .eqs. " " .or. ext .eqs. "" Then Goto done
6170 $ Define/User_mode Perl_Env_Tables CLISYM_LOCAL
6173 ($extdir = $ENV{'ext'}) =~ s/::/./g;
6175 if ($extdir =~ /^vms/i) { $extdir =~ s/vms/.vms.ext/i; }
6176 else { $extdir = ".ext.$extdir"; }
6177 ($ENV{'extdir'} = "[$extdir]");
6178 ($ENV{'up'} = ('-') x ($extdir =~ tr/././));
6180 $ Set Default &extdir
6182 $ If F$Locate("clean",targ) .eqs. F$Length(targ)
6184 $ Write Sys$Output ""
6185 $ Write Sys$Output " Making ''ext' (dynamic)"
6186 $ On Error Then Goto done
6187 $ If F$Search("Descrip.MMS") .eqs. ""
6191 $ If F$CvTime(F$File("Descrip.MMS","rdt")) .lts. -
6192 F$CvTime(F$File("Makefile.PL","rdt")) Then redesc = 1
6195 $ Write Sys$Output "''targ'ing ''ext' . . ."
6196 $ On Error Then Continue
6199 miniperl "-I[''up'.lib]" Makefile.PL "INST_LIB=[''up'.lib]" "INST_ARCHLIB=[''up'.lib]" "PERL_CORE=1"
6211 $! Note that the /key qualifier to search, as in:
6212 $! search README.* "=head"/key=(position=1)/window=0/output=extra.pods
6213 $! is not supported on VMS V5.5-2, hence not used in extra_pods.com.
6215 $ echo4 "Extracting extra_pods.com (without variable substitutions)"
6216 $ Create Sys$Disk:[-]extra_pods.com
6217 $ Deck/Dollar="$EOExtra_Pods$"
6219 $! NOTE: This file is extracted as part of the VMS configuration process.
6220 $! Any changes made to it directly will be lost. If you need to make any
6221 $! changes, please edit the template in Configure.Com instead.
6222 $! Use FORCE if you've just podified a README.* file on VMS.
6223 $ if f$search("extra.pods") .eqs. "" .or. P1 .eqs. "FORCE" then -
6224 search README.* "=head"/window=0/output=extra.pods
6225 $ open/read/error=extra_close EXTRA extra.pods
6227 $ read/error=extra_close/END_OF_FILE=extra_close EXTRA file
6228 $ file_type = f$parse(file,,,"TYPE",) - "."
6229 $ if file_type .nes. "VMS" .and. file_type .nes. "vms"
6231 $ pod_file = "[.pod]perl''file_type'.pod"
6232 $ file = file - "''f$parse(file,,,"VERSION",)'"
6233 $ if p1 .eqs. "CLEAN"
6234 $ then if f$search(pod_file) .nes. "" then delete/log 'pod_file';*
6237 $ if f$search(pod_file) .eqs. ""
6238 $ then do_copy := true
6240 $ file_rdt = f$cvtime(f$file_attributes(file,"RDT"))
6241 $ pod_file_rdt = f$cvtime(f$file_attributes(pod_file,"RDT"))
6242 $ if file_rdt .GTS. pod_file_rdt then do_copy := true
6244 $ if do_copy then copy/log/noconfirm 'file' 'pod_file'
6250 $ if p1 .eqs. "CLEAN" .and. f$search("extra.pods;-1") .nes. "" then -
6251 purge/nolog extra.pods
6255 $! Warn of dangerous symbols or logical names
6257 $Bad_environment: SUBROUTINE
6259 $ IF p2 .eqs. "SYMBOL"
6261 $ IF f$type('p1') .nes. "" THEN Bad_env := SYMBOL
6263 $ IF f$trnlnm(p1) .nes. "" THEN Bad_env := LOGICAL
6265 $ IF Bad_env .eqs. "SYMBOL" .or. Bad_env .eqs. "LOGICAL"
6267 $ IF f$search("config.msg") .nes. ""
6269 $ OPEN/APPEND CONFIG config.msg
6271 $ OPEN/WRITE CONFIG config.msg
6273 $ IF Bad_env .eqs. "SYMBOL"
6276 $ WRITE CONFIG "Symbol name ''p1' found in environment as " + &p1
6277 $ WRITE CONFIG " delete before building ''package' via:"
6278 $ WRITE CONFIG " $ DELETE/SYMBOL/GLOBAL ''p1'"
6279 $ IF f$locate("""",&p1) .ge. f$length(&p1)
6281 $ WRITE CONFIG " after building, testing, and installing ''package'"
6282 $ WRITE CONFIG " restore the symbol with:"
6283 $ WRITE CONFIG " $ ''p1' == """ + &p1 + """"
6286 $ IF Bad_env .eqs. "LOGICAL"
6289 $ WRITE CONFIG "Logical name ''p1' found in environment as " + f$trnlnm(p1)
6290 $ WRITE CONFIG " deassign before building ''package'"
6296 $ ENDSUBROUTINE ! Bad_environment
6298 $ echo4 "Checking for dangerous pre-existing global symbols and logical names."
6299 $ CALL Bad_environment "EXT"
6300 $ CALL Bad_environment "FOO"
6301 $ CALL Bad_environment "LIB"
6302 $ CALL Bad_environment "LIST"
6303 $ CALL Bad_environment "MIME"
6304 $ CALL Bad_environment "POSIX"
6305 $ CALL Bad_environment "SYS"
6306 $ CALL Bad_environment "T"
6307 $ CALL Bad_environment "THREAD"
6308 $ CALL Bad_environment "THREADS"
6309 $ CALL Bad_environment "TIME"
6310 $ CALL Bad_environment "TMP"
6311 $ CALL Bad_environment "UNICODE"
6312 $ CALL Bad_environment "UTIL"
6313 $ CALL Bad_environment "TEST" "SYMBOL"
6314 $ IF f$search("config.msg") .eqs. "" THEN echo "OK."
6316 $! %Config-I-VMS, write perl_setup.com here
6318 $ IF (.NOT.perl_symbol)
6320 $ file_2_find = "[-]''packageup'.cld"
6322 $ echo4 "The perl.cld file is now being written..."
6323 $ OPEN/WRITE CONFIG 'file_2_find'
6325 $ IF (sharedperl .AND. archname .EQS. "VMS_AXP") THEN ext := .AXE
6326 $ IF (use_vmsdebug_perl)
6328 $ WRITE CONFIG "define verb dbgperl"
6329 $ WRITE CONFIG F$FAO("!_!AS","image ''vms_prefix':[000000]dbgperl''ext'")
6330 $ WRITE CONFIG F$FAO("!_!AS","cliflags (foreign)")
6332 $ WRITE CONFIG "define verb perl"
6333 $ WRITE CONFIG F$FAO("!_!AS","image ''vms_prefix':[000000]ndbgPerl''ext'")
6334 $ WRITE CONFIG F$FAO("!_!AS","cliflags (foreign)")
6336 $ WRITE CONFIG "define verb perl"
6337 $ WRITE CONFIG F$FAO("!_!AS","image ''vms_prefix':[000000]perl''ext'")
6338 $ WRITE CONFIG F$FAO("!_!AS","cliflags (foreign)")
6341 $ ENDIF ! (.NOT.perl_symbol)
6343 $ echo4 "The perl_setup.com file is now being written..."
6344 $ file_2_find = "[-]perl_setup.com"
6346 $! Folks are likely to want to edit perl_setup.com.
6347 $! STMLF RFM plays nicer with ported editors than does VFC.
6349 $ CREATE [-]CONFIG.FDL
6354 $ CREATE /FDL=[-]CONFIG.FDL 'file_2_find'
6355 $ OPEN/APPEND CONFIG 'file_2_find'
6356 $ DELETE/NOLOG/NOCONFIRM [-]CONFIG.FDL;
6358 $ WRITE CONFIG "$! Perl_Setup.com ''cf_time'"
6359 $ IF cf_email.NES.perladmin
6361 $ WRITE CONFIG "$! perl configured by ''cf_email'"
6363 $ WRITE CONFIG "$! This perl configured & administered by ''perladmin'"
6366 $ prefix = prefix - "000000."
6367 $ IF F$LOCATE(".]",prefix) .EQ. F$LENGTH(prefix) THEN -
6368 prefix = prefix - "]" + ".]"
6369 $ WRITE CONFIG "$ define/translation=concealed ''vms_prefix' ''prefix'"
6370 $ WRITE CONFIG "$ ext = "".exe"""
6373 $ write config "$ if f$getsyi(""HW_MODEL"") .ge. 1024 then ext = "".AXE"""
6377 $ IF (use_vmsdebug_perl)
6379 $ WRITE CONFIG "$ dbgperl :== $''vms_prefix':[000000]dbgPerl'ext'"
6380 $ WRITE CONFIG "$ perl :== $''vms_prefix':[000000]ndbgPerl'ext'"
6381 $ WRITE CONFIG "$ define dbgPerlShr ''vms_prefix':[000000]dbgPerlShr'ext'"
6383 $ WRITE CONFIG "$ perl :== $''vms_prefix':[000000]Perl'ext'"
6384 $ WRITE CONFIG "$ define PerlShr ''vms_prefix':[000000]PerlShr'ext'"
6386 $ ELSE ! .NOT.perl_symbol
6387 $ IF (use_vmsdebug_perl)
6389 $ WRITE CONFIG "$ define dbgPerlShr ''vms_prefix':[000000]dbgPerlShr'ext'"
6391 $ WRITE CONFIG "$ define PerlShr ''vms_prefix':[000000]PerlShr'ext'"
6393 $ IF perl_verb .EQS. "PROCESS"
6395 $ WRITE CONFIG "$ set command ''vms_prefix':[000000]''packageup'.CLD"
6397 $ ENDIF ! perl_symbol
6398 $ WRITE CONFIG "$ define/nolog pod2text ''vms_prefix':[lib.pod]pod2text.com"
6399 $ WRITE CONFIG "$ define/nolog pod2html ''vms_prefix':[lib.pod]pod2html.com"
6400 $ WRITE CONFIG "$ define/nolog pod2man ''vms_prefix':[lib.pod]pod2man.com"
6404 $ WRITE CONFIG "$ define SYS$TIMEZONE_DIFFERENTIAL ''tzd'"
6405 $ ELSE !leave in but commented out (in case setting was from perl :-)
6406 $ WRITE CONFIG "$! define SYS$TIMEZONE_DIFFERENTIAL ''tzd'"
6409 $ WRITE CONFIG "$! Symbols for commonly used programs:"
6413 $ WRITE CONFIG "$ Perldoc == ""'"+"'Perl' ''vms_prefix':[lib.pod]Perldoc.com -t"""
6414 $ WRITE CONFIG "$ pod2text == ""'"+"'Perl' pod2text"""
6415 $ WRITE CONFIG "$ pod2html == ""'"+"'Perl' pod2html"""
6416 $ WRITE CONFIG "$ pod2latex == ""'"+"'Perl' ''vms_prefix':[lib.pod]pod2latex.com"""
6417 $ WRITE CONFIG "$!pod2man == ""'"+"'Perl' pod2man"""
6418 $ WRITE CONFIG "$!Perlbug == ""'"+"'Perl' ''vms_prefix':[lib]Perlbug.com"""
6419 $ WRITE CONFIG "$ c2ph == ""'"+"'Perl' ''vms_prefix':[utils]c2ph.com"""
6420 $ IF F$LOCATE("Devel::DProf",extensions) .LT. F$LENGTH(extensions)
6422 $ WRITE CONFIG "$ dprofpp == ""'"+"'Perl' ''vms_prefix':[utils]dprofpp.com"""
6424 $ WRITE CONFIG "$ h2ph == ""'"+"'Perl' ''vms_prefix':[utils]h2ph.com"""
6425 $ WRITE CONFIG "$ h2xs == ""'"+"'Perl' ''vms_prefix':[utils]h2xs.com"""
6426 $ WRITE CONFIG "$ libnetcfg == ""'"+"'Perl' ''vms_prefix':[utils]libnetcfg.com"""
6427 $ WRITE CONFIG "$!perlcc == ""'"+"'Perl' ''vms_prefix':[utils]perlcc.com"""
6428 $ WRITE CONFIG "$ perlivp == ""'"+"'Perl' ''vms_prefix':[utils]perlivp.com"""
6429 $ WRITE CONFIG "$ splain == ""'"+"'Perl' ''vms_prefix':[utils]splain.com"""
6430 $ WRITE CONFIG "$ xsubpp == ""'"+"'Perl' ''vms_prefix':[utils]xsubpp.com"""
6432 $ WRITE CONFIG "$ Perldoc == ""Perl ''vms_prefix':[lib.pod]Perldoc.com -t"""
6433 $ WRITE CONFIG "$ pod2text == ""Perl pod2text"""
6434 $ WRITE CONFIG "$ pod2html == ""Perl pod2html"""
6435 $ WRITE CONFIG "$ pod2latex == ""Perl ''vms_prefix':[lib.pod]pod2latex.com"""
6436 $ WRITE CONFIG "$!pod2man == ""Perl pod2man"""
6437 $ WRITE CONFIG "$!Perlbug == ""Perl ''vms_prefix':[lib]Perlbug.com"""
6438 $ WRITE CONFIG "$ c2ph == ""Perl ''vms_prefix':[utils]c2ph.com"""
6439 $ IF F$LOCATE("Devel::DProf",extensions) .LT. F$LENGTH(extensions)
6441 $ WRITE CONFIG "$ dprofpp == ""Perl ''vms_prefix':[utils]dprofpp.com"""
6443 $ WRITE CONFIG "$ h2ph == ""Perl ''vms_prefix':[utils]h2ph.com"""
6444 $ WRITE CONFIG "$ h2xs == ""Perl ''vms_prefix':[utils]h2xs.com"""
6445 $ WRITE CONFIG "$ libnetcfg == ""Perl ''vms_prefix':[utils]libnetcfg.com"""
6446 $ WRITE CONFIG "$!perlcc == ""Perl ''vms_prefix':[utils]perlcc.com"""
6447 $ WRITE CONFIG "$ perlivp == ""Perl ''vms_prefix':[utils]perlivp.com"""
6448 $ WRITE CONFIG "$ splain == ""Perl ''vms_prefix':[utils]splain.com"""
6449 $ WRITE CONFIG "$ xsubpp == ""Perl ''vms_prefix':[utils]xsubpp.com"""
6454 $ echo "The file can be found at:"
6455 $ echo4 " ''F$SEARCH(file_2_find)'"
6456 $ echo "Add that file (or an @ call to it) to your [SY]LOGIN.COM"
6457 $ echo "when you are satisfied with a successful compilation,"
6458 $ echo "testing, and installation of your perl."
6460 $ IF ((.NOT.perl_symbol) .AND. (perl_verb .EQS. "DCLTABLES"))
6462 $ file_2_find = "[-]''packageup'_install.com"
6463 $ OPEN/WRITE CONFIG 'file_2_find'
6464 $ WRITE CONFIG "$ set command perl /table=sys$common:[syslib]dcltables.exe -"
6465 $ WRITE CONFIG " /output=sys$common:[syslib]dcltables.exe"
6466 $ WRITE CONFIG "$ install replace sys$common:[syslib]dcltables.exe"
6469 $ echo4 "In order to install the ''packageup' verb into DCLTABLES run:"
6470 $ echo4 " @ ''F$SEARCH(file_2_find)'"
6471 $ echo4 "after a successful build, test, and install. Do so with CMKRNL privilege."
6475 $!figure out where we "are" by parsing 'vms_default_directory_name'
6477 $ set_def_command = ""
6478 $ dflt = F$ENVIRONMENT("DEFAULT") - ".UU]"
6479 $ tmp = vms_default_directory_name - dflt - "]"
6481 $ IF tmp .EQS. "" THEN GOTO Beyond_set_def_loop
6483 $ tmp1 = F$ELEMENT(i,".",tmp)
6484 $ IF tmp1 .EQS. "." THEN GOTO Beyond_set_def_loop
6486 $ THEN set_def_command = "set default [-"
6487 $ ELSE set_def_command = set_def_command + "-"
6491 $Beyond_set_def_loop:
6492 $ IF set_def_command.NES.""
6494 $ set_def_command = set_def_command - "-" + "]"
6496 $ echo4 "In order to build ''package' you must now issue the commands:"
6498 $ echo4 " ''set_def_command'"
6501 $ echo4 "In order to build ''package' you must now issue the command:"
6504 $ echo4 " ''make'''makefile'", macros
6507 $ IF ( F$SEARCH("config.msg").NES."" )
6509 $ echo4 "Hmm. I also noted the following information while running:"
6511 $ TYPE/OUTPUT=SYS$ERROR: config.msg
6512 $ SET PROTECTION=(SYSTEM:RWED,OWNER:RWED) config.msg
6513 $ DELETE/NOLOG/NOCONFIRM config.msg;
6520 $ CLOSE/NOLOG STDOUT
6521 $ DEASSIGN SYS$OUTPUT
6523 $ CLOSE/NOLOG CONFIG
6524 $ IF F$GETJPI("","FILCNT").GT.vms_filcnt
6525 $ THEN WRITE SYS$ERROR "%Config-W-VMS, WARNING: There is a file still open"
6527 $ dflt = F$ENVIRONMENT("DEFAULT")
6528 $ IF F$LOCATE("UU]",dflt).EQS.(F$LENGTH(dflt)-3)
6530 $ IF ( F$SEARCH("[]*.*").NES."" ) THEN DELETE/NOLOG/NOCONFIRM []*.*;*
6532 $ SET PROTECTION=(SYSTEM:RWED,OWNER:RWED) UU.DIR
6533 $ DELETE/NOLOG/NOCONFIRM UU.DIR;
6535 $ SET DEFAULT 'vms_default_directory_name' !be kind rewind
6537 $!: End of Configure