Autom4te::XFile does not appear to have any use for Carp, DynaLoader,
or File::Basename.
This happened to catch my eye while I was doing the previous two
patches. I have not done a comprehensive audit of imports in the Perl
code.
* lib/Autom4te/XFile.pm: Remove ‘use’s of Carp, DynaLoader,
and File::Basename.
(@ISA): Remove DynaLoader.
use strict;
use warnings;
-use Carp;
-use DynaLoader;
use Errno;
use Exporter;
-use File::Basename;
use IO::File;
use Autom4te::ChannelDefs;
use Autom4te::FileUtils;
use vars qw ($AUTOLOAD @EXPORT @EXPORT_OK @ISA $VERSION);
-@ISA = qw (DynaLoader Exporter IO::File);
+@ISA = qw (Exporter IO::File);
@EXPORT = @IO::File::EXPORT;
$VERSION = "1.2";