summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-02-22 13:05:28 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-02-22 13:05:28 +0000
commit5a3a8a022aa61cbaa4fc80c0842f0aa260330943 (patch)
tree73186939388d8ec60304d7dc15f04d0820b5ab89 /Configure
parent12a4e90720ff8133c7e505a7de98d56bedbc0a71 (diff)
downloadperl-5a3a8a022aa61cbaa4fc80c0842f0aa260330943.tar.gz
*drum roll* Make perlio the default.
p4raw-id: //depot/perl@8888
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure14
1 files changed, 7 insertions, 7 deletions
diff --git a/Configure b/Configure
index 0abc4feb7d..dc9e80d06d 100755
--- a/Configure
+++ b/Configure
@@ -20,7 +20,7 @@
# $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $
#
-# Generated on Wed Feb 21 17:01:28 EET 2001 [metaconfig 3.0 PL70]
+# Generated on Thu Feb 22 15:00:27 EET 2001 [metaconfig 3.0 PL70]
# (with additional metaconfig patches by perlbug@perl.org)
cat >c1$$ <<EOF
@@ -5293,26 +5293,26 @@ esac
$rm -f try.* try
case "$useperlio" in
-$define|true|[yY]*) dflt='y';;
+$define|true|[yY]*|'') dflt='y';;
*) dflt='n';;
esac
cat <<EOM
Previous version of $package used the standard IO mechanisms as
-defined in <stdio.h>. Versions 5.003_02 and later of perl allow
+defined in <stdio.h>. Versions 5.003_02 and later of $package 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.
If this doesn't make any sense to you, just accept the default '$dflt'.
EOM
-rp='Use the experimental PerlIO abstraction layer?'
+rp='Use the PerlIO abstraction layer?'
. ./myread
case "$ans" in
y|Y)
val="$define"
- ;;
+ ;;
*)
echo "Ok, doing things the stdio way."
val="$undef"