From: Alexandre Duret-Lutz Date: Thu, 25 Dec 2003 18:09:01 +0000 (+0000) Subject: * lib/Automake/Config.in: Require Exporter. X-Git-Tag: Release-1-8b~123 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5a6db4d7ab44fac50cd8814046b932a7201869a3;p=thirdparty%2Fautomake.git * lib/Automake/Config.in: Require Exporter. Report from Kevin Ryde (failure with Perl 5.005_03). --- diff --git a/ChangeLog b/ChangeLog index c6e28c1a7..95d36990d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-12-25 Alexandre Duret-Lutz + + * lib/Automake/Config.in: Require Exporter. + Report from Kevin Ryde (failure with Perl 5.005_03). + 2003-12-15 Alexandre Duret-Lutz * tests/aclocal6.test: Check for autom4te.cache only if it has diff --git a/lib/Automake/Config.in b/lib/Automake/Config.in index 5bd2c2e54..27df82c5a 100644 --- a/lib/Automake/Config.in +++ b/lib/Automake/Config.in @@ -19,6 +19,7 @@ package Automake::Config; use strict; +require Exporter; use vars qw (@ISA @EXPORT); @ISA = qw (Exporter);