summaryrefslogtreecommitdiff
path: root/lib/Automake/Variable.pm
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2012-03-04 15:44:46 +0100
committerStefano Lattarini <stefano.lattarini@gmail.com>2012-03-04 22:49:13 +0100
commit7df05a0b38efdd2e3bc9b3cfeedc3e53616bc71a (patch)
treef32ab9fd2c674373104a73cdb080510c347e7d18 /lib/Automake/Variable.pm
parent7f9974c75fc6cdd9821b887afac94ef0be415bc2 (diff)
downloadautomake-7df05a0b38efdd2e3bc9b3cfeedc3e53616bc71a.tar.gz
maint: require perl 5.6 throughout
That version of perl is quite old already, so it should be OK to require it. More importantly, it is the older perl versions the developers can currently use for testing, thus it's safer and more honest to just require it throughout. And anyway, we were already requiring it in Automake::Getopt, which implied that both automake and aclocal wouldn't have worked in practice with an older perl version. See also the discussion related to automake bug#10925. * lib/Automake/ChannelDefs.pm: Adjusted to require perl 5.6. * lib/Automake/Channels.pm: Likewise. * lib/Automake/Condition.pm: Likewise. * lib/Automake/Configure_ac.pm: Likewise. * lib/Automake/DisjConditions.pm: Likewise. * lib/Automake/FileUtils.pm: Likewise. * lib/Automake/General.pm: Likewise. * lib/Automake/Item.pm: Likewise. * lib/Automake/ItemDef.pm: Likewise. * lib/Automake/Location.pm: Likewise. * lib/Automake/Options.pm: Likewise. * lib/Automake/Rule.pm: Likewise. * lib/Automake/RuleDef.pm: Likewise. * lib/Automake/Struct.pm: Likewise. * lib/Automake/VarDef.pm: Likewise. * lib/Automake/Variable.pm: Likewise. * lib/Automake/Version.pm: Likewise. * lib/Automake/Wrap.pm: Likewise. * lib/Automake/XFile.pm: Likewise.
Diffstat (limited to 'lib/Automake/Variable.pm')
-rw-r--r--lib/Automake/Variable.pm2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Automake/Variable.pm b/lib/Automake/Variable.pm
index f9ed7dae4..4d346f056 100644
--- a/lib/Automake/Variable.pm
+++ b/lib/Automake/Variable.pm
@@ -14,6 +14,8 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
package Automake::Variable;
+
+use 5.006;
use strict;
use Carp;