1 $! OpenVMS configuration procedure for Perl -- do not attempt to run under DOS
2 $ sav_ver = 'F$VERIFY(0)'
3 $ on control_y then goto clean_up
6 $! For example, if you unpacked perl into: [USER.PERL-5n...] then you will
7 $! want to cd into the tree and execute Configure:
9 $! $ SET DEFAULT [USER.PERL5_xxx]
14 $! $ SET DEFAULT [USER.PERL5_xxx]
15 $! $ @Configure "-des"
17 $! That's it. If you get into a bind trying to build perl on VMS then
18 $! definitely read through the README.VMS file.
19 $! Beyond that send email to vmsperl@perl.org
21 $! ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
23 $! send suggestions to:
24 $! Dan Sugalski <dan@sidhe.org>
27 $! Adapted and converted from Larry Wall & Andy Dougherty's
28 $! "Configure generated by metaconfig 3.0 PL60." by Peter Prymmer
29 $! (a Bourne sh[ell] script for configuring the installation of perl
30 $! on non-VMS systems) in the perl5.002|3 epoch (spring/summer 1996)
31 $! with much valuable help from Charles Bailey &
32 $! the whole VMSPerl crew.
33 $! Extended and messed about with by Dan Sugalski
35 $! VMS-isms we will need:
36 $ echo = "write sys$output "
38 $ delete := delete ! local symbol overrides globals with qualifiers
46 $ be_case_sensitive = "n"
47 $ use_vmsdebug_perl = "n"
50 $ C_Compiler_Replace = "CC="
51 $ Thread_Live_Dangerously = "MT="
52 $ use_two_pot_malloc = "N"
53 $ use_pack_malloc = "N"
54 $ use_debugmalloc = "N"
57 $ vms_default_directory_name = F$ENVIRONMENT("DEFAULT")
58 $ max_allowed_dir_depth = 3 ! e.g. [A.B.PERLxxx] not [A.B.C.PERLxxx]
59 $! max_allowed_dir_depth = 2 ! e.g. [A.PERLxxx] not [A.B.PERLxxx]
61 $! Sebastian Bazley's request: close the CONFIG handle with /NOLOG
62 $! qualifier "just in case" (configure.com is re @ed in a bad state).
63 $! This construct was tested to be not a problem as far back as
64 $! VMS V5.5-2, hopefully earlier versions are OK as well.
68 $! Now keep track of open files
70 $ vms_filcnt = F$GETJPI ("","FILCNT")
72 $!: compute my invocation name
73 $ me = F$ENVIRONMENT("PROCEDURE")
75 $! Many null statements (begin with colon ':') in the Bourne shell version of
76 $! this script serve as comments/placeholders. I have retained some of the ones
77 $! that will help you compare this .COM file to the sh version - as well as
78 $! leave placeholders for future improvements to this .COM file.
79 $! sfn = VMS "skipped for now"
81 $!: Proper PATH separator !sfn
82 $!: Proper PATH setting !sfn
83 $!: Sanity checks !sfn "Say '@''$me''"
84 $!: On HP-UX, large Configure scripts may exercise a bug in /bin/sh !sfn
85 $!: Configure runs within the UU subdirectory !->after find MANIFEST
86 $! <big long list of default values (mostly null)>
87 $!: We must find out about Eunice early !(?)
88 $!: list of known cpp symbols, sorted alphabetically !sfn
90 $!: default library list !sfn
91 $! <no hints files in use (yet?)>
92 $!: Extra object files, if any, needed on this platform. !sfn
93 $!: Possible local include directories to search. !sfn
94 $!: Set locincpth to "" in a hint file to defeat local include searches. !sfn
95 $!locincpth="/usr/local/include /opt/local/include /usr/gnu/include" !sfn
96 $!locincpth="$locincpth /opt/gnu/include /usr/GNU/include /opt/GNU/include"
97 $!: no include file wanted by default !sfn
99 $!: Possible local library directories to search. !sfn
100 $!loclibpth="/usr/local/lib /opt/local/lib /usr/gnu/lib" !sfn
101 $!loclibpth="$loclibpth /opt/gnu/lib /usr/GNU/lib /opt/GNU/lib" !sfn
102 $!: general looking path for locating libraries !sfn
103 $!glibpth="/lib/pa1.1 /usr/shlib /usr/lib/large /lib /usr/lib" !sfn
104 $!glibpth="$glibpth $xlibpth /lib/large /usr/lib/small /lib/small" !sfn
105 $!glibpth="$glibpth /usr/ccs/lib /usr/ucblib /usr/shlib" !sfn
106 $!: Private path used by Configure to find libraries. Its value !sfn
107 $!: is prepended to libpth. This variable takes care of special !sfn
108 $!: machines, like the mips. Usually, it should be empty. !sfn
110 $!: full support for void wanted by default !sfn
111 $!defvoidused=15 !sfn
112 $!: List of libraries we want. !sfn
113 $!libswanted='net socket inet nsl nm ndbm gdbm dbm db malloc dl' !sfn
114 $!libswanted="$libswanted dld ld sun m c cposix posix ndir dir crypt" !sfn
115 $!libswanted="$libswanted ucb bsd BSD PW x" !sfn
116 $!: We probably want to search /usr/shlib before most other libraries. !sfn
117 $!: This is only used by the lib/ExtUtils/MakeMaker.pm routine extliblist. !sfn
118 $!glibpth=`echo " $glibpth " | sed -e 's! /usr/shlib ! !'` !sfn
119 $!glibpth="/usr/shlib $glibpth" !sfn
120 $!: Do not use vfork unless overridden by a hint file. !sfn
121 $!usevfork=false !sfn
122 $!: script used to extract .SH files with variable substitutions !sfn
123 $!: produce awk script to parse command line options !sfn
124 $!sfn (assume no sed awk) see below
125 $!: process the command line options
127 $!: set up default values
131 $ IF F$TYPE(config_sh) .EQS. "" THEN config_sh=""
142 $ use_5005_threads = "N"
148 $ THEN !one or more switches was thrown
155 $ config_args = config_args + F$FAO(" !AS",P'i')
158 $ IF (i.LT.9) THEN GOTO Param_loop !DCL allows P1..P8
162 $ IF (F$EXTRACT(0,1,P'i') .EQS. "-") THEN P'i' = P'i' - "-"
163 $ IF (F$EXTRACT(0,1,P'i') .EQS. "/") THEN P'i' = P'i' - "/"
164 $Remove_quotation_mark:
166 $ IF F$LOCATE("""",P'i') .LT. F$LENGTH(P'i') THEN GOTO Remove_quotation_mark
167 $ gotopt = "f" !"alse"
168 $ gotshortopt = "f" !"alse"
169 $ IF (F$EXTRACT(0,1,P'i') .EQS. "d")
172 $ gotopt = "t" !"rue"
174 $ gotshortopt = "t" !"rue"
176 $ IF (F$EXTRACT(0,1,P'i') .EQS. "e")
183 $ IF (F$EXTRACT(0,1,P'i') .EQS. "f") ! "-f"
187 $ IF (F$SEARCH(config_sh).NES."")
189 $ test_config_sh = F$FILE_ATTRIBUTES(config_sh,"PRO")
190 $ IF (F$LOCATE("R",test_config_sh).NE.F$LENGTH(test_config_sh))
193 $ CONTINUE !at this point check UIC && if test allows...
196 $ echo "''me': cannot read config file ''config_sh'."
200 $ echo "''me': cannot read config file ''config_sh'."
205 $ IF (F$EXTRACT(0,1,P'i') .EQS. "h") ! "-h"
212 $ IF (F$EXTRACT(0,1,P'i') .EQS. "m") ! "-m"
219 $ IF (F$EXTRACT(0,1,P'i') .EQS. "r") ! "-r"
226 $ IF (F$EXTRACT(0,1,P'i') .EQS. "s") ! "-s"
233 $ IF (F$EXTRACT(0,1,P'i') .EQS. "E") ! "-E"
238 $ IF (F$EXTRACT(0,1,P'i') .EQS. "K") ! "-K"
245 $ IF (F$EXTRACT(0,1,P'i') .EQS. "O") ! "-O"
252 $ IF (F$EXTRACT(0,1,P'i') .EQS. "S") ! "-S"
254 $ extractsh = "true" !VMS? Yes with munchconfig
259 $ IF (F$EXTRACT(0,1,P'i') .EQS. "D") ! "-D"
262 $ IF (F$LOCATE("=",P'i') .EQ. F$LENGTH(P'i'))
264 $ tmp = P'i' + "=""define"""
268 $ IF (F$LOCATE("=",P'i') .EQ. (F$LENGTH(P'i') - 1))
270 $ me = F$PARSE(me,,,"NAME") + F$PARSE(me,,,"TYPE")
271 $ echo "''me': use ""-Usymbol=val"" not ""-Dsymbol=""."
272 $ echo "''me': ignoring -D",P'i'
274 $ tmp = F$EXTRACT(0,F$LOCATE("=",P'i'),P'i')
275 $ tmp = tmp + "=""" + F$EXTRACT(F$LOCATE("=",P'i')+1,F$LENGTH(P'i'),P'i') + """"
282 $ IF (F$EXTRACT(0,1,P'i') .EQS. "U") ! "-U"
285 $ IF (F$LOCATE("=",P'i') .EQ. F$LENGTH(P'i'))
287 $ tmp = P'i' + "="""""
291 $ IF (F$LOCATE("=",P'i') .LT. (F$LENGTH(P'i') - 1))
293 $ me = F$PARSE(me,,,"NAME") + F$PARSE(me,,,"TYPE")
294 $ echo "''me': use ""-Dsymbol=val"" not ""-Usymbol=val""."
295 $ echo "''me': ignoring -U",P'i'
297 $ tmp = P'i' + "=""undef"""
304 $ IF (F$EXTRACT(0,1,P'i') .EQS. "V")
306 $ me = F$PARSE(me,,,"NAME") + F$PARSE(me,,,"TYPE")
307 $ echo "''me' generated by an unknown version of EDT."
313 $ echo "''me': unknown option ",P'i'
316 $ IF (F$LENGTH(P'i').GT.0).AND.(gotshortopt) THEN i = i - 1 !clustered switch
318 $ IF (i .LT. (bang + 1)) THEN GOTO Opt_loop
320 $ ENDIF ! (P1 .NES. "")
321 $ config_args = F$EDIT(config_args,"TRIM")
325 $ me = F$PARSE(me,,,"DIRECTORY")+ F$PARSE(me,,,"NAME")
326 $ echo "Usage: @''me' [-dehmr""EKOSV""] [-fconfig.sh] [""-Dsymbol""] [""-Dsymbol=value""]"
327 $ echo " [-Usymbol] [-Usymbol=]"
330 "-d" : use defaults for all answers.
331 "-e" : go on without questioning past the production of config.sh. *
332 "-f" : specify an alternate default configuration file.
333 "-h" : print this help message and exit (with an error status).
334 "-m" : skip the MANIFEST check to see that all files are present
335 "-r" : reuse C symbols value if possible (skips costly nm extraction).*
336 "-s" : silent mode, only echoes questions and essential information.
337 -"D" : define symbol to have some value: *
338 -"Dsymbol" symbol gets the value 'define'
339 -"Dsymbol=value" symbol gets the value 'value'
340 -E : stop at the end of questions, after having produced config.sh. *
341 -K : do not use unless you know what you are doing.
342 -O : let -D and -U override definitions from loaded configuration file. *
343 -S : perform variable substitutions on all .SH files (can mix with -f) *
344 -"U" : undefine symbol: *
345 -"Usymbol" symbol gets the value 'undef'
346 -"Usymbol=" symbol gets completely empty
347 -V : print version number and exit (with a zero status).
349 $ echo "%Config-I-VMS, lower case switches must be enclosed"
350 $ echo "-Config-I-VMS, in double quotation marks, e.g.:"
351 $ echo "-Config-I-VMS, @Configure ""-des"""
352 $ echo "-Config-I-VMS, * indicates switch may not be fully implemented for VMS."
353 $ SET DEFAULT 'vms_default_directory_name' !be kind rewind
355 $ EXIT 3 ! $STATUS = "%X00000003" (informational)
361 $ IF F$Mode() .eqs. "BATCH"
363 $ STDOUT = F$PARSE(F$GETQUI("DISPLAY_ENTRY", "JOB_NAME"), -
364 F$GETQUI("DISPLAY_ENTRY", "LOG_SPECIFICATION"), ".LOG")
365 $ WRITE SYS$OUTPUT "Warning: Executing in batch mode. To avoid file locking conflicts,"
366 $ WRITE SYS$OUTPUT "output intended for SYS$OUTPUT will be sent to a new version"
367 $ WRITE SYS$OUTPUT STDOUT
369 $ STDOUT = F$TRNLNM("SYS$OUTPUT")
371 $ DEFINE SYS$OUTPUT "_NLA0:"
372 $ echo4 = "write STDOUT "
373 $ cat4 = "TYPE/OUTPUT=''STDOUT'"
374 $ open/write/share=read STDOUT 'STDOUT'
382 $ echo4 = "write SYS$OUTPUT "
386 $!: run the defines and the undefines, if any, but leave the file out there...
387 $! Unfortunately Configure.COM in DCL is not yet set up to do this -
392 $ packageup = F$EDIT((package - "5"),"UPCASE")
394 $!: Eunice requires " " instead of "", can you believe it
397 $ echo "Beginning of configuration questions for ''package'."
400 $!: Some greps do not return status, grrr.
401 $ contains = "SEARCH"
403 $!: first determine how to suppress newline on echo command !cant DCL is record oriented
404 $! echo "Checking ''echo' to see how to suppress newlines..."
405 $! echo "giving up..."
406 $! echo "The star should be here-->*"
408 $!: Now test for existence of everything in MANIFEST
410 $ echo4 "First let's make sure your kit is complete. Checking..."
413 $! Here I assume we are in the [foo.PERLxxx...] tree
414 $! because the search routine simply does set def [-] if necessary.
415 $ file_2_find = "MANIFEST" !I hope this one is not in [foo.PERL5xxx.VMS...]
417 $ manifestfound = F$SEARCH(file_2_find)
418 $ IF (manifestfound .EQS. "")
420 $ IF F$PARSE(F$ENVIRONMENT("DEFAULT"),,,"DIRECTORY",).NES."[000000]"
423 $ GOTO Research_manifest
426 $ echo "There is no MANIFEST file. I hope your kit is complete !"
428 $ GOTO Beyond_manifest
431 $! MANIFEST. has been found and we have set def'ed there.
432 $! Time to bail out before it's too late, i.e. too deep.
433 $! Depth check is unnecessary on Alpha VMS V7.2++ (even for ODS-2).
434 $ tmp = f$extract(1,3,f$edit(f$getsyi("VERSION"),"TRIM,COLLAPSE"))
435 $ IF (tmp .GES. "7.2") .AND. (F$GETSYI("HW_MODEL") .GE. 1024) THEN GOTO Beyond_depth_check
436 $! Depth check also unnecessary on ODS 5 (or later) file systems.
437 $ tmp = F$INTEGER(F$GETDVI(F$ENVIRONMENT("DEFAULT"),"ACPTYPE") - "F11V")
438 $ IF (tmp .GE. 5) THEN GOTO Beyond_depth_check
439 $ IF (F$ELEMENT(max_allowed_dir_depth,".",F$ENVIRONMENT("DEFAULT")).nes.".")
443 %Config-E-VMS, ERROR:
444 Sorry! It apears as though your perl build sub-directory is already too
445 deep into the VMS file system. Please try moving stuff into a shallower
446 directory (or altering the "max_allowed_dir_depth" parameter).
448 $ echo4 "ABORTING..."
449 $ SET DEFAULT 'vms_default_directory_name' !be kind rewind
451 $ EXIT !2 !$STATUS = "%X00000002" (error)
455 $! after finding MANIFEST let's create (but not yet enter) the UU subdirectory
457 $ IF (manifestfound .NES. "")
459 $ IF ( F$SEARCH("UU.DIR").EQS."" )
461 $ CREATE/DIRECTORY [.UU]
463 $ IF ( F$SEARCH("[.UU]*.*").NES."" ) THEN DELETE/NOLOG [.UU]*.*;*
465 $!: Configure runs within the UU subdirectory
468 $! a little redundancy never hurt anybody?
469 $ file_2_find = "[-]" + file_2_find
470 $ manifestfound = F$SEARCH(file_2_find)
472 $ OPEN/WRITE MISSING MISSING.
473 $!change to "FALSE" if you wish to skip the manifest search
474 $!(which after all is rather slow in DCL :-)
477 $ echo "Skipping MANIFEST check as requested"
480 $ OPEN/READ CONFIG 'manifestfound'
482 $ READ/END_OF_FILE = Done_manifest CONFIG line
483 $! This algorithm turns "foo/bar/baz.c" into "[.foo.bar]baz.c"
484 $! pvhp@lns62.lns.cornell.edu 10-JUN-1996 20:31:46
485 $! 2-MAR-1998 15:46:11 Improved to turn "foo/bar/baz.c.buz"
486 $! into "[.foo.bar]baz.c_buz as happens with vmstar and unzip
487 $ line = F$EDIT(line,"TRIM, COMPRESS")
488 $ file_2_find = F$EXTRACT(0,F$LOCATE(" ",line),line)
489 $ IF F$LOCATE("/",file_2_find) .NE. F$LENGTH(file_2_find)
491 $Re_strip_line_manifest:
492 $ loca = F$LOCATE("/",file_2_find)
493 $ ante = F$EXTRACT(0,loca,file_2_find)
494 $ post = F$EXTRACT(loca,F$LENGTH(file_2_find),file_2_find)
495 $ test_this = ante + "." + (post - "/")
496 $ IF F$LOCATE("/",test_this) .NE. F$LENGTH(test_this)
498 $ file_2_find = ante + "." + (post - "/")
499 $ GOTO Re_strip_line_manifest
501 $ file_2_find = ante + "]" + (post - "/")
503 $ file_2_find = "[-."+file_2_find
505 $ file_2_find = "[-]" + file_2_find
508 $ dirname = F$EXTRACT(0,F$LOCATE("]",file_2_find),file_2_find) + "]"
509 $ file_2_find = file_2_find - dirname
512 $ dot_ele = F$ELEMENT(dots,".",file_2_find)
513 $ IF dot_ele .EQS. "." THEN GOTO Eo_dot_loop
515 $ THEN basename = f$extract(0,f$locate(".",file_2_find),file_2_find) + "."
516 $ ELSE basename = basename + dot_ele + "_"
521 $ IF (((f$length(file_2_find)+1) .eq. f$length(basename)) .and. -
522 (f$extract(f$length(basename)-1,1,basename) .eqs. "_")) THEN -
523 basename = f$extract(0,f$length(basename)-1,basename)
524 $ file_2_find = dirname + basename
526 $ found = F$SEARCH(file_2_find)
527 $ IF (found .EQS. "" .AND. dots .GT. 2)
529 $! 17-DEC-1999 Improved to turn "[.foo.bar]baz.c_buz" into
530 $! "[.foo.bar]baz_c.buz" to cover unzipped archives and put
531 $! "[.foo.bar]baz.c_buz,baz_c.buz" into missing list if neither is found.
532 $ basename[f$locate(".",basename),1] := _
533 $ dot_ele = F$ELEMENT(dots - 1,"_",basename)
535 f$extract(0,f$length(basename)-(f$length(dot_ele)+1),basename) -
537 $ found = F$SEARCH(dirname + basename)
538 $ file_2_find = file_2_find + "," + basename
540 $ IF (found .EQS. "")
542 $ WRITE MISSING file_2_find
543 $ IF ((F$LENGTH(miss_list)+F$LENGTH(file_2_find)).LT.250)
545 $ miss_list = miss_list + "," + file_2_find
548 $ GOTO Read_loop_manifest
553 $ ENDIF ! (manifestfound .NES. "")
555 $ IF (miss_list .NES. "")
557 $ echo "Some of the files not found include:"
560 $ IF ((miss_list .NES. "").OR.(manifestfound .EQS. ""))
566 THIS PACKAGE SEEMS TO BE INCOMPLETE.
568 You have the option of continuing the configuration process, despite the
569 distinct possibility that your kit is damaged, by typing 'y'es. If you
570 do, don't blame me if something goes wrong. I advise you to type 'n'o
571 and contact the author (dan@sidhe.org)
574 $ READ SYS$COMMAND/PROMPT="Continue? [n] " ans
577 $ echo4 "Continuing..."
579 $ echo4 "ABORTING..."
583 $ echo4 "Looks good..."
584 $ DELETE/NOLOG MISSING.;
585 $ ENDIF ! (miss_list .NES. "")
586 $ ENDIF ! (manifestfound .EQS. "") ELSE
588 $! after finding MANIFEST (see above)
589 $!: Configure runs within the UU subdirectory
591 $!: compute the number of columns on the terminal for proper question formatting
592 $ IF F$MODE() .EQS. "BATCH"
593 $! else it winds up being 512 in batch
595 $ ELSE COLUMNS = F$GETDVI("SYS$OUTPUT","DEVBUFSIZ")
597 $! "-des" sets SYS$OUTPUT to NL: with a DEVBUFSIZ too large (512 again)
598 $ IF COLUMNS .GT. 210 THEN COLUMNS = 80
599 $! not sure if this would actually be needed - it hopefully will not hurt
600 $ IF COLUMNS .LT. 40 THEN COLUMNS = 40
602 $!: set up the echo used in my read !sfn
603 $!: now set up to do reads with possible shell escape and default assignment !sfn
606 $! The sub_rp splitting is intended to handle long symbols such as the dflt for
611 $ len_rp = F$LENGTH(rp)
612 $ If (.NOT. silent) Then echo ""
617 $ sub_rp = F$EXTRACT(i_rp,COLUMNS,rp)
618 $ i_rp = i_rp + COLUMNS
619 $ if i_rp .LT. len_rp THEN echo4 "''sub_rp'"
620 $ IF i_rp .LT. len_rp THEN GOTO rp_loop
628 $ READ SYS$COMMAND/PROMPT="''sub_rp'" ans
630 $ IF (ans .EQS. "&-d")
632 $ echo4 "(OK, I will run with -d after this question.)"
634 $ deferred_fastread =1
637 $ IF (ans .EQS. "&-s")
639 $ echo4 "(OK, I will run with -s after this question.)"
641 $ deferred_silent = 1
644 $ if (bool_dflt .nes. "")
646 $ if (ans .eqs. "") then ans = bool_dflt
647 $ ans = f$extract(0,1,f$edit(ans,"collapse,upcase"))
648 $ if (ans .eqs. "Y" .or. ans .eqs. "1" .or. ans .eqs. "T")
652 $ if (ans .eqs. "N" .or. ans .eqs. "0" .or. ans .eqs. "F")
656 $ echo4 "Input not understood please answer 'Yes' or 'No'"
662 $ ans = f$edit(ans,"trim,compress")
663 $ if (ans .eqs. "") then ans = dflt
664 $ if (f$edit(ans,"upcase") .eqs. "NONE") then ans = ""
666 $ if f$type(deferred_silent) .nes. ""
670 $ delete/symbol deferred_silent
672 $ if f$type(deferred_fastread) .nes. ""
675 $ delete/symbol deferred_fastread
681 $!: create .config dir to save info across Configure sessions
682 $ IF ( F$SEARCH("[-]CONFIG.DIR").EQS."" )
684 $ CREATE/DIRECTORY [-.CONFIG]
685 $ OPEN/WRITE CONFIG [-.CONFIG]README.
687 "This directory created by Configure to save information that should"
689 "persist across sessions."
692 "You may safely delete it if you wish."
696 $ IF F$TYPE(usedevel) .EQS. "" THEN usedevel := n
697 $ patchlevel_h = F$SEARCH("[-]patchlevel.h")
698 $ IF (patchlevel_h.NES."")
700 $ SEARCH 'patchlevel_h' "define","PERL_VERSION","epoch"/match=and/out=[]ver.out
701 $ IF .NOT. usedevel .AND. usedevel .NES. "define"
703 $ OPEN/READ CONFIG []ver.out
706 $ tmp = F$EDIT(line,"TRIM,COMPRESS")
707 $ xpatchlevel = F$INTEGER(F$ELEMENT(2," ",tmp))
708 $ line = xpatchlevel / 2
709 $ tmp = xpatchlevel - ( line * 2 )
712 $ echo4 "patchlevel is " + F$STRING(xpatchlevel)
715 *** WHOA THERE!!! ***
717 This is an UNSTABLE DEVELOPMENT release.
718 (The patchlevel, is odd--as opposed to even,
719 and that signifies a development release. If you want a
720 maintenance release, you want an even-numbered release.)
722 Do ***NOT*** install this into production use.
723 Data corruption and crashes are possible.
725 It is most seriously suggested that you do not continue any further
726 unless you want to help in developing and debugging Perl.
730 $ rp="Do you really want to continue? [''bool_dflt'] "
731 $ fastread_save = fastread
734 $ fastread = fastread_save
735 $ delete/symbol fastread_save
738 $ echo4 "Okay, continuing."
741 $ DELETE/NOLOG/NOCONFIRM []ver.out;
748 $ DELETE/NOLOG/NOCONFIRM []ver.out;
750 $!: general instructions
753 $ user = F$EDIT(F$GETJPI("","USERNAME"),"TRIM,COLLAPSE")
754 $ IF .NOT.(F$SEARCH("[-.CONFIG]INSTRUCT.").EQS."")
756 $ messages = F$ENVIRONMENT("MESSAGE")
757 $ SET MESSAGE/NOFAC/NOSEV/NOIDENT/NOTEXT
758 $ contains /NOOUTPUT [-.CONFIG]INSTRUCT. 'user'
759 $ IF .NOT.($status.EQ.%X08D78053)
763 $ rp = "Would you like to see the instructions? [''bool_dflt'] "
765 $ if .NOT.ans THEN needman=""
767 $ SET MESSAGE 'messages'
769 $ if (fastread.AND.silent.AND.(alldone.eqs."cont")) THEN needman=""
776 This installation shell script will examine your system and ask you questions
777 to determine how the perl5 package should be installed. If you get
778 stuck on a question, you may use a ^C or ^Y shell escape to STOP this
779 process, edit something, then restart this process as you just did.
780 Many of the questions will have default answers in square
781 brackets; typing carriage return will give you the default.
784 $ READ SYS$COMMAND/PROMPT="Type carriage return to continue " ans
788 In a hurry? You may run '@Configure "-d"'. This will bypass nearly all
789 the questions and use the computed defaults (or the previous answers provided
790 there was already a config.sh file). Type '@Configure "-h"' for a list of
794 $ READ SYS$COMMAND/PROMPT="Type carriage return to continue " ans
798 Much effort has been expended to ensure that this shell script will
799 run on any VMS system. If despite that it blows up on yours, your
800 best bet is to edit Configure.com and @ it again. Whatever problems
801 you have with Configure.com, let me (dan@sidhe.org) know how I blew
805 $!This installation script affects things in two ways:
807 $!1) it may do direct variable substitutions on some of the files included
809 $!2) it builds a config.h file for inclusion in C programs. You may edit
810 $! any of these files as the need arises after running this script.
812 $!If you make a mistake on a question, there is no easy way to back up to it
815 $ READ SYS$COMMAND/PROMPT="Type carriage return to continue " ans
816 $ IF (F$SEARCH("[-.CONFIG]INSTRUCT.").EQS."")
818 $ OPEN/WRITE CONFIG [-.CONFIG]INSTRUCT.
822 $ ENDIF !(needman .EQS. "true")
824 $!: see if sh knows # comments !sfn
826 $!: figure out how to guarantee sh startup !sfn
827 $!: find out where common programs are !sfn
828 $!loclist="awk/cat/comm/cp/echo/expr/find/grep/ln/ls/mkdir/rm/sed/sort/touch/tr/uniq"
829 $!trylist="byacc/cpp/csh/date/egrep/less/line/more/nroff/perl/pg/sendmail/test/uname"
830 $! echo "I don't know where '$file' is, and my life depends on it."
831 $! echo "Go find a public domain implementation or fix your PATH setting!"
833 $! echo "Don't worry if any of the following aren't found..."
834 $!: determine whether symbolic links are supported !sfn
835 $!: see whether [:lower:] and [:upper:] are supported character classes !sfn
836 $!: set up the translation script tr, must be called with ./tr of course !sfn
838 $!: Try to determine whether config.sh was made on this system
839 $!: Get old answers from old config file if Configure was run on the
840 $!: same system, otherwise use the hints.
841 $ config_sh_es = "''config_sh'/[-]config.sh/[-.vms]config.vms/"
845 $ config_sh = F$ELEMENT(i,"/",config_sh_es)
847 $ IF (config_sh.NES."/").AND.(config_sh.NES."")
849 $ configshfound = F$SEARCH(config_sh)
850 $ IF (configshfound.NES."") THEN GOTO Config_sh_found
852 $ IF (i.LT.max) THEN GOTO Config_sh_look
853 $! genconfig.pl has "osname='VMS'"
854 $ osname = F$EDIT(F$GETSYI("NODE_SWTYPE"),"COLLAPSE")
855 $ IF (configshfound.EQS."")
857 $ config_sh = "[-]config.sh" ! the fallback default
858 $ GOTO Beyond_config_sh
861 $ IF F$TYPE(osname) .EQS. "" THEN osname = F$EDIT(F$GETSYI("NODE_SWTYPE"),"COLLAPSE")
863 $ IF F$TYPE(config_dflt) .NES. "" THEN bool_dflt = config_dflt
864 $ rp = "Shall I use ''config_sh' for default answers? [''bool_dflt'] "
869 $ echo "Fetching default answers from ''config_sh'..."
871 $! we do our own parsing of the shell-script stuff
872 $! ...and only accept symbols if they're in the | delimited list below
874 $ config_symbols0 ="|archlib|archlibexp|bin|binexp|builddir|cf_email|config_sh|installarchlib|installbin|installman1dir|installman3dir|"
875 $ config_symbols1 ="|installprivlib|installscript|installsitearch|installsitelib|most|oldarchlib|oldarchlibexp|osname|pager|perl_symbol|perl_verb|"
876 $ config_symbols2 ="|prefix|privlib|privlibexp|scriptdir|sitearch|sitearchexp|sitelib|sitelib_stem|sitelibexp|try_cxx|use64bitall|use64bitint|"
877 $ config_symbols3 ="|usecasesensitive|usedefaulttypes|usedevel|useieee|useithreads|usemultiplicity|usemymalloc|usedebugging_perl|useperlio|usesecurelog|"
878 $ config_symbols4 ="|usethreads|usevmsdebug|"
880 $ open/read CONFIG 'config_sh'
882 $ read/end=erd_conf_loop CONFIG line
883 $ line = f$edit(line,"trim")
884 $ if line .eqs. "" .or. f$extract(0,1,line) .eqs. "#" then goto rd_conf_loop
885 $ sym = f$element(0,"=",line)
886 $ if sym .eqs. "=" then goto rd_conf_loop
890 $ syms = config_symbols'k'
891 $ j = f$locate(dsym, syms)
892 $ if j .lt. f$length(syms) then goto erd_ck_loop
894 $ if k .lt. 5 then goto rd_ck_loop
897 $ val = f$element(1,"=",line)
898 $ val = f$extract(1,f$length(val)-2,val)
899 $ write sys$output "''sym' = ""''val'"""
904 $ delete/symbol config_symbols0
905 $ delete/symbol config_symbols1
906 $ delete/symbol config_symbols2
907 $ delete/symbol config_symbols3
908 $ delete/symbol config_symbols4
912 $ if f$type(usedebugging_perl) .nes. ""
914 $ useperldebug = usedebugging_perl
915 $ delete/symbol usedebugging_perl
919 $ if f$type(config_dflt) .nes. "" then DELETE/SYMBOL config_dflt
921 $!we actually do not have "hints/" for VMS
925 $!First time through, eh? I have some defaults handy for the following systems:
928 $! echo " ","VMS_VAX"
929 $! echo " ","VMS_AXP"
930 $! : Now look for a hint file osname_osvers, unless one has been
931 $! : specified already.
934 $!You may give one or more space-separated answers, or "none" if appropriate.
935 $!If your OS version has no hints, DO NOT give a wrong version -- say "none".
937 $! READ SYS$COMMAND/PROMPT="Which of these apply, if any? " ans
941 $!: Restore computed paths !sfn
943 $! %Config-I-VMS, a necessary error trap (could be PC running VCL)
945 $ IF (osname .NES. "VMS")
947 $ echo4 "Hmm.. I wonder what ''osname' is (?)"
951 %Config-E-VMS, ERROR:
953 Err, you do not appear to be running VMS!
954 This procedure is intended to Configure the building of Perl for VMS.
961 $ echo4 "Continuing..."
963 $ echo4 "ABORTING..."
964 $ SET DEFAULT 'vms_default_directory_name' !be kind rewind
966 $ EXIT 2 !$STATUS = "%X00000002" (error)
968 $ ENDIF !(osname .NES./.EQS. "VMS")
970 $!: who configured the system
971 $ cf_by = F$EDIT(user,"LOWERCASE")
972 $ osvers = F$EDIT(F$GETSYI("VERSION"),"TRIM")
974 $! Peter Prymmer has seen:
975 $! "SYS$TIMEZONE_DIFFERENTIAL" = "-46800" (sic)
976 $! "SYS$TIME_ZONE" = "EDT"
978 $! Charles Lane recommended:
979 $! "SYS$TIMEZONE_DIFFERENTIAL" = "-14400"
980 $! "NEWS_TIMEZONE" = "-0500"
981 $! "ST_TIMEZONE" = "EDT"
982 $! "JAN_TIME_ZONE" = "EST "
983 $! "MULTINET_TIMEZONE" = "EST"
984 $! "DAYLIGHT_SAVINGS" = "1"
986 $! Charles Bailey recommends (in ANU NEWS Doc Jan 1995):
988 $! "Multinet_Timezone"
989 $! "TCPware_Timezone"
992 $! This snippet o' DCL returns a string in default Unix `date` format,
993 $! and it will prompt to set SYS$TIMEZONE_DIFFERENTIAL.
995 $ MIN_TZO = -840 !units are minutes here
998 $ wkday = F$EXTRACT(0,3,F$CVTIME(,,"WEEKDAY"))
999 $ monn = F$CVTIME(,,"MONTH")
1000 $ mday = F$EXTRACT(8,2,F$CVTIME(,,"DATE"))
1001 $ hour = F$CVTIME(,,"HOUR")
1002 $ min = F$CVTIME(,,"MINUTE")
1003 $ sec = F$CVTIME(,,"SECOND")
1004 $ year = F$CVTIME(,,"YEAR")
1006 $ months = "/Jan/Feb/Mar/Apr/May/Jun/Jul/Aug/Sep/Oct/Nov/Dec/"
1010 $ mon = F$ELEMENT(i,"/",months)
1011 $ IF i.LT.monn THEN GOTO Mon_loop
1014 $ systz = F$TRNLNM("SYS$TIMEZONE_DIFFERENTIAL")
1017 $ tzhour = F$INTEGER(systz)/3600
1018 $ tzmins = F$INTEGER(systz)/60
1019 $ tzminrem = tzmins - tzhour*60
1020 $ IF tzminrem.lt.0 THEN tzminrem = -1*tzminrem !keeps !2ZL happy
1022 $ THEN signothetime = "+"
1023 $ IF tzhour.EQ.0.AND.tzminrem.EQ.0
1024 $ THEN direction = "on GMT/"
1025 $ ELSE direction = "east of "
1027 $ ELSE signothetime = "-"
1028 $ tzhour = -1*tzhour !keeps !UL happy
1029 $ direction = "west of "
1032 $ echo "According to the setting of your ""SYS$TIMEZONE_DIFFERENTIAL"" (= ''systz')"
1035 $ tzspan = "''tzhour' hours & ''tzminrem' minutes"
1037 $ tzspan = "''tzhour' hours"
1040 $ echo "Your system is ''tzspan' ''direction'UTC in England."
1041 $ rp = "(''systz') Is this UTC Time Zone Offset correct? [''bool_dflt'] "
1047 $ GOTO Beyond_TimeZone
1051 $ echo4 """SYS$TIMEZONE_DIFFERENTIAL"" does not appear to be DEFINEd on your system"
1056 $ echo "Please tell me in hh:mm form what time offset from GMT/UTC in England"
1057 $ echo "you are. As an example Eastern (US) Standard Time is -5:00 offset, but"
1058 $ echo "Eastern Daylight Time (summer) is -4:00 offset."
1060 $ rp = "Enter the Time Zone offset: [''dflt'] "
1062 $ ans = F$Edit(ans,"collapse,trim,uncomment,upcase")
1063 $ IF ans.EQS."" THEN ans = dflt
1064 $ tzhour = F$ELEMENT(0,":","''ans'") !first
1065 $ IF tzhour.EQS."" THEN tzhour = 0
1066 $ tzhour = F$INTEGER(tzhour)
1067 $ tzminrem = F$ELEMENT(1,":","''ans'") !second
1068 $ IF tzminrem.NES.""
1070 $ tzminrem = F$INTEGER(tzminrem)
1071 $ IF F$EXTRACT(0,1,"''ans'") .EQS. "-" THEN tzminrem = tzminrem * -1
1075 $ tzmins = tzhour*60 + tzminrem
1076 $ tzd = F$STRING(tzmins*60)
1079 $ signothetime = "+"
1081 $ tzhour = -1*tzhour !keeps !UL happy
1082 $ signothetime = "-"
1084 $ IF (tzmins.GT.MAX_TZO).OR.(tzmins.LT.MIN_TZO)
1087 $ echo "%Config-W-VMS-TIMERANGE, Response must be in the range -14:00 to 14:00."
1092 $ tz = f$fao("UTC!AS!UL:!2ZL",signothetime,tzhour,tzminrem)
1093 $ cf_time = "''wkday' ''mon' ''mday' ''hour':''min':''sec' ''tz' ''year'"
1095 $!: determine the architecture name
1096 $! genconfig.pl has either archname='VMS_AXP' or 'VMS_VAX'
1097 $! Note that DCL in VMS V5.4 does not have F$GETSYI("ARCH_NAME")
1098 $! but does have F$GETSYI("HW_MODEL").
1099 $! Please try to use either archname .EQS. "VMS_VAX" or archname .EQS.
1100 $! "VMS_AXP" from here on to allow cross-platform configuration (e.g.
1101 $! configure a VAX build on an Alpha).
1103 $ IF (F$GETSYI("HW_MODEL") .LT. 1024)
1105 $ archname = "VMS_VAX"
1106 $ otherarch = "an Alpha"
1108 $ arch_type = "ARCH-TYPE=__VAX__"
1110 $ archname = "VMS_AXP"
1111 $ otherarch = "a VAX"
1113 $ arch_type = "ARCH-TYPE=__AXP__"
1116 $ rp = "What is your architecture name? [''archname'] "
1120 $ ans = F$EDIT(ans,"COLLAPSE, UPCASE")
1121 $ IF (ans.NES.archname) !.AND.knowitall
1123 $ echo4 "I'll go with ''archname' anyway..."
1127 $ vms_prefix = "perl_root"
1128 $ vms_prefixup = F$EDIT(vms_prefix,"UPCASE")
1129 $ rp = "Will you be sharing your ''vms_prefixup' with ''otherarch'? [''bool_dflt'] "
1136 $ IF (archname.EQS."VMS_AXP")
1138 $ macros = macros + """AXE=1"","
1142 $!: is AFS running? !sfn
1143 $!: decide how portable to be. Allow command line overrides. !sfn
1144 $!: set up shell script to do ~ expansion !sfn
1145 $!: expand filename !sfn
1146 $!: now set up to get a file name !sfn
1148 $ IF F$TYPE(prefix) .EQS. ""
1150 $ prefix = F$ENVIRONMENT("DEFAULT") - ".UU]" + "]"
1151 $ prefix = F$PARSE(prefix,,,,"NO_CONCEAL") - "][" - "000000." - ".000000" - ".;"
1152 $ prefixbase = prefix - "]"
1153 $! Add _ROOT to make install PERL_ROOT differ from build directory.
1154 $ prefix = prefixbase + "_ROOT.]"
1157 $!: determine root of directory hierarchy where package will be installed.
1162 $ echo "By default, ''package' will be installed in ''dflt', pod"
1163 $ echo "pages under ''prefixbase'.LIB.POD], etc..., i.e. with ''dflt' as prefix for"
1164 $ echo "all installation directories."
1165 $ echo "On ''osname' the prefix is used to DEFINE the ''vms_prefixup' prior to installation"
1166 $ echo "as well as during subsequent use of ''package' via ''packageup'_SETUP.COM."
1168 $ rp = "Installation prefix to use (for ''vms_prefixup')? [ ''dflt' ] "
1173 $ IF F$LOCATE(".]",ans) .EQ. F$LENGTH(ans) THEN prefix = prefix - "]" + ".]"
1177 $ perl_root = prefix
1179 $! Check here for pre-existing PERL_ROOT.
1180 $! -> ask if removal desired.
1181 $! Check here for writability of requested PERL_ROOT if it is not the default (cwd).
1182 $! -> recommend letting PERL_ROOT be PERL_SRC if requested PERL_ROOT is not writable.
1184 $ tmp = perl_root - ".]" + "]"
1185 $ dflt = f$parse(tmp,,,,)
1188 $ echo4 "''tmp' does not yet exist."
1189 $! create/directory 'tmp'
1191 $ echo4 "''tmp' already exists."
1194 $ vms_skip_install = "true"
1197 $ rp = "Skip the remaining """"where install"""" questions? [''bool_dflt'] "
1199 $ IF (.NOT.ans) THEN vms_skip_install = "false"
1200 $ IF (.NOT.vms_skip_install)
1203 $!: set the prefixit variable, to compute a suitable default value
1205 $!: determine where private library files go
1206 $!: Usual default is /usr/local/lib/perl5. Also allow things like
1207 $!: /opt/perl/lib, since /opt/perl/lib/perl5 would be redundant.
1213 There are some auxiliary files for perl5 that need to be put into a
1214 private library directory that is accessible by everyone.
1217 $ IF F$TYPE(privlib) .NES. ""
1218 $ THEN dflt = privlib
1219 $ ELSE dflt = "''vms_prefix':[lib]"
1221 $ rp = "Pathname where the private library files will reside? "
1222 $ rp = F$FAO("!AS!/!AS",rp,"[ ''dflt' ] ")
1226 $ ENDIF !%Config-I-VMS, skip remaining "where install" questions
1228 $ IF F$TYPE(perl_symbol) .EQS. "" THEN perl_symbol := true
1229 $ IF F$TYPE(perl_verb) .EQS. "" THEN perl_verb = ""
1231 $ THEN bool_dflt = "y"
1232 $ ELSE bool_dflt = "n"
1237 $ echo "You may choose to write ''packageup'_SETUP.COM to assign a foreign"
1238 $ echo "symbol to invoke ''package', which is the usual method."
1239 $ echO "If you do not do so then you would need a DCL command verb at the"
1240 $ echo "process or the system wide level."
1242 $ rp = "Invoke perl as a global symbol foreign command? [''bool_dflt'] "
1244 $ IF (.NOT.ans) THEN perl_symbol = "false"
1246 $ IF (.NOT.perl_symbol)
1248 $ IF perl_verb .EQS. "DCLTABLES"
1249 $ THEN bool_dflt = "n"
1250 $ ELSE bool_dflt = "y"
1255 $ echo "Since you won't be using a symbol you must choose to put the ''packageup'"
1256 $ echo "verb in a per-process table or in the system wide DCLTABLES (which"
1257 $ echo "would require write privilege)."
1259 $ rp = "Invoke perl as a per process command verb? [ ''bool_dflt' ] "
1262 $ THEN perl_verb = "DCLTABLES"
1263 $ ELSE perl_verb = "PROCESS"
1265 $ ENDIF ! (.NOT.perl_symbol)
1267 $!: set the base revision
1269 $ revision = baserev - ".0"
1270 $!: get the patchlevel
1272 $ echo4 "Getting the current patchlevel..."
1273 $ patchlevel_h = F$SEARCH("[-]patchlevel.h")
1274 $ IF (patchlevel_h.NES."")
1276 $ got_patch = "false"
1278 $ got_api_revision = "false"
1279 $ got_api_version = "false"
1280 $ got_api_subversion = "false"
1281 $ got_perl_patchlevel= "false"
1282 $ OPEN/READONLY CONFIG 'patchlevel_h'
1284 $ READ/END_Of_File=Close_patch/ERROR=Close_patch CONFIG line
1285 $ IF ((F$LOCATE("#define PERL_VERSION",line).NE.F$LENGTH(line)).AND.(.NOT.got_patch))
1287 $ line = F$EDIT(line,"COMPRESS, TRIM")
1288 $ patchlevel = F$ELEMENT(2," ",line)
1289 $ got_patch = "true"
1291 $ IF ((F$LOCATE("#define PERL_SUBVERSION",line).NE.F$LENGTH(line)).AND.(.NOT.got_sub))
1293 $ line = F$EDIT(line,"COMPRESS, TRIM")
1294 $ subversion = F$ELEMENT(2," ",line)
1297 $ IF ((F$LOCATE("#define PERL_API_REVISION",line).NE.F$LENGTH(line)).AND.(.NOT.got_api_revision))
1299 $ line = F$EDIT(line,"COMPRESS, TRIM")
1300 $ api_revision = F$ELEMENT(2," ",line)
1301 $ got_api_revision = "true"
1303 $ IF ((F$LOCATE("#define PERL_API_VERSION",line).NE.F$LENGTH(line)).AND.(.NOT.got_api_version))
1305 $ line = F$EDIT(line,"COMPRESS, TRIM")
1306 $ api_version = F$ELEMENT(2," ",line)
1307 $ got_api_version = "true"
1309 $ IF ((F$LOCATE("#define PERL_API_SUBVERSION",line).NE.F$LENGTH(line)).AND.(.NOT.got_api_subversion))
1311 $ line = F$EDIT(line,"COMPRESS, TRIM")
1312 $ api_subversion = F$ELEMENT(2," ",line)
1313 $ got_api_subversion = "true"
1315 $ IF ((F$LOCATE("""DEVEL",line).NE.F$LENGTH(line)).AND.(.NOT.got_perl_patchlevel))
1317 $ line = F$EDIT(line,"COMPRESS, TRIM")
1318 $ perl_patchlevel = F$ELEMENT(1,"""",line)
1319 $ perl_patchlevel = perl_patchlevel - "DEVEL"
1320 $ got_perl_patchlevel = "true"
1322 $ IF (.NOT. got_patch) .OR. -
1323 (.NOT. got_sub) .OR. -
1324 (.NOT. got_api_revision) .OR. -
1325 (.NOT. got_api_version) .OR. -
1326 (.NOT. got_api_subversion) .OR. -
1327 (.NOT. got_perl_patchlevel) -
1328 THEN GOTO Patchlevel_h_loop
1336 $ api_subversion="0"
1337 $ perl_patchlevel="0"
1339 $ version_patchlevel_string = "version ''patchlevel' subversion ''subversion'"
1340 $ IF got_perl_patchlevel .AND. perl_patchlevel .NES. "0"
1342 $ version_patchlevel_string = "''version_patchlevel_string' patch ''perl_patchlevel'"
1344 $ echo "(You have ''package' ''version_patchlevel_string'.)"
1346 $ version = revision + "_" + patchlevel + "_" + subversion
1348 $ IF (.NOT.vms_skip_install)
1350 $!: set the prefixup variable, to restore leading tilde escape !sfn
1352 $!: determine where public architecture dependent libraries go
1356 $ echo "''package' contains architecture-dependent library files. If you are"
1362 sharing libraries in a heterogeneous environment, you might store
1363 these files in a separate location. Otherwise, you can just include
1364 them with the rest of the public library files.
1367 $ IF F$TYPE(archlib) .NES. ""
1368 $ THEN dflt = archlib
1369 $ ELSE dflt = privlib - "]" + "." + archname + "." + version + "]"
1371 $ rp = "Where do you want to put the public architecture-dependent libraries? "
1372 $ rp = F$FAO("!AS!/!AS",rp,"[ ''dflt' ] ")
1376 $ ENDIF !%Config-I-VMS, skip "where install" questions
1378 $! This quotation from Configure has to be included on VMS:
1383 There is, however, a strange, musty smell in the air that reminds me of
1384 something...hmm...yes...I've got it...there's a VMS nearby, or I'm a Blit.
1386 $ IF (.NOT.vms_skip_install)
1388 $!: it so happens the Eunice I know will not run shell scripts in Unix format
1390 $!: see if setuid scripts can be secure !sfn
1391 $!: now see if they want to do setuid emulation !sfn
1393 $!: determine where site specific libraries go.
1399 The installation process will also create a directory for
1400 site-specific extensions and modules. Some users find it convenient
1401 to place all local files in this directory rather than in the main
1402 distribution directory.
1405 $ IF F$TYPE(sitelib) .NES. ""
1406 $ THEN dflt = sitelib
1407 $ ELSE dflt = privlib - "]" + ".SITE_PERL]"
1409 $ rp = "Pathname for the site-specific library files? "
1410 $ rp = F$FAO("!AS!/!AS",rp,"[ ''dflt' ] ")
1414 $!: determine where site specific architecture-dependent libraries go.
1416 $ THEN TYPE SYS$INPUT:
1419 The installation process will also create a directory for
1420 architecture-dependent site-specific extensions and modules.
1423 $ IF F$TYPE(sitearch) .NES. ""
1424 $ THEN dflt = sitearch
1425 $ ELSE dflt = sitelib - "]" + "." + archname + "]"
1427 $ rp = "Pathname for the site-specific architecture-dependent library files? "
1428 $ rp = F$FAO("!AS!/!AS",rp,"[ ''dflt' ] ")
1432 $!: determine where old public architecture dependent libraries might be
1434 $!: determine where public executables go
1435 $ IF F$TYPE(bin) .NES. ""
1437 $! ELSE dflt = prefix - ".]" + ".BIN]"
1438 $ ELSE dflt = "/''vms_prefix'/000000"
1440 $ rp = "Pathname where the public executables will reside? "
1441 $ rp = F$FAO("!AS!/!AS",rp,"[ ''dflt' ] ")
1445 $!: determine where manual pages are on this system
1446 $!: What suffix to use on installed man pages
1447 $!: see if we can have long filenames
1448 $!: determine where library module manual pages go
1449 $!: What suffix to use on installed man pages
1450 $!: see what memory models we can support
1452 $ ELSE ! skipping "where install" questions, we must set some symbols
1453 $ IF F$TYPE(archlib).EQS."" THEN -
1454 archlib="''vms_prefix':[lib.''archname'.''version']"
1455 $ IF F$TYPE(bin) .EQS. "" THEN -
1456 bin="/''vms_prefix'/000000"
1457 $ IF F$TYPE(privlib) .EQS. "" THEN -
1458 privlib ="''vms_prefix':[lib]"
1459 $ IF F$TYPE(sitearch) .EQS. "" THEN -
1460 sitearch="''vms_prefix':[lib.site_perl.''archname']"
1461 $ IF F$TYPE(sitelib) .EQS. "" THEN -
1462 sitelib ="''vms_prefix':[lib.site_perl]"
1463 $ ENDIF !%Config-I-VMS, skip "where install" questions
1465 $! These derived locations can be set whether we've opted to
1466 $! skip the where install questions or not.
1468 $ IF F$TYPE(archlibexp) .EQS. "" THEN -
1469 archlibexp="''vms_prefix':[lib.''archname'.''version']"
1470 $ IF F$TYPE(binexp) .EQS. "" THEN -
1471 binexp ="''vms_prefix':[000000]"
1472 $ IF F$TYPE(builddir) .EQS. "" THEN -
1473 builddir ="''vms_prefix':[000000]"
1474 $ IF F$TYPE(installarchlib) .EQS. "" THEN -
1475 installarchlib="''vms_prefix':[lib.''archname'.''version']"
1476 $ IF F$TYPE(installbin) .EQS. "" THEN -
1477 installbin ="''vms_prefix':[000000]"
1478 $ IF F$TYPE(installscript) .EQS. "" THEN -
1479 installscript ="''vms_prefix':[utils]"
1480 $ IF F$TYPE(installman1dir) .EQS. "" THEN -
1481 installman1dir ="''vms_prefix':[man.man1]"
1482 $ IF F$TYPE(installman3dir) .EQS. "" THEN -
1483 installman3dir ="''vms_prefix':[man.man3]"
1484 $ IF F$TYPE(installprivlib) .EQS. "" THEN -
1485 installprivlib ="''vms_prefix':[lib]"
1486 $ IF F$TYPE(installsitearch) .EQS. "" THEN -
1487 installsitearch="''vms_prefix':[lib.site_perl.''archname']"
1488 $ IF F$TYPE(installsitelib) .EQS. "" THEN -
1489 installsitelib ="''vms_prefix':[lib.site_perl]"
1490 $ IF F$TYPE(oldarchlib) .EQS. "" THEN -
1491 oldarchlib="''vms_prefix':[lib.''archname']"
1492 $ IF F$TYPE(oldarchlibexp) .EQS. "" THEN -
1493 oldarchlibexp="''vms_prefix':[lib.''archname']"
1494 $ IF F$TYPE(privlibexp) .EQS. "" THEN -
1495 privlibexp ="''vms_prefix':[lib]"
1496 $ IF F$TYPE(scriptdir) .EQS. "" THEN -
1497 scriptdir ="''vms_prefix':[utils]"
1498 $ IF F$TYPE(sitearchexp) .EQS. "" THEN -
1499 sitearchexp ="''vms_prefix':[lib.site_perl.''archname']"
1500 $ IF F$TYPE(sitelib_stem) .EQS. "" THEN -
1501 sitelib_stem ="''vms_prefix':[lib.site_perl]"
1502 $ IF F$TYPE(sitelibexp) .EQS. "" THEN -
1503 sitelibexp ="''vms_prefix':[lib.site_perl]"
1505 $!: see if we need a special compiler
1506 $! cc_list = "cc/decc|gcc" !%Config-I-VMS, compiler symbols/commands
1510 $ vms_cc_available = ""
1512 $ OPEN/WRITE CONFIG ccvms.c
1513 $ WRITE CONFIG "#ifdef __DECC"
1514 $ WRITE CONFIG "#include <stdlib.h>" !DECC is sooo picky
1515 $ WRITE CONFIG "#endif"
1516 $ WRITE CONFIG "#include <stdio.h>"
1517 $ WRITE CONFIG "int main() {"
1518 $ WRITE CONFIG "#ifdef __DECC"
1519 $ WRITE CONFIG " printf(""/DECC\n"");"
1520 $ WRITE CONFIG "#else"
1521 $ WRITE CONFIG " printf(""/VAXC\n"");"
1522 $ WRITE CONFIG "#endif"
1523 $ WRITE CONFIG " exit(0);"
1527 $! DEFINE SYS$ERROR _NLA0:
1528 $! DEFINE SYS$OUTPUT _NLA0:
1529 $ cc/NoObj/list=ccvms.lis ccvms.c
1531 $! DEASSIGN SYS$OUTPUT
1532 $! DEASSIGN SYS$ERROR
1533 $ IF (silent) THEN GOSUB Shut_up
1534 $ IF tmp.NE.%X10B90001
1536 $ IF tmp.NE.%X10000001
1538 $ nocc = "t" !%X10000001 is return from gcc
1539 $ GOTO Gcc_initial_check
1544 $ IF .NOT.silent THEN echo ""
1545 $ echo "Default ""cc"" is ''line' ''archsufx' ''F$GETSYI("VERSION")'"
1546 $ IF F$LOCATE("VAX",line).NE.F$LENGTH(line)
1550 $ echo "Will try cc/decc..."
1552 $ DEFINE/USER_MODE SYS$ERROR NL:
1553 $ DEFINE/USER_MODE SYS$OUTPUT NL:
1555 $ cc/decc/NoObj/list=ccvms.lis ccvms.c
1558 $ IF (silent) THEN GOSUB Shut_up
1559 $ IF tmp.NE.%X10B90001
1561 $ echo "Apparently you don't have that one."
1564 $ echo "You also have: ''line' ''archsufx' ''F$GETSYI("VERSION")'"
1565 $ vms_cc_available = vms_cc_available + "cc/decc "
1568 $ IF (F$LOCATE("DEC",line).NE.F$LENGTH(line)).or.(F$LOCATE("Compaq",line).NE.F$LENGTH(line))
1570 $ vms_cc_dflt = "/decc"
1571 $ vms_cc_available = vms_cc_available + "cc/decc "
1576 $ echo "Checking for gcc"
1577 $ OPEN/WRITE CONFIG gccvers.lis
1578 $ DEFINE/USER_MODE SYS$ERROR CONFIG
1579 $ DEFINE/USER_MODE SYS$OUTPUT CONFIG
1580 $ 'gcc_symbol'/noobj/version _nla0:
1582 $ IF (silent) THEN GOSUB Shut_up
1584 $ IF (tmp.NE.%X10000001).and.(tmp.ne.%X00030001)
1586 $ echo "Symbol ""''gcc_symbol'"" is not defined. I guess you do not have it."
1587 $ DELETE/NOLOG/NOCONFIRM gccvers.lis;
1588 $ GOTO Cxx_initial_check
1590 $ OPEN/READ CONFIG gccvers.lis
1592 $ READ/END_OF_FILE=GCC_List_End CONFIG line
1593 $ GOTO GCC_List_Read
1597 $ vms_cc_available = vms_cc_available + "''gcc_symbol' "
1598 $ DELETE/NOLOG/NOCONFIRM gccvers.lis;
1602 $! Do note that [vms]perl source files have a ways to go before they will
1603 $! compile under CXX.
1604 $! In order to test Configure.com with CXX invoke it with "-Dtry_cxx" on
1605 $! the command line.
1607 $ IF F$TYPE(try_cxx) .EQS. "" THEN try_cxx := n
1608 $ IF try_cxx .OR. try_cxx .EQS. "define"
1612 $ echo "Checking for CXX..."
1613 $ OPEN/WRITE CONFIG ccvms.c
1614 $ WRITE CONFIG "#include <iostream>"
1615 $ WRITE CONFIG "int main() {"
1616 $ WRITE CONFIG "#ifdef __DECCXX"
1617 $ WRITE CONFIG " cout << __DECCXX, endl;"
1618 $ WRITE CONFIG "#else"
1619 $ WRITE CONFIG " cout << 0,endl;"
1620 $ WRITE CONFIG "#endif"
1621 $! Todo: add G++ identifier check ??
1622 $ WRITE CONFIG " return(0);"
1626 $ DEFINE/USER_MODE SYS$OUTPUT NL:
1627 $ DEFINE/USER_MODE SYS$ERROR NL:
1631 $! success $status with:
1632 $! DEC C++ V1.1-001 on VMS VAX V5.5-2
1633 $! DEC C++ V5.6-013 on OpenVMS VAX V7.1
1634 $! DEC C++ V6.1-003 on OpenVMS Alpha V7.1
1635 $! Compaq C++ V6.2-016 for OpenVMS Alpha V7.2-1
1636 $ IF tmp .eq. %X15F60001
1640 $ DEFINE/USER_MODE SYS$OUTPUT NL:
1641 $ DEFINE/USER_MODE SYS$ERROR NL:
1645 $ ! success $status with:
1646 $ ! link && DEC C++ V1.1-001 on VMS VAX V5.5-2
1647 $ ! link && DEC C++ V5.6-013 on OpenVMS VAX V7.1
1648 $ IF tmp .eq. %X10000001
1651 $ vms_cc_available = vms_cc_available + "cxx "
1652 $ echo "CXX and LINK are available."
1654 $ IF F$SEARCH("ccvms.exe") .NES. "" THEN DELETE/NOLOG/NOCONFIRM ccvms.exe;
1656 $ DEFINE/USER_MODE SYS$OUTPUT NL:
1657 $ DEFINE/USER_MODE SYS$ERROR NL:
1661 $ ! success $status with:
1662 $ ! cxxlink && DEC C++ V6.1-003 on OpenVMS Alpha V7.1
1663 $ ! cxxlink && Compaq C++ V6.2-016 for OpenVMS Alpha V7.2-1
1664 $ IF tmp .eq. %X10000001
1666 $ ld_try = "cxxlink"
1667 $ vms_cc_available = vms_cc_available + "cxx "
1668 $ echo "CXX and CXXLINK are available."
1671 $ IF F$SEARCH("ccvms.exe") .NES. "" THEN DELETE/NOLOG/NOCONFIRM ccvms.exe;
1675 $ DELETE/NOLOG/NOCONFIRM ccvms.c;
1676 $ IF F$SEARCH("ccvms.obj") .NES. "" THEN DELETE/NOLOG/NOCONFIRM ccvms.obj;
1677 $ CALL Cxx_demangler_cleanup
1679 $ ENDIF ! 1 .eq. 0 or 1 .eq. 1
1682 $ DELETE/NOLOG/NOCONFIRM ccvms.*;
1684 $!: see if we need a special compiler
1686 $ echo "Available compiler(s):"
1687 $ echo "( ''vms_cc_available')"
1690 $ dflt = "cc''vms_cc_dflt'" !-> "cc" in case first compile went OK
1694 $ rp = "Use which C compiler? [''dflt'] "
1698 $ ans = F$EDIT(ans,"TRIM, COMPRESS, LOWERCASE")
1700 $ IF (F$LOCATE("dec",ans).NE.F$LENGTH(ans)).or.(F$LOCATE("compaq",ans).NE.F$LENGTH(ans))
1705 $ C_COMPILER_Replace = "CC=cc=''Mcc'"
1707 $ IF F$LOCATE("cxx",F$EDIT(ans,"COLLAPSE,LOWERCASE")) .NE. F$LENGTH(ans)
1712 $ C_COMPILER_Replace = "CC=cc=''Mcc'"
1716 $ IF F$LOCATE("dec",dflt) .NE. F$LENGTH(dflt) .or. -
1717 F$LOCATE("compaq",dflt) .NE. F$LENGTH(dflt)
1719 $ C_COMPILER_Replace = "CC=cc=''Mcc'"
1724 $ IF Mcc .EQS. "cc/decc"
1727 $ C_COMPILER_Replace = "CC=cc=''Mcc'"
1733 $ IF Mcc .EQS. "cc/decc"
1736 $ C_COMPILER_Replace = "CC=cc=''Mcc'"
1738 $ IF Mcc .EQS. "gcc"
1741 $ C_COMPILER_Replace = "CC=cc=''Mcc'"
1744 $Decc_Version_check:
1746 $ IF ccname .EQS. "DEC"
1749 $ echo4 "Checking for the Dec C version number..."
1750 $ OPEN/WRITE CONFIG deccvers.c
1751 $ WRITE CONFIG "#include <stdlib.h>" !DECC is sooo picky
1752 $ WRITE CONFIG "#include <stdio.h>"
1753 $ WRITE CONFIG "int main() {"
1754 $ WRITE CONFIG "#ifdef __DECC"
1755 $ WRITE CONFIG "#ifdef __DECC_VER"
1756 $ WRITE CONFIG " printf(""%i\n"", __DECC_VER);"
1757 $ WRITE CONFIG "#else"
1758 $ WRITE CONFIG " printf(""%i\n"", ""1"");"
1759 $ WRITE CONFIG "#endif"
1760 $ WRITE CONFIG "#endif"
1761 $ WRITE CONFIG " exit(0);"
1765 $ DEFINE/USER_MODE SYS$ERROR NL:
1766 $ DEFINE/USER_MODE SYS$OUTPUT NL:
1769 $ IF (silent) THEN GOSUB Shut_up
1770 $ DEFINE/USER_MODE SYS$ERROR NL:
1771 $ DEFINE/USER_MODE SYS$OUTPUT NL:
1774 $ IF (silent) THEN GOSUB Shut_up
1775 $ OPEN/WRITE CONFIG deccvers.out
1776 $ DEFINE/USER_MODE SYS$ERROR CONFIG
1777 $ DEFINE/USER_MODE SYS$OUTPUT CONFIG
1778 $ mcr []deccvers.exe
1782 $ IF (silent) THEN GOSUB Shut_up
1783 $ OPEN/READ CONFIG deccvers.out
1784 $ READ/END_OF_FILE=Dec_c_cleanup CONFIG line
1787 $ echo "You are using Dec C ''line'"
1789 $ Dec_C_Version = F$INTEGER(line)
1790 $ IF Dec_C_Version .GE. 60200000
1792 $ echo4 "adding /NOANSI_ALIAS qualifier to ccflags."
1793 $ ccflags = ccflags + "/NOANSI_ALIAS"
1795 $ DELETE/NOLOG/NOCONFIRM deccvers.*;
1799 $ IF ccname .EQS. "GCC"
1801 $ vaxcrtl_olb = F$SEARCH("SYS$LIBRARY:VAXCRTL.OLB")
1802 $ vaxcrtl_exe = F$SEARCH("SYS$SHARE:VAXCRTL.EXE")
1803 $ gcclib_olb = F$SEARCH("GNU_CC:[000000]GCCLIB.OLB")
1804 $ IF gcclib_olb .EQS. ""
1806 $! These objects/libs come w/ gcc 2.7.2 for AXP:
1807 $ tmp = F$SEARCH("GNU_CC:[000000]libgcc2.olb")
1808 $ IF tmp .NES. "" then gcclib_olb = tmp
1809 $ tmp = F$SEARCH("GNU_CC:[000000]libgcclib.olb")
1812 $ IF gcclib_olb .EQS. ""
1813 $ THEN gcclib_olb = tmp
1814 $ ELSE gcclib_olb = gcclib_olb + "/lib," + tmp
1817 $ tmp = F$SEARCH("SYS$LIBRARY:VAXCRTL.OLB")
1820 $ IF gcclib_olb .EQS. ""
1821 $ THEN gcclib_olb = tmp
1822 $ ELSE gcclib_olb = gcclib_olb + "/lib," + tmp
1825 $ tmp = F$SEARCH("GNU_CC:[000000]crt0.obj")
1828 $ IF gcclib_olb .EQS. ""
1829 $ THEN gcclib_olb = tmp
1830 $ ELSE gcclib_olb = gcclib_olb + "/lib," + tmp
1833 $ IF gcclib_olb .EQS. vaxcrtl_olb THEN gcclib_olb = "" !goofy order of axplibs
1835 $ gcclib_olb = gcclib_olb + "/lib"
1837 $ IF gcclib_olb .NES. "" .AND. -
1838 (vaxcrtl_olb .NES. "" .OR. -
1839 vaxcrtl_exe .NES. "" )
1842 $ echo4 "Checking for GNU cc in disguise and/or its version number..." !>&4
1843 $ OPEN/WRITE CONFIG gccvers.c
1844 $ WRITE CONFIG "#include <stdio.h>"
1845 $ WRITE CONFIG "int main() {"
1846 $ WRITE CONFIG "#ifdef __GNUC__"
1847 $ WRITE CONFIG "#ifdef __VERSION__"
1848 $ WRITE CONFIG " printf(""%s\n"", __VERSION__);"
1849 $ WRITE CONFIG "#else"
1850 $ WRITE CONFIG " printf(""%s\n"", ""1"");"
1851 $ WRITE CONFIG "#endif"
1852 $ WRITE CONFIG "#endif"
1853 $ WRITE CONFIG " exit(0);"
1856 $ DEFINE SYS$ERROR _NLA0:
1857 $ DEFINE SYS$OUTPUT _NLA0:
1860 $ DEASSIGN SYS$ERROR _NLA0:
1861 $ DEASSIGN SYS$OUTPUT _NLA0:
1862 $ IF (silent) THEN GOSUB Shut_up
1863 $ DEFINE SYS$ERROR _NLA0:
1864 $ DEFINE SYS$OUTPUT _NLA0:
1865 $ IF vaxcrtl_exe .EQS. ""
1867 $ IF F$LOCATE("VAXCRTL",gcclib_olb).NE.F$LENGTH(gcclib_olb)
1869 $ link gccvers.obj,'gcclib_olb',SYS$LIBRARY:VAXCRTL/Library
1872 $ link gccvers.obj,'gcclib_olb'
1876 $ OPEN/WRITE CONFIG GCCVERS.OPT
1877 $ WRITE CONFIG "SYS$SHARE:VAXCRTL/SHARE"
1879 $ link gccvers.obj,GCCVERS.OPT/OPT,'gcclib_olb'
1882 $ DEASSIGN SYS$ERROR
1883 $ DEASSIGN SYS$OUTPUT
1884 $ IF (silent) THEN GOSUB Shut_up
1885 $ OPEN/WRITE CONFIG gccvers.out
1886 $ DEFINE SYS$ERROR CONFIG
1887 $ DEFINE SYS$OUTPUT CONFIG
1891 $ DEASSIGN SYS$OUTPUT
1892 $ DEASSIGN SYS$ERROR
1893 $ IF (silent) THEN GOSUB Shut_up
1894 $ OPEN/READ CONFIG gccvers.out
1895 $ READ/END_OF_FILE=Gcc_cleanup CONFIG line
1898 $ DELETE/NOLOG/NOCONFIRM gccvers.*;
1899 $ IF F$LOCATE("GNU C version ",line).NE.F$LENGTH(line)
1901 $ echo "You are not using GNU cc."
1904 $ echo "You are using GNU cc ''line'"
1907 $ C_COMPILER_Replace = "CC=cc=''Mcc'"
1913 $ IF ccname .EQS. "CXX"
1915 $ OPEN/WRITE CONFIG cxxvers.c
1916 $ WRITE CONFIG "#include <stdio.h>"
1917 $ WRITE CONFIG "int main() {"
1918 $ WRITE CONFIG "#ifdef __DECCXX_VER"
1919 $ WRITE CONFIG " printf(""%i\n"", __DECCXX_VER);"
1920 $ WRITE CONFIG "#else"
1921 $ WRITE CONFIG " printf(""%i\n"", ""0"");"
1922 $ WRITE CONFIG "#endif"
1923 $ WRITE CONFIG " return(0);"
1927 $ DEFINE/USER_MODE SYS$ERROR NL:
1928 $ DEFINE/USER_MODE SYS$OUTPUT NL:
1932 $ IF (silent) THEN GOSUB Shut_up
1934 $ DEFINE/USER_MODE SYS$ERROR NL:
1935 $ DEFINE/USER_MODE SYS$OUTPUT NL:
1939 $ IF (silent) THEN GOSUB Shut_up
1940 $ OPEN/WRITE CONFIG cxxvers.out
1942 $ DEFINE/USER_MODE SYS$ERROR CONFIG
1943 $ DEFINE/USER_MODE SYS$OUTPUT CONFIG
1948 $ IF (silent) THEN GOSUB Shut_up
1949 $ OPEN/READ CONFIG cxxvers.out
1950 $ READ/END_OF_FILE=Cxx_cleanup CONFIG line
1953 $ DELETE/NOLOG/NOCONFIRM cxxvers.*;
1954 $ echo "You are using CXX ''line'"
1957 $ CALL Cxx_demangler_cleanup
1960 $Cxx_demangler_cleanup: SUBROUTINE
1962 $! If we do build with CXX these demangler Dbs will be left all over.
1963 $! However, configure.com does try to remove the [.UU] sub directory.
1964 $! Be sure to set default to the correct place before calling this sub.
1967 $ IF F$SEARCH("[.CXX_REPOSITORY]*.*") .NES. "" THEN DELETE/NOLOG/NOCONFIRM [.CXX_REPOSITORY]*.*;*
1968 $ IF F$SEARCH("CXX_REPOSITORY.DIR") .NES. ""
1970 $ SET PROTECTION=(SYSTEM:RWED,OWNER:RWED) CXX_REPOSITORY.DIR
1971 $ DELETE/NOLOG/NOCONFIRM CXX_REPOSITORY.DIR;
1975 $ ENDSUBROUTINE ! Cxx_demangler_cleanup
1980 $ OPEN/READ CONFIG ccvms.lis
1982 $ IF archname .EQS. "VMS_VAX"
1990 $ line = F$EDIT(line,"TRIM,COMPRESS")
1991 $ line = line - "Page 1" ! occurs at end all compilers
1992 $ line = line - "CCVMS " ! filename appears w/ VAXC
1993 $ line = line - "Source Listing " ! Seen w/ AXP DECC
1994 $ tmp = F$EXTRACT(0,20,line) !timestamp, e.g. "30-JUL-1996 21:12:54 "
1996 $ line = F$EDIT(line,"TRIM") !bit redundant but we're in no big hurry
1997 $ DELETE/NOLOG/NOCONFIRM ccvms.lis;
2001 $!: What should the include directory be ? (.TLB text libraries)
2003 $ rp = "Where are the include files you want to use? "
2004 $ IF f$length( rp + "[''dflt'] " ).gt.76
2005 $ THEN rp = F$FAO("!AS!/!AS",rp,"[''dflt'] ")
2006 $ ELSE rp = rp + "[''dflt'] "
2011 $!: see if we have to deal with yellow pages, now NIS.
2012 $!: now get the host name
2015 $ echo4 "Figuring out host name..." !>&4
2017 $ IF myhostname.eqs."" THEN myhostname = F$TRNLNM("ARPANET_HOST_NAME")
2018 $ IF myhostname.eqs."" THEN myhostname = F$TRNLNM("INTERNET_HOST_NAME")
2019 $ IF myhostname.eqs."" THEN myhostname = F$TRNLNM("MULTINET_HOST_NAME")
2020 $ IF myhostname.eqs."" THEN myhostname = F$TRNLNM("UCX$INET_HOST_NAME")
2021 $ IF myhostname.eqs."".and. -
2022 F$TRNLNM("UCX$INET_HOST") .nes. "" .and. -
2023 F$TRNLNM("UCX$INET_DOMAIN") .nes. "" THEN -
2024 myhostname = F$TRNLNM("UCX$INET_HOST") + "." + F$TRNLNM("UCX$INET_DOMAIN")
2025 $ IF myhostname.eqs."".and. -
2026 F$TRNLNM("TCPIP$INET_HOST") .nes. "" .and. -
2027 F$TRNLNM("TCPIP$INET_DOMAIN") .nes. "" THEN -
2028 myhostname = F$TRNLNM("TCPIP$INET_HOST") + "." + F$TRNLNM("TCPIP$INET_DOMAIN")
2029 $ IF myhostname.eqs."" THEN myhostname = F$TRNLNM("TCPWARE_DOMAINNAME")
2030 $ IF myhostname.eqs."" THEN myhostname = F$TRNLNM("NEWS_ADDRESS")
2031 $ IF myhostname.eqs."" THEN myhostname = F$TRNLNM("SYS$NODE") - "::"
2032 $ IF myhostname.eqs."" THEN myhostname = F$EDIT(F$GETSYI("SCSNODE"),"TRIM")
2033 $!: you do not want to know about this
2035 $ rp = "Your host name appears to be """"''myhostname'"""". Right? "
2040 $ READ SYS$COMMAND/PROMPT= -
2041 "Please type the (one word) name of your host: " ans
2044 $!: translate upper to lower if necessary
2045 $ myhostname = F$EDIT(myhostname,"COLLAPSE")
2046 $ mylowhostname = F$EDIT(myhostname," LOWERCASE")
2047 $ IF mylowhostname.NES.myhostname
2049 $ echo "(Normalizing case in your host name)"
2050 $ myhostname = mylowhostname
2053 $ fp = F$LOCATE(".",myhostname)
2054 $ mydomain = F$EXTRACT(fp,(F$LENGTH(myhostname)-fp)+1,myhostname)
2055 $ IF mydomain.NES."" !no periods in DECnet names like "MYDECNODE::"
2057 $ rp = "What is your domain name? [''mydomain'] "
2061 $!: translate upper to lower if necessary
2062 $ mydomain = F$EDIT(mydomain,"COLLAPSE")
2063 $ mylowdomain = F$EDIT(mydomain," LOWERCASE")
2064 $ IF mylowdomain.NES.mydomain
2066 $ echo "(Normalizing case in your domain name)"
2067 $ mydomain = mylowdomain
2070 $ myhostname = myhostname - mydomain
2071 $ echo "(Trimming domain name from host name--host name is now ''myhostname')"
2077 I need to get your e-mail address in Internet format if possible, i.e.
2078 something like user@host.domain. Please answer accurately since I have
2079 no easy means to double check it. The default value provided below
2080 is most probably close to the reality but may not be valid from outside
2081 your organization...
2084 $ IF F$TYPE(cf_email) .EQS. ""
2086 $ dflt = "''cf_by'@''myhostname'"+"''mydomain'"
2087 $ rp = "What is your e-mail address? [''dflt'] "
2097 If you or somebody else will be maintaining perl at your site, please
2098 fill in the correct e-mail address here so that they may be contacted
2099 if necessary. Currently, the "perlbug" program included with perl
2100 will send mail to this address in addition to perlbug@perl.com. You may
2101 enter "none" for no administrator.
2104 $ dflt = "''cf_email'"
2105 $ rp = "Perl administrator e-mail address [''dflt'] "
2109 $!: determine where public executable scripts go
2110 $!: determine perl absolute location
2111 $!: figure out how to guarantee perl startup
2113 $!: see how we invoke the C preprocessor
2115 $! echo4 "Now, how can we feed standard input to your C preprocessor..." !>&4
2116 $!: Set private lib path
2117 $!: Now check and see which directories actually exist, avoiding duplicates
2118 $!: determine optimize, if desired, or use for debug flag also
2119 $!: We will not override a previous value, but we might want to
2120 $!: augment a hint file
2121 $!: the following weeds options from ccflags that are of no interest to cpp
2122 $!: flags used in final linking phase
2123 $!: Try to guess additional flags to pick up local libraries.
2126 $! echo4 "Checking your choice of C compiler and flags for coherency..." !>&4
2127 $!: compute shared library extension
2128 $!: Looking for optional libraries
2129 $!: see if nm is to be used to determine whether a symbol is defined or not
2130 $!: get list of predefined functions in a handy place
2131 $!: see if we have sigaction or sigprocmask
2132 $!: see whether socketshr exists
2133 $ IF (F$SEARCH(F$PARSE("SocketShr","Sys$Share:.Exe")).NES."")
2135 $ Has_socketshr = "T"
2137 $ echo4 "Hmm... Looks like you have SOCKETSHR Berkeley networking support."
2139 $ Has_socketshr = "F"
2141 $ IF (ccname .EQS. "DEC" .AND. Dec_C_Version .GE. 50200000) .OR. -
2142 (ccname .EQS. "CXX")
2144 $ Has_Dec_C_Sockets = "T"
2146 $ echo4 "Hmm... Looks like you have Dec C Berkeley networking support."
2148 $ Has_Dec_C_Sockets = "F"
2150 $ ! Hey, we've got both. Default to Dec C, then, since it's better
2151 $ IF Has_socketshr .OR. Has_Dec_C_Sockets
2154 $ echo "You have sockets available. Which socket stack do you want to"
2155 $ echo "build into Perl?"
2156 $ IF Has_Dec_C_Sockets
2160 $ dflt = "SOCKETSHR"
2162 $ rp = "Choose socket stack (NONE"
2163 $ IF Has_socketshr THEN rp = rp + ",SOCKETSHR"
2164 $ IF Has_Dec_C_Sockets THEN rp = rp + ",DECC"
2165 $ rp = rp + ") [''dflt'] "
2167 $ Has_Dec_C_Sockets = "F"
2168 $ Has_socketshr = "F"
2169 $ ans = F$EDIT(ans,"TRIM,COMPRESS,LOWERCASE")
2170 $ IF ans.eqs."decc" then Has_Dec_C_Sockets = "T"
2171 $ IF ans.eqs."socketshr" then Has_socketshr = "T"
2175 $! Ask if they want to build with VMS_DEBUG perl
2177 $ echo "Perl can be built to run under the VMS debugger."
2178 $ echo "You should only select this option if you are debugging"
2179 $ echo "perl itself. This can be a useful feature if you are "
2180 $ echo "embedding perl in a program."
2182 $ if f$type(usevmsdebug) .nes. ""
2184 $ if usevmsdebug .or. usevmsdebug .eqs. "define" then bool_dflt="y"
2186 $ rp = "Build a VMS-DEBUG version of Perl? [''bool_dflt'] "
2188 $ use_vmsdebug_perl = ans
2189 $ IF use_vmsdebug_perl
2191 $ usevmsdebug = "define"
2192 $ macros = macros + """__DEBUG__=1"","
2194 $ usevmsdebug = "undef"
2197 $! Ask if they want to build with DEBUGGING
2199 $ echo "Perl can be built with extra runtime debugging enabled. This"
2200 $ echo "enables the -D switch, at the cost of some performance. It"
2201 $ echo "was mandatory on perl 5.005 and before on VMS, but is now"
2202 $ echo "optional. If you do not generally use it you should probably"
2203 $ echo "leave this off and gain a bit of extra speed."
2205 $ if f$type(useperldebug) .nes. ""
2207 $ if f$extract(0,1,f$edit(useperldebug,"collapse,upcase")).eqs."N" .or. useperldebug .eqs. "undef" then bool_dflt="n"
2209 $ rp = "Build a DEBUGGING version of Perl? [''bool_dflt'] "
2211 $ use_debugging_perl = ans
2213 $! Ask if they want to build with MULTIPLICITY
2215 $ echo "Perl can be built so that multiple Perl interpreters can coexist"
2216 $ echo "within the same Perl executable."
2217 $ echo "There is some performance overhead, however, so you"
2218 $ echo "probably do not want to choose this unless you are going to be"
2219 $ echo "doing things with embedded perl."
2221 $ if f$type(usemultiplicity) .nes. ""
2223 $ if usemultiplicity .or. usemultiplicity .eqs. "define" then bool_dflt = "y"
2225 $ rp = "Build Perl for multiplicity? [''bool_dflt'] "
2229 $ usemultiplicity="define"
2231 $ usemultiplicity="undef"
2234 $! Ask if they want to build with 64-bit support
2235 $ IF (archname.eqs."VMS_AXP").and.("''f$extract(1,3, f$getsyi(""version""))'".ges."7.1")
2238 $ IF F$TYPE(use64bitint) .NES. ""
2240 $ IF use64bitint .OR. use64bitint .eqs. "define" THEN bool_dflt = "y"
2243 $ echo "You can have native 64-bit long integers."
2245 $ echo "Perl can be built to take advantage of 64-bit integer types"
2246 $ echo "on some systems, which provide a much larger range for perl's"
2247 $ echo "mathematical operations. (Note that does *not* enable 64-bit"
2248 $ echo "fileops at the moment, as Dec C doesn't do that yet)."
2249 $ echo "Choosing this option will most probably introduce binary incompatibilities."
2251 $ echo "If this does not make any sense to you, just accept the default ''dflt'."
2252 $ rp = "Try to use 64-bit integers, if available? [''bool_dflt'] "
2257 $ IF F$TYPE(use64bitall) .NES. ""
2259 $ IF use64bitall .OR. use64bitall .eqs. "define" THEN bool_dflt = "y"
2262 $ echo "You may also choose to try maximal 64-bitness. It means using as much"
2263 $ echo "64-bitness as possible on the platform. This in turn means even more"
2264 $ echo "binary incompatibilities. On the other hand, your platform may not"
2265 $ echo "have any more 64-bitness available than what you already have chosen."
2267 $ echo "If this does not make any sense to you, just accept the default ''dflt'."
2268 $ rp = "Try to use maximal 64-bit support, if available? [''bool_dflt'] "
2271 $ IF use64bitall .AND. .NOT. use64bitint
2274 $ echo "Since you have chosen a maximally 64-bit build, I'm also turning on"
2275 $ echo "the use of 64-bit integers."
2278 $ ENDIF ! AXP && >= 7.1
2280 $! Ask about threads, if appropriate
2281 $ IF ccname .EQS. "DEC" .OR. ccname .EQS. "CXX"
2284 $ echo "This version of Perl can be built with threads. While really nifty,"
2285 $ echo "they are a beta feature, and there is a speed penalty for perl"
2286 $ echo "programs if you build with threads *even if you do not use them*."
2288 $ if f$type(usethreads) .nes. ""
2290 $ if usethreads .or. usethreads .eqs. "define" then bool_dflt="y"
2292 $ rp = "Build with threads? [''bool_dflt'] "
2297 $ ! Shall we do the 5.005-stype threads, or IThreads?
2298 $ echo "As of 5.5.640, Perl has two different internal threading"
2299 $ echo "implementations, the 5.005 version (5005threads) and an"
2300 $ echo "interpreter-based version (ithreads) that has one"
2301 $ echo "interpreter per thread. Both are very experimental. This"
2302 $ echo "arrangement exists to help developers work out which one"
2305 $ echo "If you are a casual user, you probably do not want"
2306 $ echo "interpreter-threads at this time. There doesn't yet exist"
2307 $ echo "a way to create threads from within Perl in this model,"
2308 $ echo "i.e., ""use Thread;"" will NOT work."
2311 $ if f$type(useithreads) .nes. ""
2313 $ if useithreads .eqs. "define" then bool_dflt="y"
2315 $ rp = "Build with Interpreter threads? [''bool_dflt'] "
2320 $ use_5005_threads="N"
2322 $ use_5005_threads="Y"
2324 $ ! Are they on VMS 7.1 on an alpha?
2325 $ if (archname.eqs."VMS_AXP").and.("''f$extract(1,3, f$getsyi(""version""))'".ges."7.1")
2328 $ echo "Threaded perl can be linked to use multiple kernel threads"
2329 $ echo "and system upcalls on VMS 7.1+ on Alpha systems. This feature"
2330 $ echo "allows multiple threads to execute simultaneously on an SMP"
2331 $ echo "system as well as preventing a single thread from blocking"
2332 $ echo "all the threads in a program, even on a single-processor"
2333 $ echo "machine. Unfortunately, this feature isn't safe on an"
2334 $ echo "unpatched 7.1 system (several OS patches were required when"
2335 $ echo "this procedure was written)."
2337 $ rp = "Enable multiple kernel threads and upcalls? [''bool_dflt'] "
2341 $ Thread_Live_Dangerously = "MT=MT=1"
2346 $ IF archname .EQS. "VMS_AXP"
2350 $ echo "By default, perl (and pretty much everything else on VMS) uses"
2351 $ echo "case-insensitive linker symbols. Which is to say, when the"
2352 $ echo "underlying C code makes a call to a routine called Perl_foo in"
2353 $ echo "the source, the name in the object modules or shareable images"
2354 $ echo "is really PERL_FOO. There are some packages that use an"
2355 $ echo "embedded perl interpreter that instead require case-sensitive"
2356 $ echo "linker symbols."
2358 $ echo "If you have no idea what this means, and do not have"
2359 $ echo "any program requiring anything, choose the default."
2360 $ bool_dflt = be_case_sensitive
2361 $ if f$type(usecasesensitive) .nes. ""
2363 $ if usecasesensitive .or. usecasesensitive .eqs. "define" then bool_dflt = "y"
2364 $ if f$extract(0,1,f$edit(usecasesensitive,"collapse,upcase")).eqs."N" .or. usecasesensitive .eqs. "undef" then bool_dflt = "n"
2366 $ rp = "Build with case-sensitive symbols? [''bool_dflt'] "
2368 $ be_case_sensitive = ans
2371 $ echo "Perl normally uses IEEE format (T_FLOAT) floating point numbers"
2372 $ echo "internally on Alpha, but if you need G_FLOAT for binary compatibility"
2373 $ echo "with an external library or existing data, you may wish to disable"
2374 $ echo "the IEEE math option."
2375 $ bool_dflt = use_ieee_math
2376 $ if f$type(useieee) .nes. ""
2378 $ if useieee .or. useieee .eqs. "define" then bool_dflt="y"
2380 $ rp = "Use IEEE math? [''bool_dflt'] "
2382 $ use_ieee_math = ans
2384 $ be_case_sensitive = "n"
2385 $ use_ieee_math = "n"
2388 $ usecasesensitive = "undef"
2389 $ if (use_ieee_math) then useieee = "define"
2390 $ if (be_case_sensitive) then usecasesensitive = "define"
2393 $ echo "Your compiler may want other flags. For this question you should include"
2394 $ echo "/INCLUDE=(whatever) and /DEFINE=(whatever), flags and any other flags"
2395 $ echo "or qualifiers used by the compiler."
2397 $ echo "To use no flags, specify the word ""none""."
2398 $ dflt = user_c_flags
2399 $ rp = "Any additional cc flags? [''dflt'] "
2401 $ IF ans .EQS. "none" THEN ans = ""
2402 $ user_c_flags = "''ans'"
2404 $! Ask whether they want to use secure logical translation when tainting
2406 $ echo "As Perl starts up, it checks several logical names, such as"
2407 $ echo "PERL5LIB and PERL_ENV_TABLES, which allow you to modify aspects"
2408 $ echo "of its behavior. For additional security, you may limit this"
2409 $ echo "process to executive- and kernel-mode translation when tainting"
2410 $ echo "is enabled. In this case, logical names normally skipped when"
2411 $ echo "tainting is enabled (e.g. PERL5OPTS) are translated as well."
2412 $ echo "If you do not choose to do this, the usual order of access modes"
2413 $ echo "is used for logical name translation."
2415 $ echo "This restriction does not apply to the %ENV hash or to implicit"
2416 $ echo "logical name translation during parsing of file specifications;"
2417 $ echo "these always use the normal sequence of access modes for logical"
2418 $ echo "name translation."
2420 $ if f$type(usesecurelog) .nes. ""
2422 $ if f$extract(0,1,f$edit(usesecurelog,"collapse,upcase")).eqs."N" .or. usesecurelog .eqs. "undef" then bool_dflt = "n"
2424 $ rp = "Use secure logical name translation? [''bool_dflt'] "
2426 $ d_secintgenv = ans
2427 $ usesecurelog = "undef"
2428 $ if (d_secintgenv) then usesecurelog = "define"
2430 $! Ask whether they want to default filetypes
2432 $ echo "When you pass the name of a program to Perl on the command line,"
2433 $ echo "it generally doesn't supply any defaults unless the -S command"
2434 $ echo "line switch is specified. In keeping with the VMS tradition of"
2435 $ echo "default file types, however, you can configure Perl to try default"
2436 $ echo "file types of nothing, .pl, and .com, in that order (e.g. typing"
2437 $ echo """$ perl foo"" would cause Perl to look for foo., then foo.pl, and"
2438 $ echo "finally foo.com)."
2440 $ echo "This is currently broken in some configurations. Only enable it if"
2441 $ echo "you know what you are doing."
2443 $ if f$type(usedefaulttypes) .nes. ""
2445 $ if usedefaulttypes .or. usedefaulttypes .eqs. "define" then bool_dflt="y"
2447 $ rp = "Always use default file types? [''bool_dflt'] "
2449 $ d_alwdeftype = ans
2450 $ usedefaulttypes = "undef"
2451 $ if (d_alwdeftype) then usedefaulttypes = "define"
2453 $! Ask if they want to use perl's memory allocator
2455 $ echo "Perl has a built-in memory allocator that is tuned for normal"
2456 $ echo "memory usage. It is oftentimes better than the standard system"
2457 $ echo "memory allocator. It also has the advantage of providing memory"
2458 $ echo "allocation statistics, if you choose to enable them."
2460 $ IF F$TYPE(usemymalloc) .nes. ""
2462 $ if usemymalloc .or. usemymalloc .eqs. "define" then bool_dflt = "y"
2464 $ rp = "Do you wish to attempt to use the malloc that comes with ''package'? [''bool_dflt'] "
2469 $ IF use_debugging_perl
2472 $ echo "Perl can keep statistics on memory usage if you choose to use"
2473 $ echo "them. This is useful for debugging, but does have some"
2474 $ echo "performance overhead."
2476 $ rp = "Do you want the debugging memory allocator? [''bool_dflt'] "
2478 $ use_debugmalloc = ans
2480 $ ! Check which memory allocator we want
2482 $ echo "There are currently three different memory allocators: the"
2483 $ echo "default (which is a pretty good general-purpose memory manager),"
2484 $ echo "the TWO_POT allocator (which is optimized to save memory for"
2485 $ echo "larger allocations), and PACK_MALLOC (which is optimized to save"
2486 $ echo "memory for smaller allocations). They're all good, but if your"
2487 $ echo "usage tends towards larger chunks use TWO_POT, otherwise use"
2488 $ echo "PACK_MALLOC."
2490 $ rp = "Memory allocator (DEFAULT, TWO_POT, PACK_MALLOC) [''dflt'] "
2492 $ if ans.eqs."TWO_POT" then use_two_pot_malloc = "Y"
2493 $ if ans.eqs."PACK_MALLOC" then use_pack_malloc = "Y"
2496 $ known_extensions = ""
2498 $ OPEN/READ CONFIG 'manifestfound'
2500 $ READ/END_OF_FILE=end_ext/ERROR=end_ext CONFIG line
2501 $ IF F$EXTRACT(0,4,line) .NES. "ext/" .AND. -
2502 F$EXTRACT(0,8,line) .NES. "vms/ext/" THEN goto ext_loop
2503 $ line = F$EDIT(line,"COMPRESS")
2504 $ line = F$ELEMENT(0," ",line)
2505 $ line_len = F$LENGTH(line)
2506 $ IF F$EXTRACT(line_len - 12,12,line) .NES. "/Makefile.PL" THEN goto ext_loop
2507 $ IF F$EXTRACT(0,4,line) .EQS. "ext/" THEN -
2508 xxx = F$EXTRACT(4,line_len - 16,line)
2509 $ IF xxx .EQS. "DynaLoader" THEN goto ext_loop ! omit
2510 $ IF xxx .EQS. "SDBM_File/sdbm" THEN goto ext_loop ! sub extension - omit
2511 $ IF xxx .EQS. "Devel/PPPort/harness" THEN goto ext_loop ! sub extension - omit
2512 $ IF F$EXTRACT(0,8,line) .EQS. "vms/ext/" THEN -
2513 xxx = "VMS/" + F$EXTRACT(8,line_len - 20,line)
2514 $ known_extensions = known_extensions + " ''xxx'"
2519 $ known_extensions = F$EDIT(known_extensions,"TRIM,COMPRESS")
2520 $ dflt = known_extensions
2521 $ IF ccname .NES. "DEC" .AND. ccname .NES. "CXX"
2523 $ dflt = dflt - "POSIX" ! not with VAX C or GCC
2525 $ dflt = dflt - "ByteLoader" ! needs to be ported
2526 $ dflt = dflt - "DB_File" ! needs to be ported
2527 $ dflt = dflt - "GDBM_File" ! needs porting/special library
2528 $ dflt = dflt - "IPC/SysV" ! needs to be ported
2529 $ dflt = dflt - "NDBM_File" ! needs porting/special library
2530 $ dflt = dflt - "ODBM_File" ! needs porting/special library
2531 $ dflt = dflt - "Sys/Syslog" ! needs porting/special library "GDBM_File macro LOG_DEBUG"
2532 $ IF .NOT. Has_socketshr .AND. .NOT. Has_Dec_C_Sockets
2534 $ dflt = dflt - "Socket" ! optional on VMS
2536 $ IF .NOT. use_ithreads THEN dflt = dflt - "threads/shared"
2537 $ IF .NOT. use_ithreads THEN dflt = dflt - "threads"
2538 $ dflt = F$EDIT(dflt,"TRIM,COMPRESS")
2540 $! Ask for their default list of extensions to build
2542 $ echo "It is time to specify which modules you want to build into"
2543 $ echo "perl. Most of these are standard and should be chosen, though"
2544 $ echo "you might, for example, want to build GDBM_File instead of"
2545 $ echo "SDBM_File if you have the GDBM library built on your machine."
2547 $ echo "Which modules do you want to build into perl?"
2550 $ extensions = F$EDIT(ans,"TRIM,COMPRESS")
2552 $! %Config-I-VMS, determine build/make utility here (make gmake mmk mms)
2554 $ echo "Checking your ""make"" utilities..."
2555 $! If the 'build' that you use is not here add it and it's test
2556 $! switch to the _END_ of these strings (and increment max_build)
2557 $! (e.g. builders = builders + "/FOOMAKE"
2558 $! probers = probers + " -fooVersionSwitch"
2559 $! ) & please let me know about it.
2560 $ builders = "IMAKE/GNUMAKE/MGMAKE/GMAKE/MAKE/MMS/MMK"
2561 $ probers = "-f Makefile. -v!-f Makefile. -v!-f Makefile. -v!-f Makefile. -v!-f Makefile. -v!/IDENT!/IDENT"
2567 $ OPEN/WRITE/ERROR=Open_error CONFIG Makefile.
2568 $ WRITE CONFIG "dont_make_anything_yet:"
2569 $ WRITE CONFIG F$FAO("!_")
2572 $ messages = F$ENVIRONMENT("MESSAGE")
2574 $ build = F$ELEMENT(n,"/",builders)
2575 $ probe = F$ELEMENT(n,"!",probers)
2576 $ echo "Testing whether you have ''build' on your system..."
2578 $! Noted with GNU Make version 3.60 that the $status and $severity
2579 $! with the 'probe' Makefile appear to be: $STATUS == "%X1000000C"
2580 $! $SEVERITY == "4".
2583 $ ON CONTROL_Y THEN GOTO Reenable_messages_build
2584 $ SET MESSAGE/NOFAC/NOSEV/NOIDENT/NOTEXT
2586 $ IF ($SEVERITY .EQ. 1) ! not adequate?
2589 $ IF (build .EQS. orig_dflt)
2591 $ default_set = "TRUE"
2594 $ ok_builders = ok_builders + " " + build
2595 $ IF (.NOT. default_set) THEN dflt = build
2599 $Reenable_messages_build:
2600 $ SET MESSAGE 'messages'
2602 $ on control_y then goto clean_up
2604 $ IF (n .LT. max_build) THEN GOTO Build_probe
2607 $ IF (ok_builders .NES. "")
2609 $ echo "Here is the list of builders you can apparently use:"
2610 $ echo "(",ok_builders," )"
2611 $ rp = "Which """"make"""" utility do you wish to use? [''dflt'] "
2613 $ ans = F$EDIT(ans,"TRIM, COMPRESS")
2614 $ ans = F$EXTRACT(0,F$LOCATE(" ",ans),ans) !throw out "-f Makefile." here
2623 %Config-E-VMS, ERROR:
2624 Well this looks pretty serious. Perl5 cannot be compiled without a "make"
2625 utility of some sort and after checking my "builders" list I cannot find
2626 the symbol or command you use on your system to compile programs.
2629 $ READ SYS$COMMAND/PROMPT="Which ""MMS"" do you use? " ans
2630 $ ans = F$EDIT(ans,"TRIM, COMPRESS")
2631 $ ans = F$EXTRACT(0,F$LOCATE(" ",ans),ans) !throw out "-f Makefile." here
2634 $ echo "I do not know where ""make"" is, and my life depends on it."
2635 $ echo "Go find a make program or fix your DCL$PATH setting!"
2636 $ echo "ABORTING..."
2637 $ SET DEFAULT 'vms_default_directory_name' !be kind rewind
2639 $ EXIT 2 !$STATUS = "%X00000002" (error)
2645 $ DELETE/NOLOG Makefile.;
2651 There seems to be trouble. I just tried to create a file in
2653 $ echo4 'F$ENVIRONMENT("DEFAULT")'
2656 but was unsuccessful. I am stopping now. Please check that directories'
2657 PROTECTION bits. I will leave you in the directory where you started
2660 $ echo4 "ABORTING..."
2666 $! echo " Very well I will proceed with ""''build'"""
2667 $ make = F$EDIT(build,"UPCASE")
2669 $!: locate the preferred pager for this system
2670 $!pagers = "most|more|less|type/page"
2671 $ dflt = "type/page"
2672 $! assume that the presence of a most symbol indicates the presence
2674 $ IF F$TYPE(most) .EQS. "STRING" THEN dflt = "most"
2675 $ IF F$TYPE(pager) .EQS. "STRING" THEN dflt = pager
2676 $ rp="What pager is used on your system? [''dflt'] "
2680 $! update [.vms]config.vms here
2682 $! update makefile here
2683 $! echo4 "Updating makefile..."
2685 $ IF (make .EQS. "MMS").OR.(make .EQS. "MMK")
2687 $ makefile = "" !wrt MANIFEST dir
2688 $ UUmakefile = "[-]DESCRIP.MMS" !wrt CWD dir
2689 $ DEFmakefile = "DESCRIP.MMS" !wrt DEF dir (?)
2690 $ Makefile_SH = "descrip_mms.template"
2692 $ makefile = " -f Makefile." !wrt MANIFEST dir
2693 $ UUmakefile = "[-]Makefile." !wrt CWD dir
2694 $ DEFmakefile = "Makefile." !wrt DEF dir (?)
2695 $ Makefile_SH = "Makefile.in"
2698 $ IF macros .NES. ""
2700 $ tmp = F$LENGTH(macros)
2701 $ macros = F$EXTRACT(0,(tmp-1),macros) !miss trailing comma
2702 $ macros = "/macro=(" + macros + ")"
2704 $! Build up the extra C flags
2708 $ extra_flags = "''extra_flags'" + "/float=ieee/ieee=denorm_results"
2710 $ IF be_case_sensitive
2712 $ extra_flags = "''extra_flags'" + "/Names=As_Is"
2714 $ extra_flags = "''extra_flags'" + "''user_c_flags'"
2716 $ min_pgflquota = "100000"
2717 $ pgflquota = F$STRING(F$GETJPI("","PGFLQUOTA"))
2718 $ IF pgflquota .LES. min_pgflquota
2720 $ echo4 "Your PGFLQUOTA of ''pgflquota' appears too small to build ''package'."
2721 $ READ SYS$COMMAND/PROMPT="Continue? [n] " ans
2724 $ echo4 "Continuing..."
2726 $ echo4 "ABORTING..."
2731 $! PerlIO abstraction
2734 $ IF F$TYPE(useperlio) .NES. ""
2736 $ if f$extract(0,1,f$edit(useperlio,"collapse,upcase")) .eqs. "N" .or. useperlio .eqs. "undef" then bool_dflt = "n"
2740 $ echo "Previous versions of ''package' used the standard IO mechanisms as"
2743 defined in <stdio.h>. Versions 5.003_02 and later of perl allow
2744 alternate IO mechanisms via the PerlIO abstraction layer, but the
2745 stdio mechanism is still available if needed. The abstraction layer
2746 can use AT&T's sfio (if you already have sfio installed) or regular stdio.
2747 Using PerlIO with sfio may cause problems with some extension modules.
2750 $ echo "If this does not make any sense to you, just accept the default '" + bool_dflt + "'."
2752 $ rp = "Use the PerlIO abstraction layer? [''bool_dflt'] "
2756 $ useperlio = "define"
2758 $ echo "Ok, doing things the stdio way."
2759 $ useperlio = "undef"
2763 $ echo4 "Checking the C run-time library."
2765 $! Former SUBCONFIGURE.COM
2767 $! - build a config.sh for VMS Perl.
2768 $! - use built config.sh to take config_h.SH -> config.h
2769 $! - also take vms/descrip_mms.template -> descrip.mms (VMS Makefile)
2770 $! vms/Makefile.in -> Makefile. (VMS GNU Makefile?)
2771 $! vms/Makefile.SH -> Makefile. (VMS GNU Makefile?)
2773 $! Note for folks from other platforms changing things in here:
2775 $! Fancy changes (based on compiler capabilities or VMS version or
2776 $! whatever) are tricky, so go ahead and punt on those.
2778 $! Simple changes, though (say, always setting something to 1, or undef,
2779 $! or something like that) are straightforward. Adding a new constant
2780 $! item for the ultimately created config.sh requires at least one
2781 $! (possibly more) line(s) to this file.
2783 $! Add a line in the format:
2785 $! $ WC "foo='undef'"
2787 $! somewhere between the line tagged '##BEGIN WRITE NEW CONSTANTS HERE##'
2788 $! and the one tagged '##END WRITE NEW CONSTANTS HERE##' (note the order
2789 $! is sorted ASCII and corresponds to the output of config.sh in the
2790 $! Bourne shell version of Configure).
2791 $! Be very careful with quoting, as it can be tricky.
2792 $! For example if instead of a constant string like 'undef' or 'define'
2793 $! you wanted to add something to VMS's config.sh that looks like:
2797 $! then add a line that looks like this before the
2798 $! '##END WRITE NEW CONSTANTS HERE##' tagged line:
2800 $! $ WC "blank_string='" + "'"
2802 $! (+ is the string concatenator and "''var'" has the effect
2803 $! of "${var}" in perl or sh, but "'const'" is not interpolated).
2805 $! Note that unitialized variables, such as a line like:
2807 $! $ WC "new_var='" + new_var + "'"
2809 $! should be avoided unless new_var has a value assigned prior
2810 $! to that line (think of perl's -w warnings).
2812 $! %DCL-W-UNDSYM, undefined symbol - check validity and spelling
2816 $ vms_ver = F$EXTRACT(1,3, osvers)
2817 $ IF F$LENGTH(Mcc) .EQ. 0 THEN Mcc := "cc"
2818 $ MCC = f$edit(mcc, "UPCASE")
2819 $ C_Compiler_Replace := "CC=CC=''Mcc'''ccflags'"
2820 $ IF ccname .EQS. "DEC"
2822 $ Checkcc := "''Mcc'/prefix=all"
2824 $ IF ccname .EQS. "CXX"
2828 $ Checkcc := "''Mcc'"
2831 $ ccflags = ccflags + extra_flags
2832 $ IF be_case_sensitive
2834 $ d_vms_be_case_sensitive = "define"
2836 $ d_vms_be_case_sensitive = "undef"
2838 $! Some constant defaults.
2839 $ hwname = f$getsyi("HW_NAME")
2840 $ myname = myhostname
2841 $ IF myname .EQS. "" THEN myname = F$TRNLNM("SYS$NODE")
2846 $ IF use64bitint .OR. use64bitint .EQS. "define"
2848 $ use64bitint = "define"
2849 $ uselargefiles = "define"
2850 $ uselongdouble = "define"
2852 $ usemorebits = "define"
2853 $ ivdformat="""Ld"""
2854 $ uvuformat="""Lu"""
2855 $ uvoformat="""Lo"""
2856 $ uvxformat="""Lx"""
2857 $ uvXUformat="""LX"""
2859 $ use64bitint = "undef"
2860 $ uselargefiles = "undef"
2861 $ uselongdouble = "undef"
2862 $ usemorebits = "undef"
2863 $ ivdformat="""ld"""
2864 $ uvuformat="""lu"""
2865 $ uvoformat="""lo"""
2866 $ uvxformat="""lx"""
2867 $ uvXUformat="""lX"""
2869 $ IF uselongdouble .OR. uselongdouble .EQS. "define"
2871 $ nveformat="""Le"""
2872 $ nvfformat="""Lf"""
2873 $ nvgformat="""Lg"""
2879 $ IF use64bitall .OR. use64bitall .EQS. "define"
2881 $ use64bitall = "define"
2883 $ use64bitall = "undef"
2886 $ usemymalloc = "undef"
2887 $ if mymalloc then usemymalloc = "define"
2891 $ IF (sharedperl .AND. archname .EQS. "VMS_AXP")
2905 $ dlobj="dl_vms''obj_ext'"
2907 $ cppstdin="''perl_cc'/noobj/comments=as_is/preprocess=sys$output sys$input"
2909 $ cpprun="''perl_cc'/noobj/comments=as_is/preprocess=sys$output sys$input"
2917 $ THEN d_mymalloc="define"
2918 $ ELSE d_mymalloc="undef"
2922 $ startperl="""$ perl 'f$env(\""procedure\"")' \""'"+"'p1'\"" \""'"+"'p2'\"" \""'"+"'p3'\"" \""'"+"'p4'\"" \""'"+"'p5'\"" \""'"+"'p6'\"" \""'"+"'p7'\"" \""'"+"'p8'\""!\n"
2923 $ startperl=startperl + "$ exit++ + ++$status!=0 and $exit=$status=undef; while($#ARGV != -1 and $ARGV[$#ARGV] eq '"+"'){pop @ARGV;}"""
2925 $ IF ((Use_Threads) .AND. (vms_ver .LES. "6.2"))
2927 $ 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"
2931 $ IF ccname .EQS. "DEC" .OR. ccname .EQS. "CXX"
2938 $! perllibs should be libs with all non-core libs (such as gdbm) removed.
2944 $ IF use64bitint .OR. use64bitint .EQS. "define"
2946 $ d_PRId64 = "define"
2947 $ d_PRIEUldbl = "define"
2948 $ d_PRIFUldbl = "define"
2949 $ d_PRIGUldbl = "define"
2950 $ d_PRIeldbl = "define"
2951 $ d_PRIfldbl = "define"
2952 $ d_PRIgldbl = "define"
2953 $ d_PRIu64 = "define"
2954 $ d_PRIo64 = "define"
2955 $ d_PRIx64 = "define"
2956 $ d_PRIXU64 = "define"
2957 $ sPRId64 = """Ld"""
2958 $ sPRIEUldbl = """LE"""
2959 $ sPRIFUldbl = """LF"""
2960 $ sPRIGUldbl = """LG"""
2961 $ sPRIXU64 = """LX"""
2962 $ sPRIeldbl = """Le"""
2963 $ sPRIfldbl = """Lf"""
2964 $ sPRIgldbl = """Lg"""
2965 $ sPRIi64 = """Li"""
2966 $ sPRIo64 = """Lo"""
2967 $ sPRIu64 = """Lu"""
2968 $ sPRIx64 = """Lx"""
2970 $ quadtype = "long long"
2971 $ uquadtype = "unsigned long long"
2972 $ quadkind = "QUAD_IS_LONG_LONG"
2973 $ d_frexpl = "define"
2974 $ d_isnan = "define"
2975 $ d_isnanl = "define"
2976 $ d_modfl = "define"
2978 $ d_PRId64 = "undef"
2979 $ d_PRIEUldbl = "define"
2980 $ d_PRIFUldbl = "define"
2981 $ d_PRIGUldbl = "define"
2982 $ d_PRIXU64 = "undef"
2983 $ d_PRIeldbl = "define"
2984 $ d_PRIfldbl = "undef"
2985 $ d_PRIgldbl = "undef"
2986 $ d_PRIu64 = "undef"
2987 $ d_PRIo64 = "undef"
2988 $ d_PRIx64 = "undef"
2990 $ sPRIEUldbl = """E"""
2991 $ sPRIFUldbl = """F"""
2992 $ sPRIGUldbl = """G"""
2993 $ sPRIXU64 = """lX"""
2994 $ sPRIeldbl = """e"""
2995 $ sPRIfldbl = """f"""
2996 $ sPRIgldbl = """g"""
3003 $ uquadtype = "unsigned long"
3004 $ quadkind = "QUAD_IS_LONG"
3005 $ d_frexpl = "undef"
3007 $ d_isnanl = "undef"
3010 $ d_SCNfldbl = d_PRIfldbl
3011 $ sSCNfldbl = sPRIfldbl ! expect consistency
3013 $! Now some that we build up
3017 $ IF use_5005_threads
3019 $ arch = "''arch'-thread"
3020 $ archname = "''archname'-thread"
3021 $ d_old_pthread_create_joinable = "undef"
3022 $ old_pthread_create_joinable = " "
3023 $ use5005threads = "define"
3024 $ useithreads = "undef"
3026 $ arch = "''arch'-ithread"
3027 $ archname = "''archname'-ithread"
3028 $ d_old_pthread_create_joinable = "undef"
3029 $ old_pthread_create_joinable = " "
3030 $ use5005threads = "undef"
3031 $ useithreads = "define"
3034 $ d_old_pthread_create_joinable = "undef"
3035 $ old_pthread_create_joinable = " "
3036 $ use5005threads = "undef"
3037 $ useithreads = "undef"
3040 $! Some that we need to invoke the compiler for
3043 $! handy construction aliases/symbols
3045 $ OS := "open/write CONFIG []try.c"
3046 $ WS := "write CONFIG"
3047 $ CS := "close CONFIG"
3048 $ DS := "delete/nolog/noconfirm []try.*;*"
3050 $ good_compile = %X10B90001
3051 $ IF ccname .EQS. "GCC"
3053 $ open/write OPTCHAN []try.opt
3054 $ write OPTCHAN "Gnu_CC:[000000]gcclib.olb/library"
3055 $ write OPTCHAN "Sys$Share:VAXCRTL/Share"
3058 $ good_compile = %X10000001
3060 $ IF ccname .EQS. "CXX"
3062 $ good_compile = %X15F60001
3064 $ good_link = %X10000001
3065 $ tmp = "" ! null string default
3067 $ GOTO beyond_compile_ok
3069 $! Check for type sizes
3074 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3075 $ WS "#include <stdlib.h>"
3077 $ WS "#include <stdio.h>"
3080 $ WS "printf(""%d\n"", sizeof(''tmp'));"
3087 $!: locate header file
3091 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3092 $ WS "#include <stdlib.h>"
3094 $ WS "#include <stdio.h>"
3095 $ WS "#include <''tmp'>"
3098 $ WS "printf(""define\n"");"
3105 $!: define an alternate in-header-list? function
3109 $ IF compile_status .EQ. good_compile .AND. link_status .EQ. good_link
3111 $ echo4 "<''tmp'> found."
3114 $ echo4 "<''tmp'> NOT found."
3119 $!: define an is-in-libc? function
3122 $ IF compile_status .EQ. good_compile .AND. link_status .EQ. good_link
3124 $ echo4 "''tmp'() found."
3127 $ echo4 "''tmp'() NOT found."
3132 $!: define a shorthand compile call
3136 $ IF compile_status .EQ. good_compile .AND. link_status .EQ. good_link
3138 $ OPEN/WRITE CONFIG []try.out
3139 $ DEFINE/USER_MODE SYS$ERROR CONFIG
3140 $ DEFINE/USER_MODE SYS$OUTPUT CONFIG
3143 $ OPEN/READ CONFIG []try.out
3146 $ DELETE/NOLOG/NOCONFIRM []try.out;
3147 $ DELETE/NOLOG/NOCONFIRM []try.exe;
3149 $ tmp = "" ! null string default
3155 $ DEFINE/USER_MODE SYS$ERROR _NLA0:
3156 $ DEFINE/USER_MODE SYS$OUTPUT _NLA0:
3160 $ 'ld' try.obj,try.opt/opt
3161 $ link_status = $status
3164 $ link_status = $status
3167 $ IF F$SEARCH("try.obj") .NES. "" THEN DELETE/NOLOG/NOCONFIRM try.obj;
3170 $!: define a shorthand compile call for compilations that should be ok.
3172 $ DEFINE/USER_MODE SYS$ERROR _NLA0:
3173 $ DEFINE/USER_MODE SYS$OUTPUT _NLA0:
3176 $ compile_status = $status
3178 $ DELETE/NOLOG/NOCONFIRM try.c;
3183 $! Check for __STDC__
3186 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3187 $ WS "#include <stdlib.h>"
3189 $ WS "#include <stdio.h>"
3192 $ WS "#ifdef __STDC__"
3193 $ WS "printf(""42\n"");"
3195 $ WS "printf(""1\n"");"
3202 $ IF F$INTEGER(tmp) .eq. 42
3204 $ echo4 "Your C compiler and pre-processor defines the symbol:"
3208 $! Check for double size
3210 $ echo4 "Checking to see how big your double precision numbers are..."
3212 $ GOSUB type_size_check
3214 $ echo "Your double is ''doublesize' bytes long."
3216 $! Check for long double size
3219 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3220 $ WS "#include <stdlib.h>"
3222 $ WS "#include <stdio.h>"
3225 $ WS "printf(""%d\n"", sizeof(long double));"
3229 $ echo4 "Checking to see if you have long double..."
3231 $ IF link_status .NE. good_link
3235 $ echo "You do not have long double."
3237 $ echo "You have long double."
3238 $ echo4 "Checking to see how big your long doubles are..."
3241 $ d_longdbl = "define"
3242 $ echo "Your long doubles are ''longdblsize' bytes long."
3245 $!: check for long long
3247 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3248 $ WS "#include <stdlib.h>"
3250 $ WS "#include <stdio.h>"
3253 $ WS "printf(""%d\n"", sizeof(long long));"
3257 $ echo4 "Checking to see if you have long long..."
3259 $ IF link_status .NE. good_link
3262 $ d_longlong="undef"
3263 $ echo "You do not have long long."
3265 $ echo "You have long long."
3266 $ echo4 "Checking to see how big your long longs are..."
3268 $ longlongsize = tmp
3269 $ d_longlong = "define"
3270 $ echo "Your long longs are ''longlongsize' bytes long."
3273 $! Check the prototype for getgid
3275 $ echo "Looking for the type for group ids returned by getgid()."
3277 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3278 $ WS "#include <stdlib.h>"
3280 $ WS "#include <stdio.h>"
3281 $ WS "#include <types.h>"
3289 $ IF compile_status .NE. good_compile
3291 $! Okay, gid_t failed. Must be unsigned int
3292 $ gidtype = "unsigned int"
3293 $ echo4 "assuming ""''gidtype'""."
3296 $ echo4 "gid_t found."
3299 $! Check to see if we've got dev_t
3301 $ echo "Looking for the type for dev."
3303 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3304 $ WS "#include <stdlib.h>"
3306 $ WS "#include <stdio.h>"
3307 $ WS "#include <types.h>"
3315 $ IF compile_status .NE. good_compile
3317 $! Okay, dev_t failed. Must be unsigned int
3318 $ devtype = "unsigned int"
3319 $ echo4 "assuming ""''devtype'""."
3322 $ echo4 "dev_t found."
3325 $! Check to see if we've got unistd.h (which we ought to, but you never know)
3332 $!: see if this is a libutil.h system
3338 $! Check to see if we've got shadow.h (probably not, but...)
3344 $! Check to see if we've got socks.h (probably not, but...)
3350 $! Check the prototype for select
3352 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
3355 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3356 $ WS "#include <stdlib.h>"
3358 $ WS "#include <stdio.h>"
3359 $ WS "#include <types.h>"
3360 $ IF i_unistd .EQS. "define" THEN WS "#include <unistd.h>"
3363 $ WS "#include <socketshr.h>"
3365 $ WS "#include <time.h>"
3366 $ WS "#include <socket.h>"
3373 $ WS "bar = select(2, foo, foo, foo, NULL);"
3378 $ IF compile_status .NE. good_compile
3380 $! Okay, select failed. Must be an int *
3381 $ selecttype = "int *"
3382 $ echo4 "select() NOT found."
3384 $ selecttype="fd_set *"
3385 $ echo4 "select() found."
3388 $ ! No sockets, so stick in an int * : no select, so pick a harmless default
3389 $ selecttype = "int *"
3392 $! Check to see if fd_set exists
3394 $ echo "Checking to see how well your C compiler handles fd_set and friends ..."
3396 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3397 $ WS "#include <stdlib.h>"
3399 $ WS "#include <stdio.h>"
3400 $ WS "#include <types.h>"
3403 $ WS "#include <socketshr.h>"
3405 $ IF Has_Dec_C_Sockets
3407 $ WS "#include <time.h>"
3408 $ WS "#include <socket.h>"
3418 $ IF compile_status .ne. good_compile
3420 $! Okay, fd_set failed. Must not exist
3421 $ d_fd_set = "undef"
3422 $ echo4 "Hmm, your compiler has some difficulty with fd_set."
3425 $ echo4 "Well, your system knows about the normal fd_set typedef..."
3428 $! Check for inttypes.h
3430 $ tmp = "inttypes.h"
3434 $! Check to see if off64_t exists
3436 $ echo4 "Checking to see if you have off64_t..."
3438 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3439 $ WS "#include <stdlib.h>"
3441 $ WS "#include <stdio.h>"
3442 $ WS "#include <types.h>"
3443 $ WS "#''i_inttypes' IIH"
3445 $ WS "#include <inttypes.h>"
3454 $ IF compile_status .EQ. good_compile
3456 $ d_off64_t="define"
3457 $ echo "You have off64_t."
3459 $ d_off64_t = "undef"
3460 $ echo "You do not have off64_t."
3463 $! Check to see if fpos64_t exists
3465 $ echo4 "Checking to see if you have fpos64_t..."
3467 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3468 $ WS "#include <stdlib.h>"
3470 $ WS "#include <stdio.h>"
3471 $ WS "#include <types.h>"
3472 $ WS "#''i_inttypes' IIH"
3474 $ WS "#include <inttypes.h>"
3478 $ WS "fpos64_t bar;"
3483 $ IF compile_status .EQ. good_compile
3485 $ d_fpos64_t="define"
3486 $ echo "You have fpos64_t."
3488 $ d_fpos64_t = "undef"
3489 $ echo "You do not have fpos64_t."
3492 $! Check to see if int64_t exists
3494 $ echo4 "Checking to see if you have int64_t..."
3496 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3497 $ WS "#include <stdlib.h>"
3499 $ WS "#include <stdio.h>"
3500 $ WS "#include <types.h>"
3501 $ WS "#''i_inttypes' IIH"
3503 $ WS "#include <inttypes.h>"
3512 $ IF compile_status .EQ. good_compile
3514 $ d_int64_t="define"
3515 $ echo "You have int64_t."
3517 $ d_int64_t = "undef"
3518 $ echo "You do not have int64_t."
3521 $!: see if this is a netdb.h system
3522 $ IF Has_Dec_C_Sockets
3529 $! Check for h_errno
3531 $ echo4 "Checking to see if you have h_errno..."
3533 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3534 $ WS "#include <stdlib.h>"
3536 $ WS "#include <stdio.h>"
3537 $ IF i_unistd .EQS. "define" THEN WS "#include <unistd.h>"
3538 $ IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
3546 $ IF compile_status .EQ. good_compile .AND. link_status .EQ. good_link
3549 $ echo "You have h_errno."
3552 $ echo "You do not have h_errno."
3555 $! Check to see if gethostname exists
3557 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
3560 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3561 $ WS "#include <stdlib.h>"
3563 $ WS "#include <stdio.h>"
3564 $ WS "#include <types.h>"
3567 $ WS "#include <socketshr.h>"
3569 $ WS "#include <time.h>"
3570 $ WS "#include <socket.h>"
3574 $ WS "char name[100];"
3575 $ WS "int bar, baz;"
3577 $ WS "baz = gethostname(name, bar);"
3582 $ IF compile_status .EQ. good_compile .AND. link_status .EQ. good_link
3584 $ d_gethname="define"
3585 $ echo4 "gethostname() found."
3587 $ d_gethname="undef"
3590 $ ! No sockets, so no gethname
3591 $ d_gethname = "undef"
3594 $! Check for sys/file.h
3596 $ tmp = "sys/file.h"
3600 $! Check for sys/utsname.h
3602 $ tmp = "sys/utsname.h"
3604 $ i_sysutsname = tmp
3606 $! Check for syslog.h
3618 $! Check for sys/uio.h
3624 $! Check for sys/mode.h
3626 $ tmp = "sys/mode.h"
3630 $! Check for sys/access.h
3632 $ tmp = "sys/access.h"
3636 $! Check for sys/security.h
3638 $ tmp = "sys/security.h"
3642 $! Check for fcntl.h
3651 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3652 $ WS "#include <stdlib.h>"
3654 $ WS "#include <stdio.h>"
3655 $ WS "#include <fcntl.h>"
3658 $ WS "fcntl(1,2,3);"
3666 $! Check for fcntl locking capability
3668 $ echo4 "Checking if fcntl-based file locking works... "
3670 $ IF d_fcntl .EQS. "define"
3673 $ WS "#include <stdio.h>"
3674 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3675 $ WS "#include <stdlib.h>"
3677 $ WS "#include <fcntl.h>"
3678 $ WS "#include <unistd.h>"
3680 $ WS "#if defined(F_SETLK) && defined(F_SETLKW)"
3681 $ WS " struct flock flock;"
3682 $ WS " int retval, fd;"
3683 $ WS " fd = open(""try.c"", O_RDONLY);"
3684 $ WS " flock.l_type = F_RDLCK;"
3685 $ WS " flock.l_whence = SEEK_SET;"
3686 $ WS " flock.l_start = flock.l_len = 0;"
3687 $ WS " retval = fcntl(fd, F_SETLK, &flock);"
3689 $ WS " (retval < 0 ? printf(""undef\n"") : printf(""define\n""));"
3691 $ WS " printf(""undef\n"");"
3696 $ IF compile_status .EQ. good_compile .AND. link_status .EQ. good_link
3699 $ IF tmp .EQS. "define"
3701 $ echo4 "Yes, it seems to work."
3703 $ echo4 "Nope, it didn't work."
3706 $ echo4 "I'm unable to compile the test program, so I'll assume not."
3710 $ echo4 "Nope, since you don't even have fcntl()."
3712 $ d_fcntl_can_lock = tmp
3717 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3718 $ WS "#include <stdlib.h>"
3720 $ WS "#include <string.h>"
3723 $ WS "char * place;"
3724 $ WS "place = memchr(""foo"", 47, 3);"
3732 $! Check for strtoull
3735 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3736 $ WS "#include <stdlib.h>"
3738 $ WS "#include <string.h>"
3741 $ WS "unsigned __int64 result;"
3742 $ WS "result = strtoull(""123123"", NULL, 10);"
3750 $! Check for strtouq
3753 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3754 $ WS "#include <stdlib.h>"
3756 $ WS "#include <string.h>"
3759 $ WS "unsigned __int64 result;"
3760 $ WS "result = strtouq(""123123"", NULL, 10);"
3768 $! Check for strtoll
3771 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3772 $ WS "#include <stdlib.h>"
3774 $ WS "#include <string.h>"
3777 $ WS "__int64 result;"
3778 $ WS "result = strtoll(""123123"", NULL, 10);"
3789 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3790 $ WS "#include <stdlib.h>"
3792 $ WS "#include <string.h>"
3795 $ WS "__int64 result;"
3796 $ WS "result = strtoq(""123123"", NULL, 10);"
3807 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3808 $ WS "#include <stdlib.h>"
3810 $ WS "#include <string.h>"
3813 $ WS "__int64 result;"
3814 $ WS "result = strtoq(""123123"", NULL, 10);"
3822 $! Check for strtold
3825 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3826 $ WS "#include <stdlib.h>"
3828 $ WS "#include <string.h>"
3831 $ WS "long double result;"
3832 $ WS "result = strtold(""123123"", NULL, 10);"
3843 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3844 $ WS "#include <stdlib.h>"
3846 $ WS "#include <string.h>"
3849 $ WS " __int64 result;"
3850 $ WS "result = atoll(""123123"");"
3861 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3862 $ WS "#include <stdlib.h>"
3864 $ WS "#include <string.h>"
3868 $ WS "result = atolf(""123123"");"
3879 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3880 $ WS "#include <stdlib.h>"
3882 $ WS "#include <stdio.h>"
3885 $ WS "access(""foo"", F_OK);"
3896 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3897 $ WS "#include <stdlib.h>"
3899 $ WS "#include <stdio.h>"
3900 $ WS "#include <strings.h>"
3903 $ WS "char foo[10];"
3904 $ WS "bzero(foo, 10);"
3915 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3916 $ WS "#include <stdlib.h>"
3918 $ WS "#include <stdio.h>"
3919 $ WS "#include <strings.h>"
3922 $ WS "char foo[10], bar[10];"
3923 $ WS "bcopy(""foo"", bar, 3);"
3931 $! Check for mkstemp
3934 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3935 $ WS "#include <stdlib.h>"
3937 $ WS "#include <stdio.h>"
3940 $ WS "mkstemp(""foo"");"
3948 $! Check for mkstemps
3951 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3952 $ WS "#include <stdlib.h>"
3954 $ WS "#include <stdio.h>"
3957 $ WS "mkstemps(""foo"", 1);"
3965 $! Check for mkdtemp
3968 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3969 $ WS "#include <stdlib.h>"
3971 $ WS "#include <stdio.h>"
3974 $ WS "mkdtemp(""foo"");"
3982 $! Check for setvbuf
3985 $ WS "#if defined(__DECC) || defined(__DECCXX)"
3986 $ WS "#include <stdlib.h>"
3988 $ WS "#include <stdio.h>"
3992 $ WS "char Buffer[99];"
3993 $ WS "foo = fopen(""foo"", ""r"");"
3994 $ WS "setvbuf(foo, Buffer, 0, 0);"
4002 $! see if sfio.h is available
4003 $! see if sfio library is available
4004 $! Ok, but do we want to use it.
4005 $! IF F$TYPE(usesfio) .EQS. "" THEN usesfio = "undef"
4006 $! IF val .EQS. "define"
4008 $! IF usesfio .EQS. "define"
4012 $! echo "''package' can use the sfio library, but it is experimental."
4013 $! IF useperlio .EQS. "undef"
4015 $! echo "For sfio also the PerlIO abstraction layer is needed."
4016 $! echo "Earlier you said you would not want that."
4018 $! rp="You seem to have sfio available, do you want to try using it? [''dflt'] "
4020 $! IF ans .EQS. "" THEN ans = dflt
4023 $! echo "Ok, turning on both sfio and PerlIO, then."
4024 $! useperlio="define"
4027 $! echo "Ok, avoiding sfio this time. I'll use stdio instead."
4031 $! IF usesfio .EQS. "define"
4033 $! echo4 "Sorry, cannot find sfio on this machine."
4034 $! echo4 "Ignoring your setting of usesfio=''usesfio'."
4042 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4043 $ WS "#include <stdlib.h>"
4045 $ WS "#include <stdio.h>"
4048 $ WS "setenv(""FOO"", ""BAR"", 0);"
4056 $! Check for setproctitle
4059 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4060 $ WS "#include <stdlib.h>"
4062 $ WS "#include <stdio.h>"
4065 $ WS "setproctitle(""%s"", ""FOO"");"
4069 $ tmp = "setproctitle"
4071 $ d_setproctitle = tmp
4073 $! Check for <netinet/in.h>
4075 $ IF Has_Dec_C_Sockets .or. Has_Socketshr
4077 $ tmp = "netinet/in.h"
4084 $! Check for <netinet/tcp.h>
4086 $ IF Has_Dec_C_Sockets .or. Has_Socketshr
4088 $ tmp = "netinet/tcp.h"
4090 $ i_netinettcp = tmp
4092 $ i_netinettcp="undef"
4095 $! Check for endhostent
4097 $ IF Has_Dec_C_Sockets .or. Has_Socketshr
4100 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4101 $ WS "#include <stdlib.h>"
4103 $ WS "#include <stdio.h>"
4105 $ THEN WS "#include <socketshr.h>"
4106 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4110 $ WS "endhostent();"
4114 $ tmp = "endhostent"
4121 $! Check for endnetent
4123 $ IF Has_Dec_C_Sockets .or. Has_Socketshr
4126 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4127 $ WS "#include <stdlib.h>"
4129 $ WS "#include <stdio.h>"
4131 $ THEN WS "#include <socketshr.h>"
4132 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4147 $! Check for endprotoent
4149 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
4152 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4153 $ WS "#include <stdlib.h>"
4155 $ WS "#include <stdio.h>"
4157 $ THEN WS "#include <socketshr.h>"
4158 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4162 $ WS "endprotoent();"
4166 $ tmp = "endprotoent"
4173 $! Check for endservent
4175 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
4178 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4179 $ WS "#include <stdlib.h>"
4181 $ WS "#include <stdio.h>"
4183 $ THEN WS "#include <socketshr.h>"
4184 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4188 $ WS "endservent();"
4192 $ tmp = "endservent"
4199 $! Check for sethostent
4201 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
4204 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4205 $ WS "#include <stdlib.h>"
4207 $ WS "#include <stdio.h>"
4209 $ THEN WS "#include <socketshr.h>"
4210 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4214 $ WS "sethostent(1);"
4218 $ tmp = "sethostent"
4225 $! Check for setnetent
4227 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
4230 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4231 $ WS "#include <stdlib.h>"
4233 $ WS "#include <stdio.h>"
4235 $ THEN WS "#include <socketshr.h>"
4236 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4240 $ WS "setnetent(1);"
4251 $! Check for setprotoent
4253 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
4256 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4257 $ WS "#include <stdlib.h>"
4259 $ WS "#include <stdio.h>"
4261 $ THEN WS "#include <socketshr.h>"
4262 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4266 $ WS "setprotoent(1);"
4270 $ tmp = "setprotoent"
4277 $! Check for setservent
4279 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
4282 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4283 $ WS "#include <stdlib.h>"
4285 $ WS "#include <stdio.h>"
4287 $ THEN WS "#include <socketshr.h>"
4288 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4292 $ WS "setservent(1);"
4296 $ tmp = "setservent"
4303 $! Check for gethostent
4305 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
4308 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4309 $ WS "#include <stdlib.h>"
4311 $ WS "#include <stdio.h>"
4313 $ THEN WS "#include <socketshr.h>"
4314 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4318 $ WS "gethostent();"
4322 $ tmp = "gethostent"
4329 $! Check for getnetent
4331 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
4334 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4335 $ WS "#include <stdlib.h>"
4337 $ WS "#include <stdio.h>"
4339 $ THEN WS "#include <socketshr.h>"
4340 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4355 $! Check for getprotoent
4357 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
4360 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4361 $ WS "#include <stdlib.h>"
4363 $ WS "#include <stdio.h>"
4365 $ THEN WS "#include <socketshr.h>"
4366 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4370 $ WS "getprotoent();"
4374 $ tmp = "getprotoent"
4381 $! Check for getservent
4383 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
4386 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4387 $ WS "#include <stdlib.h>"
4389 $ WS "#include <stdio.h>"
4391 $ THEN WS "#include <socketshr.h>"
4392 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4396 $ WS "getservent();"
4400 $ tmp = "getservent"
4407 $! Check for socklen_t
4409 $ IF Has_Dec_C_Sockets .OR. Has_Socketshr
4411 $ echo4 "Checking to see if you have socklen_t..."
4413 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4414 $ WS "#include <stdlib.h>"
4416 $ WS "#include <stdio.h>"
4418 $ THEN WS "#include <socketshr.h>"
4419 $ ELSE IF i_netdb .EQS. "define" THEN WS "#include <netdb.h>"
4423 $ WS "socklen_t x = 16;"
4428 $ IF compile_status .EQ. good_compile .AND. link_status .EQ. good_link
4430 $ d_socklen_t="define"
4431 $ echo "You have socklen_t."
4433 $ d_socklen_t="undef"
4434 $ echo "You do not have socklen_t."
4437 $ d_socklen_t="undef"
4440 $! Check for pthread_yield
4445 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4446 $ WS "#include <stdlib.h>"
4448 $ WS "#include <pthread.h>"
4449 $ WS "#include <stdio.h>"
4452 $ WS "pthread_yield();"
4456 $ tmp = "pthread_yield"
4458 $ d_pthread_yield = tmp
4460 $ d_pthread_yield="undef"
4463 $! Check for sched_yield
4468 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4469 $ WS "#include <stdlib.h>"
4471 $ WS "#include <pthread.h>"
4472 $ WS "#include <stdio.h>"
4475 $ WS "sched_yield();"
4479 $ tmp = "sched_yield"
4481 $ d_sched_yield = tmp
4482 $ IF d_sched_yield .EQS. "define"
4483 $ THEN sched_yield = "sched_yield"
4484 $ ELSE sched_yield = " "
4487 $ d_sched_yield="undef"
4491 $! Check for generic pointer size
4493 $ echo4 "Checking to see how big your pointers are..."
4495 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4496 $ WS "#include <stdlib.h>"
4498 $ WS "#include <stdio.h>"
4502 $ WS "foo = sizeof(char *);"
4503 $ WS "printf(""%d\n"", foo);"
4508 $ GOSUB type_size_check
4510 $ echo "Your pointers are ''ptrsize' bytes long."
4512 $! Check for size_t size
4516 $ echo4 "Checking the size of ''zzz'..."
4517 $ GOSUB type_size_check
4519 $ echo "Your ''zzz' size is ''sizesize' bytes."
4521 $! Check rand48 and its ilk
4523 $ echo4 "Looking for a random number function..."
4525 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4526 $ WS "#include <stdlib.h>"
4528 $ WS "#include <stdio.h>"
4531 $ WS "srand48(12L);"
4536 $ IF compile_status .EQ. good_compile .AND. link_status .EQ. good_link
4538 $ drand01 = "drand48()"
4539 $ randseedtype = "long int"
4540 $ seedfunc = "srand48"
4541 $ echo4 "Good, found drand48()."
4542 $ d_drand48proto = "define"
4544 $ d_drand48proto = "undef"
4545 $ drand01="random()"
4546 $ randseedtype = "unsigned"
4547 $ seedfunc = "srandom"
4549 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4550 $ WS "#include <stdlib.h>"
4552 $ WS "#include <stdio.h>"
4560 $ IF compile_status .EQ. good_compile .AND. link_status .EQ. good_link
4562 $ echo4 "OK, found random()."
4564 $ drand01="(((float)rand())*MY_INV_RAND_MAX)"
4565 $ randseedtype = "unsigned"
4566 $ seedfunc = "srand"
4567 $ echo4 "Yick, looks like I have to use rand()."
4570 $! Done with compiler checks. Clean up.
4571 $ IF F$SEARCH("try.c") .NES."" THEN DELETE/NOLOG/NOCONFIRM try.c;*
4572 $ IF F$SEARCH("try.obj").NES."" THEN DELETE/NOLOG/NOCONFIRM try.obj;*
4573 $ IF F$SEARCH("try.exe").NES."" THEN DELETE/NOLOG/NOCONFIRM try.exe;*
4574 $ IF F$SEARCH("try.opt").NES."" THEN DELETE/NOLOG/NOCONFIRM try.opt;*
4575 $ IF F$SEARCH("try.out").NES."" THEN DELETE/NOLOG/NOCONFIRM try.out;*
4576 $ IF ccname .EQS. "CXX"
4578 $ CALL Cxx_demangler_cleanup
4581 $! Some that are compiler or VMS version sensitive
4584 $ IF ccname .EQS. "GCC"
4586 $ d_attribut="define"
4590 $ d_attribut="undef"
4593 $! Dec C >= 5.2 and VMS ver >= 7.0
4594 $ IF (ccname .EQS. "DEC") .AND. -
4595 (F$INTEGER(Dec_C_Version).GE.50200000) .AND. (vms_ver .GES. "7.0")
4598 $ d_getitimer="define"
4599 $ d_gettimeod="define"
4601 $ d_mprotect="define"
4607 $ d_setitimer="define"
4608 $ d_sigaction="define"
4609 $ d_sigprocmask="define"
4610 $ d_truncate="define"
4614 $ 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"
4615 $ psnwc1="""ZERO"",""HUP"",""INT"",""QUIT"",""ILL"",""TRAP"",""IOT"",""EMT"",""FPE"",""KILL"",""BUS"",""SEGV"",""SYS"","
4616 $ psnwc2="""PIPE"",""ALRM"",""TERM"",""ABRT"",""USR1"",""USR2"",""SPARE18"",""SPARE19"",""CHLD"",""CONT"",""STOP"",""TSTP"","
4617 $ psnwc3="""TTIN"",""TTOU"",""DEBUG"",""SPARE27"",""SPARE28"",""SPARE29"",""SPARE30"",""SPARE31"",""SPARE32"",""RTMIN"",""RTMAX"",0"
4618 $ sig_name_init = psnwc1 + psnwc2 + psnwc3
4619 $ 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"
4620 $ 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"
4621 $! perl_sig_num_with_commas=sig_num_init
4624 $ d_pathconf="define"
4625 $ d_fpathconf="define"
4626 $ d_sysconf="define"
4627 $ d_sigsetjmp="define"
4629 $ pidtype="unsigned int"
4631 $ d_getitimer="undef"
4632 $ d_gettimeod="undef"
4634 $ d_mprotect="undef"
4640 $ d_setitimer="undef"
4641 $ d_sigaction="undef"
4642 $ d_sigprocmask="undef"
4643 $ d_truncate="undef"
4646 $ sig_name="ZERO HUP INT QUIT ILL TRAP IOT EMT FPE KILL BUS SEGV SYS PIPE ALRM TERM ABRT USR1 USR2"",0"
4647 $ psnwc1="""ZERO"",""HUP"",""INT"",""QUIT"",""ILL"",""TRAP"",""IOT"",""EMT"",""FPE"",""KILL"",""BUS"",""SEGV"",""SYS"","
4648 $ psnwc2="""PIPE"",""ALRM"",""TERM"",""ABRT"",""USR1"",""USR2"",0"
4649 $ sig_name_init = psnwc1 + psnwc2
4650 $ sig_num="0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 6 16 17"",0"
4651 $ sig_num_init="0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,6,16,17,0"
4652 $! perl_sig_num_with_commas=sig_num_init
4654 $ uidtype="unsigned int"
4655 $ d_pathconf="undef"
4656 $ d_fpathconf="undef"
4658 $ d_sigsetjmp="undef"
4660 $!: see if tzname[] exists
4662 $ WS "#include <stdio.h>"
4663 $ WS "#include <time.h>"
4664 $ WS "int main() { extern short tzname[]; printf(""%hd"", tzname[0]); }"
4667 $ IF compile_status .EQ. good_compile
4669 $ d_tzname = "undef"
4670 $ echo4 "tzname[] NOT found."
4672 $ d_tzname = "define"
4673 $ echo4 "tzname[] found."
4675 $ IF F$SEARCH("try.obj") .NES. "" THEN DELETE/NOLOG/NOCONFIRM try.obj;
4677 $ IF d_gethname .EQS. "undef" .AND. d_uname .EQS. "undef"
4679 $ d_phostname="define"
4681 $ d_phostname="undef"
4685 $ IF ccname .EQS. "DEC"
4687 $ d_mbstowcs="define"
4689 $ d_stdiobase="define"
4690 $ d_stdio_cnt_lval="define"
4691 $ d_stdio_ptr_lval="define"
4692 $ d_stdstdio="define"
4693 $ d_wcstombs="define"
4696 $ d_strcoll="define"
4697 $ d_strxfrm="define"
4700 $ i_langinfo="define"
4701 $ d_locconv="define"
4702 $ d_nl_langinfo="define"
4703 $ d_setlocale="define"
4704 $ vms_cc_type="decc"
4706 $ d_mbstowcs="undef"
4708 $ d_stdiobase="undef"
4709 $ d_stdio_cnt_lval="undef"
4710 $ d_stdio_ptr_lval="undef"
4711 $ d_stdstdio="undef"
4712 $ d_wcstombs="undef"
4719 $ i_langinfo="undef"
4721 $ d_nl_langinfo="undef"
4722 $ d_setlocale="undef"
4724 $ d_stdio_ptr_lval_sets_cnt="undef"
4725 $ d_stdio_ptr_lval_nochange_cnt="define"
4728 $ if Has_Socketshr .OR. Has_Dec_C_Sockets
4730 $ d_vms_do_sockets="define"
4734 $ netdb_hlen_type="int"
4735 $ netdb_host_type="char *"
4736 $ netdb_name_type="char *"
4737 $ netdb_net_type="long"
4738 $ d_gethbyaddr="define"
4739 $ d_gethbyname="define"
4740 $ d_getnbyaddr="define"
4741 $ d_getnbyname="define"
4742 $ d_getpbynumber="define"
4743 $ d_getpbyname="define"
4744 $ d_getsbyport="define"
4745 $ d_getsbyname="define"
4746 $ d_gethostprotos="define"
4747 $ d_getnetprotos="define"
4748 $ d_getprotoprotos="define"
4749 $ d_getservprotos="define"
4750 $ IF ccname .EQS. "DEC" .OR. ccname .EQS. "CXX"
4752 $ socksizetype="unsigned int"
4754 $ socksizetype="int *"
4757 $ d_vms_do_sockets="undef"
4761 $ netdb_hlen_type="int"
4762 $ netdb_host_type="char *"
4763 $ netdb_name_type="char *"
4764 $ netdb_net_type="long"
4765 $ d_gethbyaddr="undef"
4766 $ d_gethbyname="undef"
4767 $ d_getnbyaddr="undef"
4768 $ d_getnbyname="undef"
4769 $ d_getpbynumber="undef"
4770 $ d_getpbyname="undef"
4771 $ d_getsbyport="undef"
4772 $ d_getsbyname="undef"
4773 $ d_gethostprotos="undef"
4774 $ d_getnetprotos="undef"
4775 $ d_getprotoprotos="undef"
4776 $ d_getservprotos="undef"
4777 $ socksizetype="undef"
4782 $ usethreads="define"
4783 $ d_pthreads_created_joinable="define"
4784 $ if (vms_ver .GES. "7.0")
4786 $ d_oldpthreads="undef"
4788 $ d_oldpthreads="define"
4791 $ d_oldpthreads="undef"
4792 $ usethreads="undef"
4793 $ d_pthreads_created_joinable="undef"
4796 $! new (5.005_62++) typedefs for primitives
4798 $ echo "Choosing the C types to be used for Perl's internal types..."
4800 $ uvtype="unsigned long"
4802 $ u8type="unsigned char"
4804 $ u16type="unsigned short"
4806 $ u32type="unsigned int"
4807 $ i64type="long long"
4808 $ u64type="unsigned long long"
4811 $ IF use64bitint .OR. use64bitint .EQS. "define"
4813 $ ivtype = "''i64type'"
4814 $ uvtype = "''u64type'"
4815 $ nvtype="long double"
4822 $ GOSUB type_size_check
4824 $ IF use64bitint .OR. use64bitint .EQS. "define" THEN i64size = tmp
4825 $ IF ivtype .eqs. "long"
4826 $ THEN longsize = tmp
4829 $ GOSUB type_size_check
4834 $ GOSUB type_size_check
4836 $ IF use64bitint .OR. use64bitint .EQS. "define" THEN u64size = tmp
4839 $ GOSUB type_size_check
4843 $ GOSUB type_size_check
4846 $ tmp = "''i16type'"
4847 $ GOSUB type_size_check
4849 $ IF i16type .eqs. "short"
4850 $ THEN shortsize = tmp
4853 $ gosub type_size_check
4857 $ tmp = "''u16type'"
4858 $ GOSUB type_size_check
4861 $ tmp = "''i32type'"
4862 $ GOSUB type_size_check
4864 $ IF i32type .eqs. "int"
4865 $ THEN intsize = tmp
4868 $ gosub type_size_check
4872 $ tmp = "''u32type'"
4873 $ gosub type_size_check
4877 $ GOSUB type_size_check
4880 $ echo "(IV will be ""''ivtype'"", ''ivsize' bytes)"
4881 $ echo "(UV will be ""''uvtype'"", ''uvsize' bytes)"
4882 $ echo "(NV will be ""''nvtype'"", ''nvsize' bytes)"
4884 $ echo4 "Checking whether your NVs can preserve your UVs..."
4886 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4887 $ WS "#include <stdlib.h>"
4889 $ WS "#include <stdio.h>"
4891 $ WS " ''uvtype' k = (''uvtype')~0, l;"
4892 $ WS " ''nvtype' d;"
4894 $ WS " d = (''nvtype')l;"
4895 $ WS " l = (''uvtype')d;"
4897 $ WS " printf(""preserve\n"");"
4902 $ IF tmp .EQS. "preserve"
4904 $ d_nv_preserves_uv = "define"
4905 $ echo "Yes, they can."
4906 $ d_nv_preserves_uv_bits = F$STRING(F$INTEGER(uvsize) * 8)
4908 $ d_nv_preserves_uv = "undef"
4909 $ echo "No, they can't."
4910 $ echo4 "Checking how many bits of your UVs your NVs can preserve..."
4912 $ WS "#if defined(__DECC) || defined(__DECCXX)"
4913 $ WS "#include <stdlib.h>"
4915 $ WS "#include <stdio.h>"
4917 $ WS " ''uvtype' u = 0;"
4918 $ WS " int n = 8 * ''uvsize';"
4920 $ WS " for (i = 0; i < n; i++) {"
4921 $ WS " u = u << 1 | (''uvtype')1;"
4922 $ WS " if ((''uvtype')(''nvtype')u != u)"
4925 $ WS " printf(""%d\n"", i);"
4930 $ d_nv_preserves_uv_bits = tmp
4933 $ echo4 "Checking whether your kill() uses SYS$FORCEX..."
4934 $ kill_by_sigprc = "undef"
4936 $ WS "#include <stdio.h>"
4937 $ WS "#include <signal.h>"
4938 $ WS "void handler(int s) { printf(""%d\n"",s); } "
4940 $ WS " printf(""0"");"
4941 $ WS " signal(1,handler); kill(0,1);"
4944 $ ON ERROR THEN CONTINUE
4948 $ echo "Yes, it does."
4949 $ echo4 "Checking whether we can use SYS$SIGPRC instead"
4951 $ WS "#include <stdio.h>"
4952 $ WS "#include <lib$routines.h>"
4953 $ WS "unsigned long code = 0;"
4954 $ WS "int handler(unsigned long *args) {"
4955 $ WS " code = args[1];"
4959 $ WS " int iss, sys$sigprc();"
4960 $ WS " lib$establish(handler);"
4961 $ WS " iss = sys$sigprc(0,0,0x1234);"
4962 $ WS " iss = ((iss&1)==1 && code == 0x1234);"
4963 $ WS " printf(""%d\n"",iss);"
4969 $ echo "looks like we can"
4970 $ kill_by_sigprc = "define"
4972 $! since SIGBUS and SIGSEGV indistinguishable, make them the same here.
4973 $! sigusr1 and sigusr2 show up in VMS6.2 and later
4975 $ if vms_ver .GES. "6.2"
4977 $ sig_name="ZERO HUP INT QUIT ILL TRAP IOT EMT FPE KILL BUS SEGV SYS PIPE ALRM TERM ABRT USR1 USR2"",0"
4978 $ psnwc1="""ZERO"",""HUP"",""INT"",""QUIT"",""ILL"",""TRAP"",""IOT"",""EMT"",""FPE"",""KILL"",""BUS"",""SEGV"",""SYS"","
4979 $ psnwc2="""PIPE"",""ALRM"",""TERM"",""ABRT"",""USR1"",""USR2"",0"
4980 $ sig_name_init = psnwc1 + psnwc2
4981 $ sig_num="0 1 2 3 4 5 6 7 8 9 10 10 12 13 14 15 6 16 17"",0"
4982 $ sig_num_init="0,1,2,3,4,5,6,7,8,9,10,10,12,13,14,15,6,16,17,0"
4985 $ sig_name="ZERO HUP INT QUIT ILL TRAP IOT EMT FPE KILL BUS SEGV SYS PIPE ALRM TERM ABRT"",0"
4986 $ psnwc1="""ZERO"",""HUP"",""INT"",""QUIT"",""ILL"",""TRAP"",""IOT"",""EMT"",""FPE"",""KILL"",""BUS"",""SEGV"",""SYS"","
4987 $ psnwc2="""PIPE"",""ALRM"",""TERM"",""ABRT"",0"
4988 $ sig_name_init = psnwc1 + psnwc2
4989 $ sig_num="0 1 2 3 4 5 6 7 8 9 10 10 12 13 14 15 6"",0"
4990 $ sig_num_init="0,1,2,3,4,5,6,7,8,9,10,10,12,13,14,15,6,0"
4997 $! Finally the composite ones. All config
4999 $ myuname="''osname' ''myname' ''osvers' ''F$EDIT(hwname, "TRIM")'"
5001 $ IF ccname .EQS. "DEC"
5003 $ ccflags="/Include=[]/Standard=Relaxed_ANSI/Prefix=All/Obj=''obj_ext' ''ccflags'"
5005 $ i_dirent = "undef"
5006 $ IF ccname .EQS. "CXX"
5008 $ i_dirent = "define"
5009 $ ccflags="/Include=[]/Standard=ANSI/Prefix=All/Obj=''obj_ext' ''ccflags'"
5011 $ IF use_vmsdebug_perl
5013 $ optimize="/List/Debug/NoOpt"
5014 $ ldflags="/Debug/Trace/Map"
5017 $ optimize= "/NoList"
5018 $ ldflags="/NoTrace/NoMap"
5022 $! Okay, we've got everything configured. Now go write out a config.sh.
5023 $ basename_config_sh = F$PARSE(config_sh,,,"NAME",)+F$PARSE(config_sh,,,"TYPE",)
5024 $ echo4 "Creating ''basename_config_sh'..."
5025 $ open/write CONFIG 'config_sh'
5026 $ WC := write CONFIG
5028 $! ##BEGIN WRITE NEW CONSTANTS HERE##
5032 $ WC "# This file was produced by Configure.COM on a ''osname' system."
5034 $ WC "# Package name : ''package'"
5035 $ WC "# Source directory : ''src'"
5036 $ WC "# Configuration time: " + cf_time
5037 $ WC "# Configuration by : " + cf_by
5038 $ WC "# Target system : " + myuname
5040 $ WC "CONFIG='true'"
5041 $ WC "Makefile_SH='" + Makefile_SH + "'"
5042 $ WC "Mcc='" + Mcc + "'"
5043 $ WC "PERL_REVISION='" + revision + "'"
5044 $ WC "PERL_VERSION='" + patchlevel + "'"
5045 $ WC "PERL_SUBVERSION='" + subversion + "'"
5046 $ WC "PERL_API_VERSION='" + api_version + "'"
5047 $ WC "PERL_API_SUBVERSION='" + api_subversion + "'"
5048 $ WC "alignbytes='" + alignbytes + "'"
5049 $ WC "aphostname='write sys$output f$edit(f$getsyi(\""SCSNODE\""),\""TRIM,LOWERCASE\"")'"
5051 $ WC "archlib='" + archlib + "'"
5052 $ WC "archlibexp='" + archlibexp + "'"
5053 $ WC "archname='" + archname + "'"
5054 $ WC "baserev='" + baserev + "'"
5055 $ WC "bin='" + bin + "'"
5056 $ WC "binexp='" + binexp + "'"
5057 $ WC "builddir='" + builddir + "'"
5058 $ WC "byteorder='1234'"
5059 $ WC "castflags='0'"
5060 $ WC "cc='" + perl_cc + "'"
5061 $ WC "cccdlflags='" + cccdlflags + "'"
5062 $ WC "ccdlflags='" + ccdlflags + "'"
5063 $ WC "ccflags='" + ccflags + "'"
5064 $ WC "ccname='" + ccname + "'"
5065 $ WC "ccversion='" + ccversion + "'"
5066 $ WC "cf_by='" + cf_by + "'"
5067 $ WC "cf_email='" + cf_email + "'"
5068 $ WC "cf_time='" + cf_time + "'"
5069 $ WC "config_args='" + config_args + "'"
5070 $ WC "config_sh='" + config_sh + "'"
5071 $ WC "cpp_stuff='" + cpp_stuff + "'"
5072 $ WC "cpplast='" + cpplast + "'"
5073 $ WC "cppminus='" + cppminus + "'"
5074 $ WC "cpprun='" + cpprun + "'"
5075 $ WC "cppstdin='" + cppstdin + "'"
5076 $ WC "d_Gconvert='my_gconvert(x,n,t,b)'"
5077 $ WC "d_PRIEldbl='" + d_PRIEUldbl + "'"
5078 $ WC "d_PRIFldbl='" + d_PRIFUldbl + "'"
5079 $ WC "d_PRIGldbl='" + d_PRIGUldbl + "'"
5080 $ WC "d_PRIXU64='" + d_PRIXU64 + "'"
5081 $ WC "d_PRId64='" + d_PRId64 + "'"
5082 $ WC "d_PRIeldbl='" + d_PRIeldbl + "'"
5083 $ WC "d_PRIfldbl='" + d_PRIfldbl + "'"
5084 $ WC "d_PRIgldbl='" + d_PRIgldbl + "'"
5085 $ WC "d_PRIo64='" + d_PRIo64 + "'"
5086 $ WC "d_PRIu64='" + d_PRIu64 + "'"
5087 $ WC "d_PRIx64='" + d_PRIx64 + "'"
5088 $ WC "d_SCNfldbl='" + d_SCNfldbl + "'"
5089 $ WC "d__fwalk='undef'"
5090 $ WC "d_access='" + d_access + "'"
5091 $ WC "d_accessx='undef'"
5092 $ WC "d_alarm='define'"
5093 $ WC "d_archlib='define'"
5094 $ WC "d_atolf='" + d_atolf + "'"
5095 $ WC "d_atoll='" + d_atoll + "'"
5096 $ WC "d_attribut='" + d_attribut + "'"
5097 $ WC "d_bcmp='" + d_bcmp + "'"
5098 $ WC "d_bcopy='" + d_bcopy + "'"
5099 $ WC "d_bincompat3='undef'"
5100 $ WC "d_bincompat5005='undef'"
5101 $! WC "d_bsdpgrp='undef'"
5102 $ WC "d_bsdgetpgrp='undef'"
5103 $ WC "d_bsdsetpgrp='undef'"
5104 $ WC "d_bzero='" + d_bzero + "'"
5105 $ WC "d_casti32='define'"
5106 $ WC "d_castneg='define'"
5107 $ WC "d_charvspr='undef'"
5108 $ WC "d_chown='define'"
5109 $ WC "d_chroot='undef'"
5110 $ WC "d_chsize='undef'"
5111 $ WC "d_class='undef'"
5112 $ WC "d_cmsghdr_s='undef'"
5113 $ WC "d_const='define'"
5114 $ WC "d_crypt='define'"
5115 $ WC "d_csh='undef'"
5116 $ WC "d_cuserid='define'"
5117 $ WC "d_dbl_dig='define'"
5118 $ WC "d_dbminitproto='undef'"
5119 $ WC "d_difftime='define'"
5120 $ WC "d_dirfd='undef'"
5121 $ WC "d_dirnamlen='define'"
5122 $ WC "d_dlerror='undef'"
5123 $ WC "d_dlsymun='undef'"
5124 $ WC "d_dosuid='undef'"
5125 $ WC "d_drand48proto='" + d_drand48proto + "'"
5126 $ WC "d_dup2='define'"
5127 $ WC "d_eaccess='undef'"
5128 $ WC "d_endgrent='define'"
5129 $ WC "d_endhent='" + d_endhent + "'"
5130 $ WC "d_endnent='" + d_endnent + "'"
5131 $ WC "d_endpent='" + d_endpent + "'"
5132 $ WC "d_endpwent='define'"
5133 $ WC "d_endsent='" + d_endsent + "'"
5134 $ WC "d_eofnblk='undef'"
5135 $ WC "d_eunice='undef'"
5136 $ WC "d_fchmod='undef'"
5137 $ WC "d_fchdir='undef'"
5138 $ WC "d_fchown='undef'"
5139 $ WC "d_fcntl='" + d_fcntl + "'"
5140 $ WC "d_fcntl_can_lock='" + d_fcntl_can_lock + "'"
5141 $ WC "d_fd_set='" + d_fd_set + "'"
5142 $ WC "d_fgetpos='define'"
5143 $ WC "d_finite='undef'"
5144 $ WC "d_finitel='undef'"
5145 $ WC "d_flexfnam='define'"
5146 $ WC "d_flock='undef'"
5147 $ WC "d_flockproto='undef'"
5148 $ WC "d_fork='undef'"
5149 $ WC "d_fp_class='undef'"
5150 $ WC "d_fpathconf='" + d_fpathconf + "'"
5151 $ WC "d_fpclass='undef'"
5152 $ WC "d_fpclassify='undef'"
5153 $ WC "d_fpclassl='undef'"
5154 $ WC "d_fpos64_t='" + d_fpos64_t + "'"
5155 $ WC "d_frexpl='" + d_frexpl + "'"
5156 $ WC "d_fs_data_s='undef'"
5157 $ WC "d_fseeko='undef'"
5158 $ WC "d_fsetpos='define'"
5159 $ WC "d_fstatfs='undef'"
5160 $ WC "d_fstatvfs='undef'"
5161 $ WC "d_fsync='undef'"
5162 $ WC "d_ftello='undef'"
5163 $ WC "d_getcwd='define'"
5164 $ WC "d_getespwnam='undef'"
5165 $ WC "d_getfsstat='undef'"
5166 $ WC "d_getgrent='define'"
5167 $ WC "d_getgrps='undef'"
5168 $ WC "d_gethbyaddr='" + d_gethbyaddr + "'"
5169 $ WC "d_gethbyname='" + d_gethbyname + "'"
5170 $ WC "d_gethent='" + d_gethent + "'"
5171 $ WC "d_gethname='" + d_gethname + "'"
5172 $ WC "d_gethostprotos='" + d_gethostprotos + "'"
5173 $ WC "d_getitimer='" + d_getitimer + "'"
5174 $ WC "d_getlogin='define'"
5175 $ WC "d_getmnt='undef'"
5176 $ WC "d_getmntent='undef'"
5177 $ WC "d_getnbyaddr='" + d_getnbyaddr + "'"
5178 $ WC "d_getnbyname='" + d_getnbyname + "'"
5179 $ WC "d_getnent='" + d_getnent + "'"
5180 $ WC "d_getnetprotos='" + d_getnetprotos + "'"
5181 $ WC "d_getpagsz='undef'"
5182 $ WC "d_getpbyname='" + d_getpbyname + "'"
5183 $ WC "d_getpbynumber='" + d_getpbynumber + "'"
5184 $ WC "d_getpent='" + d_getpent + "'"
5185 $ WC "d_getpgid='undef'"
5186 $ WC "d_getpgrp2='undef'"
5187 $ WC "d_getpgrp='undef'"
5188 $ WC "d_getppid='undef'"
5189 $ WC "d_getprior='undef'"
5190 $ WC "d_getprotoprotos='" + d_getprotoprotos + "'"
5191 $ WC "d_getprpwnam='undef'"
5192 $ WC "d_getpwent='define'"
5193 $ WC "d_getsbyname='" + d_getsbyname + "'"
5194 $ WC "d_getsbyport='" + d_getsbyport + "'"
5195 $ WC "d_getsent='" + d_getsent + "'"
5196 $ WC "d_getservprotos='" + d_getservprotos + "'"
5197 $ WC "d_getspnam='undef'"
5198 $ WC "d_gettimeod='" + d_gettimeod + "'"
5199 $ WC "d_gnulibc='undef'"
5200 $ WC "d_grpasswd='undef'"
5201 $ WC "d_hasmntopt='undef'"
5202 $ WC "d_htonl='" + d_htonl + "'"
5203 $ WC "d_index='" + d_index + "'"
5204 $ WC "d_inetaton='undef'"
5205 $ WC "d_int64_t='" + d_int64_t + "'"
5206 $ WC "d_isascii='define'"
5207 $ WC "d_isfinite='undef'"
5208 $ WC "d_isinf='undef'"
5209 $ WC "d_isnan='" + d_isnan + "'"
5210 $ WC "d_isnanl='" + d_isnanl + "'"
5211 $ WC "d_killpg='undef'"
5212 $ WC "d_lchown='undef'"
5213 $ WC "d_ldbl_dig='define'"
5214 $ WC "d_link='undef'"
5215 $ WC "d_llseek='undef'"
5216 $ WC "d_locconv='" + d_locconv + "'"
5217 $ WC "d_lockf='undef'"
5218 $ WC "d_longdbl='" + d_longdbl + "'"
5219 $ WC "d_longlong='" + d_longlong + "'"
5220 $ WC "d_lseekproto='define'"
5221 $ WC "d_lstat='undef'"
5222 $ WC "d_madvise='undef'"
5223 $ WC "d_mblen='" + d_mblen + "'"
5224 $ WC "d_mbstowcs='" + d_mbstowcs + "'"
5225 $ WC "d_mbtowc='" + d_mbtowc + "'"
5226 $ WC "d_memchr='" + d_memchr + "'"
5227 $ WC "d_memcmp='define'"
5228 $ WC "d_memcpy='define'"
5229 $ WC "d_memmove='define'"
5230 $ WC "d_memset='define'"
5231 $ WC "d_mkdir='define'"
5232 $ WC "d_mkdtemp='" + d_mkdtemp + "'"
5233 $ WC "d_mkfifo='undef'"
5234 $ WC "d_mknod='undef'"
5235 $ WC "d_mkstemp='" + d_mkstemp + "'"
5236 $ WC "d_mkstemps='" + d_mkstemps + "'"
5237 $ WC "d_mktime='" + d_mktime + "'"
5238 $ WC "d_mmap='" + d_mmap + "'"
5239 $ WC "d_modfl='" + d_modfl + "'"
5240 $ WC "d_modfl_pow32_bug='undef'"
5241 $ WC "d_mprotect='" + d_mprotect + "'"
5242 $ WC "d_msg='undef'"
5243 $ WC "d_msg_ctrunc='undef'"
5244 $ WC "d_msg_dontroute='undef'"
5245 $ WC "d_msg_oob='undef'"
5246 $ WC "d_msg_peek='undef'"
5247 $ WC "d_msg_proxy='undef'"
5248 $ WC "d_msghdr_s='undef'"
5249 $ WC "d_msync='" + d_msync + "'"
5250 $ WC "d_munmap='" + d_munmap + "'"
5251 $ WC "d_mymalloc='" + d_mymalloc + "'"
5252 $ WC "d_nice='define'"
5253 $ WC "d_nl_langinfo='" + d_nl_langinfo + "'"
5254 $ WC "d_nv_preserves_uv='" + d_nv_preserves_uv + "'"
5255 $ WC "d_nv_preserves_uv_bits='" + d_nv_preserves_uv_bits + "'"
5256 $ WC "d_off64_t='" + d_off64_t + "'"
5257 $ WC "d_old_pthread_create_joinable='" + d_old_pthread_create_joinable + "'"
5258 $ WC "d_oldarchlib='define'"
5259 $ WC "d_oldpthreads='" + d_oldpthreads + "'"
5260 $ WC "d_open3='define'"
5261 $ WC "d_pathconf='" + d_pathconf + "'"
5262 $ WC "d_pause='define'"
5263 $ WC "d_perl_otherlibdirs='undef'"
5264 $ WC "d_phostname='" + d_phostname + "'"
5265 $ WC "d_pipe='define'"
5266 $ WC "d_poll='undef'"
5267 $ WC "d_procselfexe='undef'"
5268 $ WC "d_pthread_atfork='undef'"
5269 $ WC "d_pthread_yield='" + d_pthread_yield + "'"
5270 $ WC "d_pthreads_created_joinable='" + d_pthreads_created_joinable + "'"
5271 $ WC "d_pwage='undef'"
5272 $ WC "d_pwchange='undef'"
5273 $ WC "d_pwclass='undef'"
5274 $ WC "d_pwcomment='define'"
5275 $ WC "d_pwexpire='undef'"
5276 $ WC "d_pwgecos='define'"
5277 $ WC "d_pwpasswd='define'"
5278 $ WC "d_pwquota='undef'"
5279 $ WC "d_qgcvt='undef'"
5280 $ WC "d_quad='" + d_quad + "'"
5281 $ WC "d_readdir='define'"
5282 $ WC "d_readlink='undef'"
5283 $ WC "d_readv='undef'"
5284 $ WC "d_realpath='undef'"
5285 $ WC "d_recvmsg='undef'"
5286 $ WC "d_rename='define'"
5287 $ WC "d_rewinddir='define'"
5288 $ WC "d_rmdir='define'"
5289 $ WC "d_safebcpy='undef'"
5290 $ WC "d_safemcpy='define'"
5291 $ WC "d_sanemcmp='define'"
5292 $ WC "d_sbrkproto='define'"
5293 $ WC "d_sched_yield='" + d_sched_yield + "'"
5294 $ WC "d_scm_rights='undef'"
5295 $ WC "d_seekdir='define'"
5296 $ WC "d_select='" + d_select + "'"
5297 $ WC "d_sem='undef'"
5298 $ WC "d_semctl_semid_ds='undef'"
5299 $ WC "d_semctl_semun='undef'"
5300 $ WC "d_sendmsg='undef'"
5301 $ WC "d_setegid='undef'"
5302 $ WC "d_setenv='" + d_setenv + "'"
5303 $ WC "d_seteuid='undef'"
5304 $ WC "d_setgrent='undef'"
5305 $ WC "d_setgrps='undef'"
5306 $ WC "d_sethent='" + d_sethent + "'"
5307 $ WC "d_setitimer='" + d_setitimer + "'"
5308 $ WC "d_setlinebuf='undef'"
5309 $ WC "d_setlocale='" + d_setlocale + "'"
5310 $ WC "d_setnent='" + d_setnent + "'"
5311 $ WC "d_setpent='" + d_setpent + "'"
5312 $ WC "d_setpgid='undef'"
5313 $ WC "d_setpgrp2='undef'"
5314 $ WC "d_setpgrp='undef'"
5315 $ WC "d_setprior='undef'"
5316 $ WC "d_setproctitle='" + d_setproctitle + "'"
5317 $ WC "d_setpwent='define'"
5318 $ WC "d_setregid='undef'"
5319 $ WC "d_setresgid='undef'"
5320 $ WC "d_setresuid='undef'"
5321 $ WC "d_setreuid='undef'"
5322 $ WC "d_setrgid='undef'"
5323 $ WC "d_setruid='undef'"
5324 $ WC "d_setsent='" + d_setsent + "'"
5325 $ WC "d_setsid='undef'"
5326 $ WC "d_setvbuf='" + d_setvbuf + "'"
5327 $ WC "d_sfio='undef'"
5328 $ WC "d_shm='undef'"
5329 $ WC "d_shmatprototype='undef'"
5330 $ WC "d_sigaction='" + d_sigaction + "'"
5331 $ WC "d_sigprocmask='" + d_sigprocmask + "'"
5332 $ WC "d_sigsetjmp='" + d_sigsetjmp + "'"
5333 $ WC "d_sockatmark='undef'"
5334 $ WC "d_sockatmarkproto='undef'"
5335 $ WC "d_socket='" + d_socket + "'"
5336 $ WC "d_socklen_t='" + d_socklen_t + "'"
5337 $ WC "d_sockpair='undef'"
5338 $ WC "d_socks5_init='undef'"
5339 $ WC "d_sqrtl='define'"
5340 $ WC "d_sresgproto='undef'"
5341 $ WC "d_sresgproto='undef'"
5342 $ WC "d_sresproto='undef'"
5343 $ WC "d_sresuproto='undef'"
5344 $ WC "d_statblks='undef'"
5345 $ WC "d_statfs_f_flags='undef'"
5346 $ WC "d_statfs_s='undef'"
5347 $ WC "d_statfsflags='undef'"
5348 $ WC "d_stdio_cnt_lval='" + d_stdio_cnt_lval + "'"
5349 $ WC "d_stdio_ptr_lval='" + d_stdio_ptr_lval + "'"
5350 $ WC "d_stdio_ptr_lval_nochange_cnt='" + d_stdio_ptr_lval_nochange_cnt + "'"
5351 $ WC "d_stdio_ptr_lval_sets_cnt='" + d_stdio_ptr_lval_sets_cnt + "'"
5352 $ WC "d_stdio_stream_array='undef'"
5353 $ WC "d_stdiobase='" + d_stdiobase + "'"
5354 $ WC "d_stdstdio='" + d_stdstdio + "'"
5355 $ WC "d_strchr='define'"
5356 $ WC "d_strcoll='" + d_strcoll + "'"
5357 $ WC "d_strctcpy='define'"
5358 $ WC "d_strerrm='strerror((e),vaxc$errno)'"
5359 $ WC "d_strerror='define'"
5360 $ WC "d_strftime='define'"
5361 $ WC "d_strtod='define'"
5362 $ WC "d_strtol='define'"
5363 $ WC "d_strtold='" + d_strtold + "'"
5364 $ WC "d_strtoll='" + d_strtoll + "'"
5365 $ WC "d_strtoq='define'"
5366 $ WC "d_strtoul='define'"
5367 $ WC "d_strtoull='" + d_strtoull + "'"
5368 $ WC "d_strtouq='" + d_strtouq + "'"
5369 $ WC "d_strxfrm='" + d_strxfrm + "'"
5370 $ WC "d_suidsafe='undef'"
5371 $ WC "d_symlink='undef'"
5372 $ WC "d_syscall='undef'"
5373 $ WC "d_syscallproto='undef'"
5374 $ WC "d_sysconf='" + d_sysconf + "'"
5375 $ WC "d_syserrlst='undef'"
5376 $ WC "d_system='define'"
5377 $ WC "d_tcgetpgrp='undef'"
5378 $ WC "d_tcsetpgrp='undef'"
5379 $ WC "d_telldir='define'"
5380 $ WC "d_telldirproto='define'"
5381 $ WC "d_times='define'"
5382 $ WC "d_truncate='" + d_truncate + "'"
5383 $ WC "d_tzname='" + d_tzname + "'"
5384 $ WC "d_u32align='define'"
5385 $ WC "d_ualarm='" + d_ualarm + "'"
5386 $ WC "d_umask='define'"
5387 $ WC "d_uname='" + d_uname + "'"
5388 $ WC "d_union_semun='undef'"
5389 $ WC "d_unlink_all_versions='undef'"
5390 $ WC "d_unordered='undef'"
5391 $ WC "d_usleep='" + d_usleep + "'"
5392 $ WC "d_usleepproto='" + d_usleep + "'"
5393 $ WC "d_ustat='undef'"
5394 $ WC "d_vendorarch='undef'"
5395 $ WC "d_vendorlib='undef'"
5396 $ WC "d_vfork='define'"
5397 $ WC "d_vms_case_sensitive_symbols='" + d_vms_be_case_sensitive + "'" ! VMS
5398 $ WC "d_vms_do_sockets='" + d_vms_do_sockets + "'" ! VMS
5399 $ WC "d_void_closedir='define'"
5400 $ WC "d_volatile='define'"
5401 $ WC "d_vprintf='define'"
5402 $ WC "d_wait4='" + d_wait4 + "'"
5403 $ WC "d_waitpid='define'"
5404 $ WC "d_wcstombs='" + d_wcstombs + "'"
5405 $ WC "d_wctomb='" + d_wctomb + "'"
5406 $ WC "d_writev='undef'"
5407 $ WC "db_hashtype=' '"
5408 $ WC "db_prefixtype=' '"
5409 $ WC "dbgprefix='" + dbgprefix + "'"
5410 $ WC "defvoidused='15'"
5411 $ WC "devtype='" + devtype + "'"
5412 $ WC "direntrytype='struct dirent'"
5413 $ WC "dlext='" + dlext + "'"
5414 $ WC "dlobj='" + dlobj + "'"
5415 $ WC "dlsrc='dl_vms.c'"
5416 $ WC "doublesize='" + doublesize + "'"
5417 $ WC "drand01='" + drand01 + "'"
5419 $! The extensions symbol may be quite long
5421 $ tmp = "dynamic_ext='" + extensions + "'"
5425 $ WC "ebcdic='undef'"
5426 $ WC "embedmymalloc='" + usemymalloc + "'"
5427 $ WC "eunicefix=':'"
5428 $ WC "exe_ext='" + exe_ext + "'"
5430 $! The extensions symbol may be quite long
5432 $ tmp = "extensions='" + extensions + "'"
5435 $ WC "fflushNULL='define'"
5436 $ WC "fflushall='undef'"
5437 $ WC "fpostype='fpos_t'"
5438 $ WC "freetype='void'"
5439 $ WC "full_ar='" + "'"
5440 $ WC "full_csh='" + " '"
5441 $ WC "full_sed='_NLA0:'"
5442 $ WC "gccversion='" + gccversion + "'"
5443 $ WC "gidformat='lu'"
5446 $ WC "gidtype='" + gidtype + "'"
5447 $ WC "groupstype='Gid_t'"
5449 $ WC "hintfile='" + "'"
5450 $ WC "i16size='" + i16size + "'"
5451 $ WC "i16type='" + i16type + "'"
5452 $ WC "i32size='" + i32size + "'"
5453 $ WC "i32type='" + i32type + "'"
5454 $ WC "i64size='" + i64size + "'"
5455 $ WC "i64type='" + i64type + "'"
5456 $ WC "i8size='" + i8size + "'"
5457 $ WC "i8type='" + i8type + "'"
5458 $ WC "i_arpainet='undef'"
5459 $ WC "i_dbm='undef'"
5460 $ WC "i_dirent='" + i_dirent + "'"
5461 $ WC "i_dlfcn='undef'"
5462 $ WC "i_fcntl='" + i_fcntl + "'"
5463 $ WC "i_float='define'"
5465 $ WC "i_fp_class='undef'"
5466 $ WC "i_grp='undef'"
5467 $ WC "i_ieeefp='undef'"
5468 $ WC "i_inttypes='" + i_inttypes + "'"
5469 $ WC "i_langinfo='" + i_langinfo + "'"
5470 $ WC "i_libutil='" + i_libutil + "'"
5471 $ WC "i_limits='define'"
5472 $ WC "i_locale='" + i_locale + "'"
5473 $ WC "i_machcthr='undef'"
5474 $ WC "i_machcthreads='undef'"
5475 $ WC "i_math='define'"
5476 $ WC "i_memory='undef'"
5477 $ WC "i_mntent='undef'"
5478 $ WC "i_ndbm='undef'"
5479 $ WC "i_netdb='" + i_netdb + "'"
5480 $ WC "i_neterrno='define'"
5481 $ WC "i_netinettcp='" + i_netinettcp + "'"
5482 $ WC "i_niin='" + i_niin + "'"
5483 $ WC "i_poll='" + i_poll + "'"
5484 $ WC "i_prot='undef'"
5485 $ WC "i_pthread='define'"
5486 $ WC "i_pwd='undef'"
5487 $ WC "i_rpcsvcdbm='undef'"
5488 $ WC "i_sfio='undef'"
5489 $ WC "i_sgtty='undef'"
5490 $ WC "i_shadow='" + i_shadow + "'"
5491 $ WC "i_socks='" + i_socks + "'"
5492 $ WC "i_stdarg='define'"
5493 $ WC "i_stddef='define'"
5494 $ WC "i_stdlib='define'"
5495 $ WC "i_string='define'"
5496 $ WC "i_sunmath='undef'"
5497 $ WC "i_sysaccess='" + i_sysaccess + "'"
5498 $ WC "i_sysdir='undef'"
5499 $ WC "i_sysfile='" + i_sysfile + "'"
5500 $ WC "i_sysioctl='undef'"
5501 $ WC "i_syslog='" + i_syslog + "'"
5502 $ WC "i_sysmman='undef'"
5503 $ WC "i_sysmode='" + i_sysmode + "'"
5504 $ WC "i_sysmount='undef'"
5505 $ WC "i_sysndir='undef'"
5506 $ WC "i_sysparam='undef'"
5507 $ WC "i_sysresrc='undef'"
5508 $ WC "i_syssecrt='" + i_syssecrt + "'"
5509 $ WC "i_sysselct='undef'"
5510 $ WC "i_syssockio='undef'"
5511 $ WC "i_sysstat='define'"
5512 $ WC "i_sysstatfs='undef'"
5513 $ WC "i_sysstatvfs='undef'"
5514 $ WC "i_systime='undef'"
5515 $ WC "i_systimek='undef'"
5516 $ WC "i_systimes='undef'"
5517 $ WC "i_systypes='define'"
5518 $ WC "i_sysuio='" + i_sysuio + "'"
5519 $ WC "i_sysun='undef'"
5520 $ WC "i_sysutsname='" + i_sysutsname + "'"
5521 $ WC "i_sysvfs='undef'"
5522 $ WC "i_syswait='undef'"
5523 $ WC "i_termio='undef'"
5524 $ WC "i_termios='undef'"
5525 $ WC "i_time='define'"
5526 $ WC "i_unistd='" + i_unistd + "'"
5527 $ WC "i_ustat='undef'"
5528 $ WC "i_utime='undef'"
5529 $ WC "i_values='undef'"
5530 $ WC "i_varargs='undef'"
5531 $ WC "i_vfork='undef'"
5532 $ WC "inc_version_list='0'"
5533 $ WC "inc_version_list_init='0'"
5534 $ WC "installarchlib='" + installarchlib + "'"
5535 $ WC "installbin='" + installbin + "'"
5536 $ WC "installman1dir='" + installman1dir + "'"
5537 $ WC "installman3dir='" + installman3dir + "'"
5538 $ WC "installprivlib='" + installprivlib + "'"
5539 $ WC "installscript='" + installscript + "'"
5540 $ WC "installsitearch='" + installsitearch + "'"
5541 $ WC "installsitelib='" + installsitelib + "'"
5542 $ WC "installusrbinperl='undef'"
5543 $ WC "intsize='" + intsize + "'"
5544 $ WC "ivdformat='" + ivdformat + "'"
5545 $ WC "ivsize='" + ivsize + "'"
5546 $ WC "ivtype='" + ivtype + "'"
5548 $! The known_extensions symbol may be quite long
5550 $ tmp = "known_extensions='" + known_extensions + "'"
5553 $ WC "ld='" + ld + "'"
5554 $ WC "lddlflags='/Share'"
5555 $ WC "ldflags='" + ldflags + "'"
5556 $ WC "lib_ext='" + lib_ext + "'"
5557 $ WC "libc='" + libc + "'"
5558 $ WC "libpth='/sys$share /sys$library'"
5559 $ WC "libs='" + libs + "'"
5560 $ WC "longdblsize='" + longdblsize + "'"
5561 $ WC "longlongsize='" + longlongsize + "'"
5562 $ WC "longsize='" + longsize + "'"
5563 $ WC "lseeksize='4'"
5564 $ WC "lseektype='int'"
5566 $ WC "make='" + make + "'"
5567 $ WC "malloctype='void *'"
5568 $ WC "man1ext='rno'"
5569 $ WC "man3ext='rno'"
5570 $ WC "mmaptype='void *'"
5571 $ WC "modetype='unsigned int'"
5572 $ WC "multiarch='undef'"
5573 $ WC "mydomain='" + mydomain + "'"
5574 $ WC "myhostname='" + myhostname + "'"
5575 $ WC "myuname='" + myuname + "'"
5576 $ WC "need_va_copy='undef'"
5577 $ WC "netdb_hlen_type='" + netdb_hlen_type + "'"
5578 $ WC "netdb_host_type='" + netdb_host_type + "'"
5579 $ WC "netdb_name_type='" + netdb_name_type + "'"
5580 $ WC "netdb_net_type='" + netdb_net_type + "'"
5581 $ WC "nveformat='" + nveformat + "'"
5582 $ WC "nvfformat='" + nvfformat + "'"
5583 $ WC "nvgformat='" + nvgformat + "'"
5584 $ WC "nvsize='" + nvsize + "'"
5585 $ WC "nvtype='" + nvtype + "'"
5586 $ WC "o_nonblock=' '"
5587 $ WC "obj_ext='" + obj_ext + "'"
5588 $ WC "old_pthread_create_joinable='" + old_pthread_create_joinable + "'"
5589 $ WC "oldarchlib='" + oldarchlib + "'"
5590 $ WC "oldarchlibexp='" + oldarchlibexp + "'"
5591 $ WC "optimize='" + optimize + "'"
5592 $ WC "osname='" + osname + "'"
5593 $ WC "osvers='" + osvers + "'"
5594 $ WC "otherlibdirs='" + "'"
5595 $ WC "package='" + package + "'"
5596 $ WC "pager='" + pager + "'"
5597 $ WC "patchlevel='" + patchlevel + "'"
5599 $ WC "perl_root='" + perl_root + "'" ! VMS specific $trnlnm()
5600 $ WC "perladmin='" + perladmin + "'"
5601 $ WC "perllibs='" + perllibs + "'"
5602 $ WC "perl_symbol='" + perl_symbol + "'" ! VMS specific
5603 $ WC "perl_verb='" + perl_verb + "'" ! VMS specific
5604 $ WC "pgflquota='" + pgflquota + "'"
5605 $ WC "pidtype='" + pidtype + "'"
5606 $ WC "pm_apiversion='" + version + "'"
5607 $! WC "prefix='" + vms_prefix + "'"
5608 $ WC "prefix='" + prefix + "'"
5609 $ WC "privlib='" + privlib + "'"
5610 $ WC "privlibexp='" + privlibexp + "'"
5611 $ WC "procselfexe=' '"
5612 $ WC "prototype='define'"
5613 $ WC "ptrsize='" + ptrsize + "'"
5614 $ WC "quadkind='" + quadkind + "'"
5615 $ WC "quadtype='" + quadtype + "'"
5616 $ WC "randbits='31'"
5617 $ WC "randseedtype='" + randseedtype + "'"
5618 $ WC "ranlib='" + "'"
5619 $ WC "rd_nodata=' '"
5620 $ WC "revision='" + revision + "'"
5621 $ WC "sPRId64='" + sPRId64 + "'"
5622 $ WC "sPRIEldbl='" + sPRIEUldbl + "'"
5623 $ WC "sPRIFldbl='" + sPRIFUldbl + "'"
5624 $ WC "sPRIGldbl='" + sPRIGUldbl + "'"
5625 $ WC "sPRIX64='" + sPRIXU64 + "'"
5626 $ WC "sPRIeldbl='" + sPRIeldbl + "'"
5627 $ WC "sPRIfldbl='" + sPRIfldbl + "'"
5628 $ WC "sPRIgldbl='" + sPRIgldbl + "'"
5629 $! WC "sPRIi64='" + sPRIi64 + "'"
5630 $ WC "sPRIo64='" + sPRIo64 + "'"
5631 $ WC "sPRIu64='" + sPRIu64 + "'"
5632 $ WC "sPRIx64='" + sPRIx64 + "'"
5633 $ WC "sSCNfldbl='" + sSCNfldbl + "'"
5634 $ WC "sched_yield='" + sched_yield + "'"
5635 $ WC "scriptdir='" + scriptdir + "'"
5636 $ WC "seedfunc='" + seedfunc + "'"
5637 $ WC "selectminbits='32'"
5638 $ WC "selecttype='" + selecttype + "'"
5640 $ WC "shmattype='" + " '"
5641 $ WC "shortsize='" + shortsize + "'"
5642 $ WC "shrplib='define'"
5643 $ WC "sig_name='" + sig_name + "'"
5644 $ tmp = "sig_name_init='" + sig_name_init + "'"
5647 $ WC "sig_num='" + sig_num + "'"
5648 $ WC "sig_num_init='" + sig_num_init + "'"
5649 $ WC "sig_size='" + sig_size + "'"
5650 $ WC "signal_t='" + signal_t + "'"
5651 $ WC "sitearch='" + sitearch + "'"
5652 $ WC "sitearchexp='" + sitearchexp + "'"
5653 $ WC "sitelib='" + sitelib + "'"
5654 $ WC "sitelib_stem='" + sitelib_stem + "'"
5655 $ WC "sitelibexp='" + sitelibexp + "'"
5656 $ WC "sizesize='" + sizesize + "'"
5657 $ WC "sizetype='size_t'"
5658 $ WC "so='" + so + "'"
5659 $ WC "socksizetype='" + socksizetype + "'"
5660 $ WC "spitshell='write sys$output '"
5661 $ WC "src='" + src + "'"
5662 $ WC "ssizetype='int'"
5663 $ WC "startperl=" + startperl ! This one's special--no enclosing single quotes
5664 $ WC "static_ext='" + static_ext + "'"
5665 $ WC "stdchar='" + stdchar + "'"
5666 $ WC "stdio_base='((*fp)->_base)'"
5667 $ WC "stdio_bufsiz='((*fp)->_cnt + (*fp)->_ptr - (*fp)->_base)'"
5668 $ WC "stdio_cnt='((*fp)->_cnt)'"
5669 $ WC "stdio_ptr='((*fp)->_ptr)'"
5670 $ WC "stdio_stream_array=' " + "'"
5671 $ WC "subversion='" + subversion + "'"
5672 $ WC "timetype='" + timetype + "'"
5673 $ WC "u16size='" + u16size + "'"
5674 $ WC "u16type='" + u16type + "'"
5675 $ WC "u32size='" + u32size + "'"
5676 $ WC "u32type='" + u32type + "'"
5677 $ WC "u64size='" + u64size + "'"
5678 $ WC "u64type='" + u64type + "'"
5679 $ WC "u8size='" + u8size + "'"
5680 $ WC "u8type='" + u8type + "'"
5681 $ WC "uidformat='lu'"
5684 $ WC "uidtype='" + uidtype + "'"
5685 $ WC "uquadtype='" + uquadtype + "'"
5686 $ WC "use5005threads='" + use5005threads + "'"
5687 $ WC "use64bitall='" + use64bitall + "'"
5688 $ WC "use64bitint='" + use64bitint + "'"
5689 $ WC "usecasesensitive='" + be_case_sensitive + "'" ! VMS-specific
5690 $ WC "usedebugging_perl='"+use_debugging_perl+"'"
5691 $ WC "usedefaulttypes='" + usedefaulttypes + "'" ! VMS-specific
5692 $ WC "usecrosscompile='undef'"
5693 $ WC "usedl='" + usedl + "'"
5694 $ WC "useieee='" + useieee + "'" ! VMS-specific
5695 $ WC "useithreads='" + useithreads + "'"
5696 $ WC "uselargefiles='" + uselargefiles + "'"
5697 $ WC "uselongdouble='" + uselongdouble + "'"
5698 $ WC "usemorebits='" + usemorebits + "'"
5699 $ WC "usemultiplicity='" + usemultiplicity + "'"
5700 $ WC "usemymalloc='" + usemymalloc + "'"
5701 $ WC "useperlio='" + useperlio + "'"
5702 $ WC "useposix='false'"
5703 $ WC "usereentrant='undef'"
5704 $ WC "usesecurelog='" + usesecurelog + "'" ! VMS-specific
5705 $ WC "usesocks='undef'"
5706 $ WC "usethreads='" + usethreads + "'"
5707 $ WC "usevfork='true'"
5708 $ WC "usevmsdebug='" + usevmsdebug + "'" ! VMS-specific
5709 $ WC "uvoformat='" + uvoformat + "'"
5710 $ WC "uvsize='" + uvsize + "'"
5711 $ WC "uvtype='" + uvtype + "'"
5712 $ WC "uvuformat='" + uvuformat + "'"
5713 $ WC "uvxformat='" + uvxformat + "'"
5714 $ WC "uvXUformat='" + uvXUformat + "'"
5715 $ WC "vendorarchexp='" + "'"
5716 $ WC "vendorlib_stem='" + "'"
5717 $ WC "vendorlibexp='" + "'"
5718 $ WC "version='" + version + "'"
5719 $ WC "version_patchlevel_string='" + version_patchlevel_string + "'"
5720 $ WC "vms_cc_type='" + vms_cc_type + "'" ! VMS specific
5721 $ WC "vms_prefix='" + vms_prefix + "'" ! VMS specific
5722 $ WC "vms_ver='" + vms_ver + "'" ! VMS specific
5723 $ WC "voidflags='15'"
5724 $ WC "xs_apiversion='" + version + "'"
5725 $ WC "PERL_CONFIG_SH='true'"
5727 $! ##END WRITE NEW CONSTANTS HERE##
5731 $! Okay, we've gotten here. Build munchconfig.exe
5732 $ COPY/NOLOG [-.vms]munchconfig.c []
5733 $ COPY/NOLOG [-.vms]'Makefile_SH' []
5734 $ 'Perl_CC' munchconfig.c
5737 $ OPEN/WRITE CONFIG []munchconfig.opt
5738 $ IF ccname .EQS. "GCC"
5740 $ WRITE CONFIG "Gnu_CC:[000000]gcclib.olb/library"
5742 $ WRITE CONFIG "Sys$Share:VAXCRTL/Share"
5744 $ 'ld' munchconfig.obj,munchconfig.opt/opt
5745 $ DELETE/NOLOG/NOCONFIRM munchconfig.opt;
5747 $ 'ld' munchconfig.obj
5749 $ IF F$SEARCH("munchconfig.obj") .NES. "" THEN DELETE/NOLOG/NOCONFIRM munchconfig.obj;
5750 $ IF F$SEARCH("munchconfig.c") .NES. "" THEN DELETE/NOLOG/NOCONFIRM munchconfig.c;
5751 $ IF ccname .EQS. "CXX"
5753 $ CALL Cxx_demangler_cleanup
5756 $ IF alldone .EQS. ""
5761 If you'd like to make any changes to the config.sh file before I begin
5762 to configure things, answer yes to the following question.
5766 $ rp="Do you wish to edit ''basename_config_sh'? [''bool_dflt'] "
5771 $ echo4 "Be sure to type LOGOUT after you have edited the file,"
5772 $ echo4 "then this procedure will resume."
5774 $ default = F$ENVIRONMENT("DEFAULT")
5775 $ DIRECTORY 'config_sh'
5778 $ SET DEFAULT 'default'
5783 $ echo4 "Adding ''osname' specific preprocessor commands."
5785 $ ! we need an fdl file
5786 $ CREATE [-]CONFIG.FDL
5791 $ CREATE /FDL=[-]CONFIG.FDL [-]CONFIG.LOCAL
5792 $ ! First spit out the header info with the local defines (to get
5793 $ ! around the 255 character command line limit)
5794 $ OPEN/APPEND CONFIG [-]config.local
5795 $ IF use_debugging_perl THEN WC "#define DEBUGGING"
5796 $ IF use_two_pot_malloc THEN WC "#define TWO_POT_OPTIMIZE"
5797 $ IF mymalloc THEN WC "#define EMBEDMYMALLOC"
5798 $ IF use_pack_malloc THEN WC "#define PACK_MALLOC"
5799 $ IF use_debugmalloc THEN WC "#define DEBUGGING_MSTATS"
5800 $ IF ccname .EQS. "GCC" THEN WC "#define GNUC_ATTRIBUTE_CHECK"
5801 $ IF (Has_Dec_C_Sockets)
5803 $ WC "#define VMS_DO_SOCKETS"
5804 $ WC "#define DECCRTL_SOCKETS"
5806 $ IF Has_Socketshr THEN WC "#define VMS_DO_SOCKETS"
5808 $! This is VMS-specific for now
5809 $ WC "#''d_setenv' HAS_SETENV"
5810 $ IF d_secintgenv THEN WC "#define SECURE_INTERNAL_GETENV"
5811 $ IF d_alwdeftype THEN WC "#define ALWAYS_DEFTYPES"
5812 $ IF use64bitint .OR. use64bitint .EQS. "define"
5814 $ WC "#define USE_64_BIT_INT"
5815 $ WC "#define USE_LONG_DOUBLE"
5817 $ IF use64bitall .OR. use64bitall .EQS. "define" THEN -
5818 WC "#define USE_64_BIT_ALL"
5819 $ IF be_case_sensitive THEN WC "#define VMS_WE_ARE_CASE_SENSITIVE"
5820 $ IF d_herrno .EQS. "undef" THEN WC "#define NEED_AN_H_ERRNO"
5821 $ WC "#define HAS_ENVGETENV"
5822 $ WC "#define PERL_EXTERNAL_GLOB"
5823 $ IF archname .EQS. "VMS_VAX" .AND. -
5824 ccname .EQS. "DEC" .AND. -
5825 ccversion .LE. 50390006
5827 $! Alas this does not help to build Fcntl
5828 $! WC "#define PERL_IGNORE_FPUSIG SIGFPE"
5830 $ IF kill_by_sigprc .EQS. "define" then WC "#define KILL_BY_SIGPRC"
5833 $ echo4 "Doing variable substitutions on .SH files..."
5834 $ echo4 "Extracting config.h (with variable substitutions)"
5836 $! Now build the normal config.h
5837 $ DEFINE/USER_MODE sys$output [-]config.main
5838 $ mcr []munchconfig 'config_sh' [-]config_h.sh
5839 $ ! Concatenate them together
5840 $ copy [-]config.local,[-]config.main [-]config.h
5842 $ DELETE/NOLOG [-]CONFIG.MAIN;*
5843 $ DELETE/NOLOG [-]CONFIG.LOCAL;*
5844 $ DELETE/NOLOG [-]CONFIG.FDL;*
5846 $ IF ccname .EQS. "DEC"
5848 $ DECC_REPLACE = "DECC=decc=1"
5850 $ DECC_REPLACE = "DECC="
5852 $ IF ccname .EQS. "CXX"
5854 $ DECCXX_REPLACE = "DECCXX=DECCXX=1"
5856 $ DECCXX_REPLACE = "DECCXX="
5858 $ IF ccname .EQS. "GCC"
5860 $ GNUC_REPLACE = "GNUC=gnuc=1"
5862 $ GNUC_REPLACE = "GNUC="
5864 $ IF Has_Dec_C_Sockets
5866 $ SOCKET_REPLACE = "SOCKET=DECC_SOCKETS=1"
5870 $ SOCKET_REPLACE = "SOCKET=SOCKETSHR_SOCKETS=1"
5872 $ SOCKET_REPLACE = "SOCKET="
5877 $ IF (vms_ver .LES. "6.2")
5879 $ THREAD_REPLACE = "THREAD=OLDTHREADED=1"
5881 $ THREAD_REPLACE = "THREAD=THREADED=1"
5884 $ THREAD_REPLACE = "THREAD="
5888 $ MALLOC_REPLACE = "MALLOC=MALLOC=1"
5890 $ MALLOC_REPLACE = "MALLOC="
5892 $ echo4 "Extracting ''defmakefile' (with variable substitutions)"
5893 $ DEFINE/USER_MODE sys$output 'UUmakefile'
5894 $ mcr []munchconfig 'config_sh' 'Makefile_SH' "''DECC_REPLACE'" -
5895 "''DECCXX_REPLACE'" "''ARCH_TYPE'" "''GNUC_REPLACE'" "''SOCKET_REPLACE'" -
5896 "''THREAD_REPLACE'" "''C_Compiler_Replace'" "''MALLOC_REPLACE'" -
5897 "''Thread_Live_Dangerously'" "PV=''version'" "FLAGS=FLAGS=''extra_flags'"
5898 $! Clean up after ourselves
5899 $ DELETE/NOLOG/NOCONFIRM []munchconfig.exe;
5901 $ echo4 "Extracting make_ext.com (without variable substitutions)"
5902 $ Create Sys$Disk:[-]make_ext.com
5903 $ Deck/Dollar="$EndOfTpl$"
5905 $! NOTE: This file is extracted as part of the VMS configuration process.
5906 $! Any changes made to it directly will be lost. If you need to make any
5907 $! changes, please edit the template in Configure.Com instead.
5908 $ def = F$Environment("Default")
5909 $! p1 - how to invoke miniperl (passed in from descrip.mms)
5910 $ p1 = F$Edit(p1,"Upcase,Compress,Trim")
5911 $ If F$Locate("MCR ",p1).eq.0 Then p1 = F$Extract(3,255,p1)
5912 $ miniperl = "$" + F$Search(F$Parse(p1,".Exe"))
5913 $! p2 - how to invoke local make utility (passed in from descrip.mms)
5915 $ if f$type('p2') .nes. "" then makeutil = 'p2'
5916 $! p3 - make target (passed in from descrip.mms)
5917 $ targ = F$Edit(p3,"Lowercase")
5920 $ open/read CONFIG config.sh
5922 $ read/end=end_ext_loop CONFIG line
5923 $ if (f$extract(0,12,line) .NES. "extensions='")
5924 $ then goto find_ext_loop
5925 $ else extensions = f$extract(12,f$length(line),line) - "'"
5929 $ extensions = f$edit(extensions,"TRIM,COMPRESS")
5932 $ ext = f$element(i," ",extensions)
5933 $ If ext .eqs. " " .or. ext .eqs. "" Then Goto done
5934 $ Define/User_mode Perl_Env_Tables CLISYM_LOCAL
5937 ($extdir = $ENV{'ext'}) =~ s/::/./g;
5939 if ($extdir =~ /^vms/i) { $extdir =~ s/vms/.vms.ext/i; }
5940 else { $extdir = ".ext.$extdir"; }
5941 ($ENV{'extdir'} = "[$extdir]");
5942 ($ENV{'up'} = ('-') x ($extdir =~ tr/././));
5944 $ Set Default &extdir
5946 $ If F$Locate("clean",targ) .eqs. F$Length(targ)
5948 $ Write Sys$Output ""
5949 $ Write Sys$Output " Making ''ext' (dynamic)"
5950 $ On Error Then Goto done
5951 $ If F$Search("Descrip.MMS") .eqs. ""
5955 $ If F$CvTime(F$File("Descrip.MMS","rdt")) .lts. -
5956 F$CvTime(F$File("Makefile.PL","rdt")) Then redesc = 1
5959 $ Write Sys$Output "''targ'ing ''ext' . . ."
5960 $ On Error Then Continue
5963 miniperl "-I[''up'.lib]" Makefile.PL "INST_LIB=[''up'.lib]" "INST_ARCHLIB=[''up'.lib]"
5975 $! Note that the /key qualifier to search, as in:
5976 $! search README.* "=head"/key=(position=1)/window=0/output=extra.pods
5977 $! is not supported on VMS V5.5-2, hence not used in extra_pods.com.
5979 $ echo4 "Extracting extra_pods.com (without variable substitutions)"
5980 $ Create Sys$Disk:[-]extra_pods.com
5981 $ Deck/Dollar="$EOExtra_Pods$"
5983 $! NOTE: This file is extracted as part of the VMS configuration process.
5984 $! Any changes made to it directly will be lost. If you need to make any
5985 $! changes, please edit the template in Configure.Com instead.
5986 $! Use FORCE if you've just podified a README.* file on VMS.
5987 $ if f$search("extra.pods") .eqs. "" .or. P1 .eqs. "FORCE" then -
5988 search README.* "=head"/window=0/output=extra.pods
5989 $ open/read/error=extra_close EXTRA extra.pods
5991 $ read/error=extra_close/END_OF_FILE=extra_close EXTRA file
5992 $ file_type = f$parse(file,,,"TYPE",) - "."
5993 $ if file_type .nes. "VMS" .and. file_type .nes. "vms"
5995 $ pod_file = "[.pod]perl''file_type'.pod"
5996 $ file = file - "''f$parse(file,,,"VERSION",)'"
5997 $ if p1 .eqs. "CLEAN"
5998 $ then if f$search(pod_file) .nes. "" then delete/log 'pod_file';*
6001 $ if f$search(pod_file) .eqs. ""
6002 $ then do_copy := true
6004 $ file_rdt = f$cvtime(f$file_attributes(file,"RDT"))
6005 $ pod_file_rdt = f$cvtime(f$file_attributes(pod_file,"RDT"))
6006 $ if file_rdt .GTS. pod_file_rdt then do_copy := true
6008 $ if do_copy then copy/log/noconfirm 'file' 'pod_file'
6014 $ if p1 .eqs. "CLEAN" .and. f$search("extra.pods;-1") .nes. "" then -
6015 purge/nolog extra.pods
6019 $! Warn of dangerous symbols or logical names
6021 $Bad_environment: SUBROUTINE
6023 $ IF p2 .eqs. "SYMBOL"
6025 $ IF f$type('p1') .nes. "" THEN Bad_env := SYMBOL
6027 $ IF f$trnlnm(p1) .nes. "" THEN Bad_env := LOGICAL
6029 $ IF Bad_env .eqs. "SYMBOL" .or. Bad_env .eqs. "LOGICAL"
6031 $ IF f$search("config.msg") .nes. ""
6033 $ OPEN/APPEND CONFIG config.msg
6035 $ OPEN/WRITE CONFIG config.msg
6037 $ IF Bad_env .eqs. "SYMBOL"
6040 $ WRITE CONFIG "Symbol name ''p1' found in environment as " + &p1
6041 $ WRITE CONFIG " delete before building ''package' via:"
6042 $ WRITE CONFIG " $ DELETE/SYMBOL/GLOBAL ''p1'"
6043 $ IF f$locate("""",&p1) .ge. f$length(&p1)
6045 $ WRITE CONFIG " after building, testing, and installing ''package'"
6046 $ WRITE CONFIG " restore the symbol with:"
6047 $ WRITE CONFIG " $ ''p1' == """ + &p1 + """"
6050 $ IF Bad_env .eqs. "LOGICAL"
6053 $ WRITE CONFIG "Logical name ''p1' found in environment as " + f$trnlnm(p1)
6054 $ WRITE CONFIG " deassign before building ''package'"
6060 $ ENDSUBROUTINE ! Bad_environment
6062 $ echo4 "Checking for dangerous pre-existing global symbols and logical names."
6063 $ CALL Bad_environment "TMP"
6064 $ CALL Bad_environment "LIB"
6065 $ CALL Bad_environment "T"
6066 $ CALL Bad_environment "FOO"
6067 $ CALL Bad_environment "EXT"
6068 $ CALL Bad_environment "SOME_LOGICAL_NAME_NOT_LIKELY"
6069 $ CALL Bad_environment "DOWN_LOGICAL_NAME_NOT_LIKELY"
6070 $ CALL Bad_environment "TEST" "SYMBOL"
6071 $ IF f$search("config.msg") .eqs. "" THEN echo "OK."
6073 $! %Config-I-VMS, write perl_setup.com here
6075 $ IF (.NOT.perl_symbol)
6077 $ file_2_find = "[-]''packageup'.cld"
6079 $ echo4 "The perl.cld file is now being written..."
6080 $ OPEN/WRITE CONFIG 'file_2_find'
6082 $ IF (sharedperl .AND. archname .EQS. "VMS_AXP") THEN ext := .AXE
6083 $ IF (use_vmsdebug_perl)
6085 $ WRITE CONFIG "define verb dbgperl"
6086 $ WRITE CONFIG F$FAO("!_!AS","image ''vms_prefix':[000000]dbgperl''ext'")
6087 $ WRITE CONFIG F$FAO("!_!AS","cliflags (foreign)")
6089 $ WRITE CONFIG "define verb perl"
6090 $ WRITE CONFIG F$FAO("!_!AS","image ''vms_prefix':[000000]ndbgPerl''ext'")
6091 $ WRITE CONFIG F$FAO("!_!AS","cliflags (foreign)")
6093 $ WRITE CONFIG "define verb perl"
6094 $ WRITE CONFIG F$FAO("!_!AS","image ''vms_prefix':[000000]perl''ext'")
6095 $ WRITE CONFIG F$FAO("!_!AS","cliflags (foreign)")
6098 $ ENDIF ! (.NOT.perl_symbol)
6100 $ echo4 "The perl_setup.com file is now being written..."
6101 $ file_2_find = "[-]perl_setup.com"
6102 $ OPEN/WRITE CONFIG 'file_2_find'
6104 $ WRITE CONFIG "$! Perl_Setup.com ''cf_time'"
6105 $ IF cf_email.NES.perladmin
6107 $ WRITE CONFIG "$! perl configured by ''cf_email'"
6109 $ WRITE CONFIG "$! This perl configured & administered by ''perladmin'"
6112 $ prefix = prefix - "000000."
6113 $ IF F$LOCATE(".]",prefix) .EQ. F$LENGTH(prefix) THEN -
6114 prefix = prefix - "]" + ".]"
6115 $ WRITE CONFIG "$ define/translation=concealed ''vms_prefix' ''prefix'"
6116 $ WRITE CONFIG "$ ext = "".exe"""
6119 $ write config "$ if f$getsyi(""HW_MODEL"") .ge. 1024 then ext = "".AXE"""
6123 $ IF (use_vmsdebug_perl)
6125 $ WRITE CONFIG "$ dbgperl :== $''vms_prefix':[000000]dbgPerl'ext'"
6126 $ WRITE CONFIG "$ perl :== $''vms_prefix':[000000]ndbgPerl'ext'"
6127 $ WRITE CONFIG "$ define dbgPerlShr ''vms_prefix':[000000]dbgPerlShr'ext'"
6129 $ WRITE CONFIG "$ perl :== $''vms_prefix':[000000]Perl'ext'"
6130 $ WRITE CONFIG "$ define PerlShr ''vms_prefix':[000000]PerlShr'ext'"
6132 $ ELSE ! .NOT.perl_symbol
6133 $ IF (use_vmsdebug_perl)
6135 $ WRITE CONFIG "$ define dbgPerlShr ''vms_prefix':[000000]dbgPerlShr'ext'"
6137 $ WRITE CONFIG "$ define PerlShr ''vms_prefix':[000000]PerlShr'ext'"
6139 $ IF perl_verb .EQS. "PROCESS"
6141 $ WRITE CONFIG "$ set command ''vms_prefix':[000000]''packageup'.CLD"
6143 $ ENDIF ! perl_symbol
6144 $ WRITE CONFIG "$ define/nolog pod2text ''vms_prefix':[lib.pod]pod2text.com"
6145 $ WRITE CONFIG "$ define/nolog pod2html ''vms_prefix':[lib.pod]pod2html.com"
6146 $ WRITE CONFIG "$ define/nolog pod2man ''vms_prefix':[lib.pod]pod2man.com"
6150 $ WRITE CONFIG "$ define SYS$TIMEZONE_DIFFERENTIAL ''tzd'"
6151 $ ELSE !leave in but commented out (in case setting was from perl :-)
6152 $ WRITE CONFIG "$! define SYS$TIMEZONE_DIFFERENTIAL ''tzd'"
6155 $ WRITE CONFIG "$! Symbols for commonly used programs:"
6159 $ WRITE CONFIG "$ Perldoc == ""'"+"'Perl' ''vms_prefix':[lib.pod]Perldoc.com -t"""
6160 $ WRITE CONFIG "$ pod2text == ""'"+"'Perl' pod2text"""
6161 $ WRITE CONFIG "$ pod2html == ""'"+"'Perl' pod2html"""
6162 $ WRITE CONFIG "$ pod2latex == ""'"+"'Perl' ''vms_prefix':[lib.pod]pod2latex.com"""
6163 $ WRITE CONFIG "$!pod2man == ""'"+"'Perl' pod2man"""
6164 $ WRITE CONFIG "$!Perlbug == ""'"+"'Perl' ''vms_prefix':[lib]Perlbug.com"""
6165 $ WRITE CONFIG "$ c2ph == ""'"+"'Perl' ''vms_prefix':[utils]c2ph.com"""
6166 $ IF F$LOCATE("Devel::DProf",extensions) .LT. F$LENGTH(extensions)
6168 $ WRITE CONFIG "$ dprofpp == ""'"+"'Perl' ''vms_prefix':[utils]dprofpp.com"""
6170 $ WRITE CONFIG "$ h2ph == ""'"+"'Perl' ''vms_prefix':[utils]h2ph.com"""
6171 $ WRITE CONFIG "$ h2xs == ""'"+"'Perl' ''vms_prefix':[utils]h2xs.com"""
6172 $ WRITE CONFIG "$!perlcc == ""'"+"'Perl' ''vms_prefix':[utils]perlcc.com"""
6173 $ WRITE CONFIG "$ perlivp == ""'"+"'Perl' ''vms_prefix':[utils]perlivp.com"""
6174 $ WRITE CONFIG "$ splain == ""'"+"'Perl' ''vms_prefix':[utils]splain.com"""
6176 $ WRITE CONFIG "$ Perldoc == ""Perl ''vms_prefix':[lib.pod]Perldoc.com -t"""
6177 $ WRITE CONFIG "$ pod2text == ""Perl pod2text"""
6178 $ WRITE CONFIG "$ pod2html == ""Perl pod2html"""
6179 $ WRITE CONFIG "$ pod2latex == ""Perl ''vms_prefix':[lib.pod]pod2latex.com"""
6180 $ WRITE CONFIG "$!pod2man == ""Perl pod2man"""
6181 $ WRITE CONFIG "$!Perlbug == ""Perl ''vms_prefix':[lib]Perlbug.com"""
6182 $ WRITE CONFIG "$ c2ph == ""Perl ''vms_prefix':[utils]c2ph.com"""
6183 $ IF F$LOCATE("Devel::DProf",extensions) .LT. F$LENGTH(extensions)
6185 $ WRITE CONFIG "$ dprofpp == ""Perl ''vms_prefix':[utils]dprofpp.com"""
6187 $ WRITE CONFIG "$ h2ph == ""Perl ''vms_prefix':[utils]h2ph.com"""
6188 $ WRITE CONFIG "$ h2xs == ""Perl ''vms_prefix':[utils]h2xs.com"""
6189 $ WRITE CONFIG "$!perlcc == ""Perl ''vms_prefix':[utils]perlcc.com"""
6190 $ WRITE CONFIG "$ perlivp == ""Perl ''vms_prefix':[utils]perlivp.com"""
6191 $ WRITE CONFIG "$ splain == ""Perl ''vms_prefix':[utils]splain.com"""
6196 $ echo "The file can be found at:"
6197 $ echo4 " ''F$SEARCH(file_2_find)'"
6198 $ echo "Add that file (or an @ call to it) to your [SY]LOGIN.COM"
6199 $ echo "when you are satisfied with a successful compilation,"
6200 $ echo "testing, and installation of your perl."
6202 $ IF ((.NOT.perl_symbol) .AND. (perl_verb .EQS. "DCLTABLES"))
6204 $ file_2_find = "[-]''packageup'_install.com"
6205 $ OPEN/WRITE CONFIG 'file_2_find'
6206 $ WRITE CONFIG "$ set command perl /table=sys$common:[syslib]dcltables.exe -"
6207 $ WRITE CONFIG " /output=sys$common:[syslib]dcltables.exe"
6208 $ WRITE CONFIG "$ install replace sys$common:[syslib]dcltables.exe"
6211 $ echo4 "In order to install the ''packageup' verb into DCLTABLES run:"
6212 $ echo4 " @ ''F$SEARCH(file_2_find)'"
6213 $ echo4 "after a successful build, test, and install. Do so with CMKRNL privilege."
6217 $!figure out where we "are" by parsing 'vms_default_directory_name'
6219 $ set_def_command = ""
6220 $ dflt = F$ENVIRONMENT("DEFAULT") - ".UU]"
6221 $ tmp = vms_default_directory_name - dflt - "]"
6223 $ IF tmp .EQS. "" THEN GOTO Beyond_set_def_loop
6225 $ tmp1 = F$ELEMENT(i,".",tmp)
6226 $ IF tmp1 .EQS. "." THEN GOTO Beyond_set_def_loop
6228 $ THEN set_def_command = "set default [-"
6229 $ ELSE set_def_command = set_def_command + "-"
6233 $Beyond_set_def_loop:
6234 $ IF set_def_command.NES.""
6236 $ set_def_command = set_def_command - "-" + "]"
6238 $ echo4 "In order to build ''package' you must now issue the commands:"
6240 $ echo4 " ''set_def_command'"
6243 $ echo4 "In order to build ''package' you must now issue the command:"
6246 $ echo4 " ''make'''makefile'", macros
6249 $ IF ( F$SEARCH("config.msg").NES."" )
6251 $ echo "Hmm. I also noted the following information while running:"
6254 $ SET PROTECTION=(SYSTEM:RWED,OWNER:RWED) config.msg
6255 $ DELETE/NOLOG/NOCONFIRM config.msg;
6261 $ DEASSIGN SYS$OUTPUT
6262 $! DEASSIGN SYS$ERROR
6264 $ IF F$GETJPI("","FILCNT").GT.vms_filcnt THEN CLOSE CONFIG
6265 $ IF F$GETJPI("","FILCNT").GT.vms_filcnt
6266 $ THEN WRITE SYS$ERROR "%Config-W-VMS, WARNING: There is a file still open"
6268 $ dflt = F$ENVIRONMENT("DEFAULT")
6269 $ IF F$LOCATE("UU]",dflt).EQS.(F$LENGTH(dflt)-3)
6271 $ IF ( F$SEARCH("[]*.*").NES."" ) THEN DELETE/NOLOG/NOCONFIRM []*.*;*
6273 $ SET PROTECTION=(SYSTEM:RWED,OWNER:RWED) UU.DIR
6274 $ DELETE/NOLOG/NOCONFIRM UU.DIR;
6276 $ SET DEFAULT 'vms_default_directory_name' !be kind rewind
6278 $!: End of Configure