diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1999-09-20 19:44:44 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-09-20 19:44:44 +0000 |
commit | 249b38c67b3450298e92b9ac6afeebe063da18f8 (patch) | |
tree | fdb845d65d42c8a367d77db8fe270f02d3070568 | |
parent | 5f83a3e9d818c3ad53ef226d68bf9dbac882a8dc (diff) | |
download | perl-249b38c67b3450298e92b9ac6afeebe063da18f8.tar.gz |
Rename -Duselfs to -Duselargefiles. We don't need no stnkngbbrvtns.
p4raw-id: //depot/cfgperl@4211
-rwxr-xr-x | Configure | 14 | ||||
-rw-r--r-- | config_h.SH | 2 | ||||
-rw-r--r-- | pod/perldelta.pod | 4 |
3 files changed, 10 insertions, 10 deletions
@@ -20,7 +20,7 @@ # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $ # -# Generated on Mon Sep 20 22:45:40 EET DST 1999 [metaconfig 3.0 PL70] +# Generated on Mon Sep 20 22:50:41 EET DST 1999 [metaconfig 3.0 PL70] # (with additional metaconfig patches by perlbug@perl.com) cat >/tmp/c1$$ <<EOF @@ -817,7 +817,7 @@ trnl='' uidtype='' archname64='' use64bits='' -uselfs='' +uselargefiles='' uselongdouble='' usemorebits='' usemultiplicity='' @@ -3028,11 +3028,11 @@ esac cat <<EOM Perl can be built to understand large files (files larger than 2 gigabytes) -on some systems. To do so, Configure must be run with -Duselfs. +on some systems. To do so, Configure must be run with -Duselargefiles. If this doesn't make any sense to you, just accept the default. EOM -case "$uselfs" in +case "$uselargefiles" in "$define"|true|[yY]*) dflt='y' ;; *) dflt='n' ;; esac @@ -3042,9 +3042,9 @@ case "$ans" in y|Y) val="$define" ;; *) val="$undef" ;; esac -set uselfs +set uselargefiles eval $setvar -case "$uselfs" in +case "$uselargefiles" in "$define") use64bits="$define" ;; esac @@ -14003,7 +14003,7 @@ uname='$uname' uniq='$uniq' use64bits='$use64bits' usedl='$usedl' -uselfs='$uselfs' +uselargefiles='$uselargefiles' uselongdouble='$uselongdouble' usemorebits='$usemorebits' usemultiplicity='$usemultiplicity' diff --git a/config_h.SH b/config_h.SH index b5fa0dfc29..5aa68c27be 100644 --- a/config_h.SH +++ b/config_h.SH @@ -2480,7 +2480,7 @@ sed <<!GROK!THIS! >config.h -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un- * should be used when available. The USE_64_BITS symbol will * also be turned on if necessary. */ -#$uselfs USE_LARGE_FILES /**/ +#$uselargefiles USE_LARGE_FILES /**/ /* USE_LONG_DOUBLE: * This symbol, if defined, indicates that long doubles should diff --git a/pod/perldelta.pod b/pod/perldelta.pod index 7d37aad03f..e3a37dc741 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -184,8 +184,8 @@ start losing precision (their lower digits). If you have filesystems that support "large files" (files larger than 2 gigabytes), you may now also be able to create and access them from -Perl. You have to use Configure -Duselfs. Turning on the large file -support turns on also the 64-bit support, for obvious reasons. +Perl. You have to use Configure -Duselargefiles. Turning on the +large file support turns on also the 64-bit support, for obvious reasons. Note that in addition to requiring a proper file system to do large files you may also need to adjust your per-process (or your |