Skip to content

Commit 14f437f

Browse files
tmzullingergitster
authored andcommitted
RelNotes: add details on Perl module changes
Document changes to core and non-core Perl module handling in 2.17. Signed-off-by: Todd Zullinger <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 0afbf6c commit 14f437f

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

Documentation/RelNotes/2.17.0.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,20 @@ Performance, Internal Implementation, Development Support etc.
7575
* The build procedure for perl/ part has been greatly simplified by
7676
weaning ourselves off of MakeMaker.
7777

78+
* Perl 5.8 or greater has been required since Git 1.7.4 released in
79+
2010, but we continued to assume some core modules may not exist and
80+
used a conditional "eval { require <<module>> }"; we no longer do
81+
this. Some platforms (Fedora/RedHat/CentOS, for example) ship Perl
82+
without all core modules by default (e.g. Digest::MD5, File::Temp,
83+
File::Spec, Net::Domain, Net::SMTP). Users on such platforms may
84+
need to install these additional modules.
85+
86+
* As a convenience, we install copies of Perl modules we require which
87+
are not part of the core Perl distribution (e.g. Error and
88+
Mail::Address). Users and packagers whose operating system provides
89+
these modules can set NO_PERL_CPAN_FALLBACKS to avoid installing the
90+
bundled modules.
91+
7892
* In preparation for implementing narrow/partial clone, the machinery
7993
for checking object connectivity used by gc and fsck has been
8094
taught that a missing object is OK when it is referenced by a

INSTALL

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,8 @@ Issues of note:
126126
Redhat/Fedora are reported to ship Perl binary package with some
127127
core modules stripped away (see http://lwn.net/Articles/477234/),
128128
so you might need to install additional packages other than Perl
129-
itself, e.g. Time::HiRes.
129+
itself, e.g. Digest::MD5, File::Spec, File::Temp, Net::Domain,
130+
Net::SMTP, and Time::HiRes.
130131

131132
- git-imap-send needs the OpenSSL library to talk IMAP over SSL if
132133
you are using libcurl older than 7.34.0. Otherwise you can use

0 commit comments

Comments
 (0)