summaryrefslogtreecommitdiff
path: root/pod/perldelta.pod
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-10-12 19:10:27 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-10-12 19:10:27 +0000
commitc35dd67d21bc3e32533d94409f1aabc5d0c23f0a (patch)
treebe538cf36d9fc8f6383b43859bba3153086f99bb /pod/perldelta.pod
parentbecf2bd3c78313a795e11dee0fdc7b17b9bf36cb (diff)
downloadperl-c35dd67d21bc3e32533d94409f1aabc5d0c23f0a.tar.gz
perldelta updates
p4raw-id: //depot/perl@4358
Diffstat (limited to 'pod/perldelta.pod')
-rw-r--r--pod/perldelta.pod16
1 files changed, 11 insertions, 5 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index 1f39e4f20b..618ee01455 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -55,7 +55,8 @@ In 5.005_0x and earlier, perl's rand() function used the C library
rand(3) function. As of 5.005_52, Configure tests for drand48(),
random(), and rand() (in that order) and picks the first one it finds.
Perl programs that depend on reproducing a specific set of pseudo-random
-numbers will now likely produce different output.
+numbers will now likely produce different output. You can use
+C<sh Configure -Drandfunc=rand> to obtain the old behavior.
=item Hashing function for hash keys has changed
@@ -272,7 +273,8 @@ because many scripts assume to find Perl in /usr/bin/perl.
=head2 SOCKS support
You can use "Configure -Dusesocks" which causes Perl to probe
-for the SOCKS proxy protocol library, http://www.socks.nec.com/
+for the SOCKS (v5, not v4) proxy protocol library,
+http://www.socks.nec.com/
=head2 C<-A> flag
@@ -281,10 +283,14 @@ flag. The editing happens immediately after the platform specific
hints files have been processed but before the actual configuration
process starts. Run C<Configure -h> to find out the full C<-A> syntax.
-=head2 New Installation Scheme
+=head2 Enhanced Installation Directories
-vendorprefix et al
-[TODO - Andy Dougherty <doughera@lafcol.lafayette.edu>]
+The installation structure has been enriched to improve the support for
+maintaining multiple versions of perl, to provide locations for
+vendor-supplied modules and scripts, and to ease maintenance of
+locally-added modules and scripts. See the section on Installation
+Directories in the INSTALL file for complete details. For most users
+building and installing from source, the defaults should be fine.
=head1 Core Changes