diff options
author | Hans Mulder <hansmu@xs4all.nl> | 1998-12-03 03:05:55 +0200 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1998-12-03 08:15:13 +0000 |
commit | 3937c24e3f4ed26beafd7a2fbe3a20466bfc2b2d (patch) | |
tree | 5e3c84310da31b73daff5f69ebcd0114f6e2327d /configure.com | |
parent | b687b08b628449b317ff558f31d9d716ace045de (diff) | |
download | perl-3937c24e3f4ed26beafd7a2fbe3a20466bfc2b2d.tar.gz |
Initial VMS patches
To: perl5-porters@perl.org, vmsperl@cor.newman.upenn.edu
Message-ID: <MLIST_3.0.6.32.19981202141057.0339a7f0@ous.edu>
The patch to config_h.SH requires more study because
metaconfig needs to agree.
p4raw-id: //depot/cfgperl@2441
Diffstat (limited to 'configure.com')
-rw-r--r-- | configure.com | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/configure.com b/configure.com index d51793abe8..24ce886c62 100644 --- a/configure.com +++ b/configure.com @@ -46,6 +46,7 @@ $ use_two_pot_malloc = "N" $ use_pack_malloc = "N" $ use_debugmalloc = "N" $ preload_env = "N" +$ use_multiplicity = "N" $ vms_default_directory_name = F$ENVIRONMENT("DEFAULT") $! max_allowed_dir_depth = 3 ! e.g. [A.B.PERL5_00n] not [A.B.C.PERL5_00n] $ max_allowed_dir_depth = 2 ! e.g. [FOO.PERL5_00n] not [FOO.BAR.PERL5_00n] @@ -1669,6 +1670,24 @@ $ IF ans.eqs."socketshr" then has_socketshr = "T" $ endif $! $! +$! Ask if they want to build with MULTIPLICITY +$ echo "The perl interpreter engine can be built in a way that makes it +$ echo "possible for a program that embeds perl into it (and yep, you can +$ echo "do that--it's pretty keen) to have multiple perl interpreters active +$ echo "at once. There is some performance overhead, however, so you +$ echo "probably don't want to choose this unless you're going to be doing +$ echo "funky perl embedding." +$ echo "" +$ dflt = "n" +$ rp = "Build with MULTIPLICITY? [''dflt'] " +$ GOSUB myread +$ if ans.eqs."" then ans = dflt +$ if (f$extract(0, 1, "''ans'").eqs."Y").or.(f$extract(0, 1, "''ans'").eqs."y") +$ THEN +$ use_multiplicity="Y" +$ ELSE +$ use_multiplicity="N" +$ ENDIF $! Ask about threads, if appropriate $ if (Using_Dec_C.eqs."Yes") $ THEN |