]> git.g-eek.se Git - interimap.git/commitdiff
Specify minimum Perl and Net::SSLeay versions.
authorGuilhem Moulin <guilhem@fripost.org>
Sun, 20 Jan 2019 18:55:58 +0000 (19:55 +0100)
committerGuilhem Moulin <guilhem@fripost.org>
Sun, 20 Jan 2019 20:33:49 +0000 (21:33 +0100)
Changelog
INSTALL
interimap
lib/Net/IMAP/InterIMAP.pm
pullimap

index 7f033c8e5139766df7a38c541743e51c0d973745..c8a0d519131405f3348f27d90467b8e48d0acd83 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -13,6 +13,7 @@ interimap (0.4) UNRELEASED
     the server to search old mail and EXPUNGE them.
   - Ensure the lower bound of UID ranges is at least 1.
   - Fix manpage generation with pandoc >=2.1.
+  - Specify minimum Perl and Net::SSLeay versions.
 
  -- Guilhem Moulin <guilhem@guilhem.org>  Tue, 06 Dec 2016 17:37:01 +0100
 
diff --git a/INSTALL b/INSTALL
index 458b7c230e6b072d1c42be60f439cadc241dbefa..69afb26be2146e879bc7730795f903f19203d228 100644 (file)
--- a/INSTALL
+++ b/INSTALL
@@ -1,4 +1,4 @@
-InterIMAP depends on the following Perl modules:
+InterIMAP depends on Perl >=5.20 and the following Perl modules:
 
   - Compress::Raw::Zlib (core module)
   - Config::Tiny
@@ -8,7 +8,7 @@ InterIMAP depends on the following Perl modules:
   - Getopt::Long (core module)
   - MIME::Base64 (core module) if authentication is required
   - List::Util (core module)
-  - Net::SSLeay
+  - Net::SSLeay >=1.73
   - POSIX (core module)
   - Socket (core module)
   - Time::HiRes (core module) if 'logfile' is set
index 0f34bf9735972bea076a965cd93f26416eacf4a9..41a0cb9249bd5405663371d43c5d1bbfbc26dd1c 100755 (executable)
--- a/interimap
+++ b/interimap
@@ -18,6 +18,7 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #----------------------------------------------------------------------
 
+use v5.14.2;
 use strict;
 use warnings;
 
index 7b0a2be76ae6cb34d1f578823427cdd94d0db898..f783ea73cbb7273aaf6f6234b655d0b22f531ebd 100644 (file)
@@ -24,7 +24,7 @@ use Compress::Raw::Zlib qw/Z_OK Z_FULL_FLUSH Z_SYNC_FLUSH MAX_WBITS/;
 use Config::Tiny ();
 use Errno qw/EEXIST EINTR/;
 use Fcntl qw/F_GETFD F_SETFD FD_CLOEXEC/;
-use Net::SSLeay ();
+use Net::SSLeay 1.73 ();
 use List::Util qw/all first/;
 use POSIX ':signal_h';
 use Socket qw/SOCK_STREAM IPPROTO_TCP AF_INET AF_INET6 SOCK_RAW :addrinfo/;
index e666114370dbdeeac119fe2c1203911266740afd..e044df530004b8f5a8404e5d589a6130431e3b15 100755 (executable)
--- a/pullimap
+++ b/pullimap
@@ -21,6 +21,7 @@
 use strict;
 use warnings;
 
+use v5.20.2;
 our $VERSION = '0.3';
 my $NAME = 'pullimap';