From 972f717514075680c2e1295331bf9ba4dc151b05 Mon Sep 17 00:00:00 2001 From: Pavel Charvat Date: Mon, 11 Sep 2017 21:35:03 +0200 Subject: [PATCH] UCW::Configure: Fixed compatibility with old perl. Older versions of perl don't automatically load methods like STDOUT->flush, we need to explicitly use IO::File. --- ucw/perl/UCW/Configure.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/ucw/perl/UCW/Configure.pm b/ucw/perl/UCW/Configure.pm index 83b70e0d..c469b3c3 100644 --- a/ucw/perl/UCW/Configure.pm +++ b/ucw/perl/UCW/Configure.pm @@ -9,6 +9,7 @@ package UCW::Configure; use strict; use warnings; +use IO::File; BEGIN { # The somewhat hairy Perl export mechanism -- 2.39.5