In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/3b28d668e9efe9433c3099521167a6723cbddc26?hp=453466ce2f09167e70fd58c95be801ad111eabe5>
- Log ----------------------------------------------------------------- commit 3b28d668e9efe9433c3099521167a6723cbddc26 Author: Craig A. Berry <[email protected]> Date: Mon Mar 7 18:52:33 2011 -0600 Set multiplicity in configure.com when usethreads is enabled. It's hard-wired in perl.h, so it doesn't make any difference to what's seen by the C code, but $Config{multiplicity} should reflect what we're actually doing (and track what Configure does). ----------------------------------------------------------------------- Summary of changes: configure.com | 27 +++++++++++++++------------ 1 files changed, 15 insertions(+), 12 deletions(-) diff --git a/configure.com b/configure.com index f9cc2fb..3fb634d 100644 --- a/configure.com +++ b/configure.com @@ -2017,21 +2017,24 @@ $! Ask if they want to build with MULTIPLICITY $ echo "" $ echo "Perl can be built so that multiple Perl interpreters can coexist" $ echo "within the same Perl executable." -$ echo "There is some performance overhead, however, so you" -$ echo "probably do not want to choose this unless you are going to be" -$ echo "doing things with embedded perl." -$ bool_dflt = "n" -$ if f$type(usemultiplicity) .nes. "" -$ then -$ if usemultiplicity .or. usemultiplicity .eqs. "define" then bool_dflt = "y" -$ endif -$ rp = "Build Perl for multiplicity? [''bool_dflt'] " -$ GOSUB myread -$ IF ans +$ IF usethreads .OR. usethreads .EQS. "define" $ THEN +$ echo "This multiple interpreter support is required for interpreter-based threads." $ usemultiplicity="define" $ ELSE -$ usemultiplicity="undef" +$ bool_dflt = "n" +$ if f$type(usemultiplicity) .nes. "" +$ then +$ if usemultiplicity .or. usemultiplicity .eqs. "define" then bool_dflt = "y" +$ endif +$ rp = "Build Perl for multiplicity? [''bool_dflt'] " +$ GOSUB myread +$ IF ans +$ THEN +$ usemultiplicity="define" +$ ELSE +$ usemultiplicity="undef" +$ ENDIF $ ENDIF $! $! Ask if they want to build with 64-bit support -- Perl5 Master Repository
