diff options
author | Craig A. Berry <craigberry@mac.com> | 2001-10-14 10:27:18 -0500 |
---|---|---|
committer | Abhijit Menon-Sen <ams@wiw.org> | 2001-10-14 23:43:59 +0000 |
commit | 5d8a6eb94a90b12eff5662b8472bb48af50dbb98 (patch) | |
tree | dcac331c75383740000db7e8659bc183b8b26d38 /configure.com | |
parent | 141b0a1ff3150d6cbb33c5496dbdb4c4963cd274 (diff) | |
download | perl-5d8a6eb94a90b12eff5662b8472bb48af50dbb98.tar.gz |
make PerlIO default on VMS
Message-Id: <5.1.0.14.0.20011014152339.021ec150@exchi01>
p4raw-id: //depot/perl@12438
Diffstat (limited to 'configure.com')
-rw-r--r-- | configure.com | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/configure.com b/configure.com index acaaeaefe0..ea09a29f8c 100644 --- a/configure.com +++ b/configure.com @@ -2709,27 +2709,26 @@ $ ENDIF $! $! PerlIO abstraction $! -$ dflt = "n" +$ dflt = "y" $ IF F$TYPE(useperlio) .NES. "" $ THEN -$ IF useperlio THEN dflt = "y" -$ IF useperlio .EQS. "define" THEN dflt = "y" +$ IF useperlio .EQS. "undef" THEN dflt = "n" $ ENDIF $ IF .NOT. silent $ THEN -$ echo "Previous version of ''package' used the standard IO mechanisms as" +$ echo "Previous versions of ''package' used the standard IO mechanisms as" $ TYPE SYS$INPUT: $ DECK defined in <stdio.h>. Versions 5.003_02 and later of perl allow alternate IO mechanisms via the PerlIO abstraction layer, but the -stdio mechanism is still the default. This abstraction layer can -use AT&T's sfio (if you already have sfio installed) or regular stdio. +stdio mechanism is still available if needed. The abstraction layer +can use AT&T's sfio (if you already have sfio installed) or regular stdio. Using PerlIO with sfio may cause problems with some extension modules. $ EOD $ echo "If this does not make any sense to you, just accept the default '" + dflt + "'." $ ENDIF -$ rp = "Use the experimental PerlIO abstraction layer? [''dflt'] " +$ rp = "Use the PerlIO abstraction layer? [''dflt'] " $ GOSUB myread $ IF ans .EQS. "" THEN ans = dflt $ IF ans |