diff options
-rw-r--r-- | Changelog | 3 | ||||
-rwxr-xr-x | client | 1 | ||||
-rwxr-xr-x | lacme | 1 | ||||
-rwxr-xr-x | lacme-accountd | 1 | ||||
-rwxr-xr-x | webserver | 1 |
5 files changed, 7 insertions, 0 deletions
@@ -33,6 +33,9 @@ lacme (0.3) upstream; - When using open with mode "<&=" or ">&=", ensure the expression (fileno) is interpreted as an integer. (This failed in Perl v5.14.2 from Debian Jessie.) + - Specify minimum required Perl version: v5.14.2 for webserver, client + and lacme-accountd, and v5.16.2 for lacme (IPV6_V6ONLY was added to + Socket version 1.95). -- Guilhem Moulin <guilhem@guilhem.org> Sun, 19 Feb 2017 13:08:41 +0100 @@ -18,6 +18,7 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. #---------------------------------------------------------------------- +use v5.14.2; use strict; use warnings; @@ -18,6 +18,7 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. #---------------------------------------------------------------------- +use v5.16.2; use strict; use warnings; diff --git a/lacme-accountd b/lacme-accountd index f0d7d51..80ede29 100755 --- a/lacme-accountd +++ b/lacme-accountd @@ -19,6 +19,7 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. #---------------------------------------------------------------------- +use v5.14.2; use strict; use warnings; @@ -19,6 +19,7 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. #---------------------------------------------------------------------- +use v5.14.2; use strict; use warnings; |