aboutsummaryrefslogtreecommitdiffstats
path: root/lacme
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem@fripost.org>2017-07-01 20:23:28 +0200
committerGuilhem Moulin <guilhem@fripost.org>2017-07-01 20:25:30 +0200
commit13a0c9cf64543214282c6809cbbc43ef225df935 (patch)
tree0a653c1f9f6ba5c4953025178783ffb9ea0a409f /lacme
parentabb09fac8787c3444f45cf8cc06386dd75719a01 (diff)
lacme: Specify minimum required Socket version 1.95.
Diffstat (limited to 'lacme')
-rwxr-xr-xlacme8
1 files changed, 4 insertions, 4 deletions
diff --git a/lacme b/lacme
index 270828b..01c683e 100755
--- a/lacme
+++ b/lacme
@@ -18,7 +18,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#----------------------------------------------------------------------
-use v5.16.2;
+use v5.14.2;
use strict;
use warnings;
@@ -31,9 +31,9 @@ use File::Temp ();
use Getopt::Long qw/:config posix_default no_ignore_case gnu_getopt auto_version/;
use List::Util 'first';
use POSIX ();
-use Socket qw/AF_UNIX AF_INET AF_INET6 PF_UNIX PF_INET PF_INET6 PF_UNSPEC
- INADDR_ANY IN6ADDR_ANY IPPROTO_IPV6
- SOCK_STREAM SOL_SOCKET SO_REUSEADDR SHUT_RDWR/;
+use Socket 1.95 qw/AF_UNIX AF_INET AF_INET6 PF_UNIX PF_INET PF_INET6 PF_UNSPEC
+ INADDR_ANY IN6ADDR_ANY IPPROTO_IPV6
+ SOCK_STREAM SOL_SOCKET SO_REUSEADDR SHUT_RDWR/;
use Config::Tiny ();
use Net::SSLeay ();