diff options
author | Nicholas Clark <nick@ccl4.org> | 2010-10-15 09:53:28 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2010-10-15 10:26:05 +0100 |
commit | 4306d9278175c0394a9e916b7a3b082e76092da1 (patch) | |
tree | ea9e62b196dbd0435eab37827a91063ba18ab01d /ext/Sys-Hostname/Hostname.pm | |
parent | 1a22d347c03dcb480dd25ea0276587697f4eb2c7 (diff) | |
download | perl-4306d9278175c0394a9e916b7a3b082e76092da1.tar.gz |
Nothing autoloaded in Sys::Hostname or I18N::Langinfo, so don't use AutoLoader;
Diffstat (limited to 'ext/Sys-Hostname/Hostname.pm')
-rw-r--r-- | ext/Sys-Hostname/Hostname.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/Sys-Hostname/Hostname.pm b/ext/Sys-Hostname/Hostname.pm index 2e2e53b2ab..d3ab6f35c4 100644 --- a/ext/Sys-Hostname/Hostname.pm +++ b/ext/Sys-Hostname/Hostname.pm @@ -5,9 +5,8 @@ use strict; use Carp; require Exporter; -require AutoLoader; -our @ISA = qw/ Exporter AutoLoader /; +our @ISA = qw/ Exporter /; our @EXPORT = qw/ hostname /; our $VERSION; |