The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
BEGIN {
	require 5.005_03;
}
use ExtUtils::MakeMaker;

WriteMakefile(
	NAME         => 'Text::Diff',
	ABSTRACT     => 'Perform diffs on files and record sets',
	VERSION_FROM => 'lib/Text/Diff.pm',
	PREREQ_PM    => {
		'Exporter'        => 0,
		'Algorithm::Diff' => '1.19',
	},
	($] >= 5.005 ? (
		AUTHOR  => 'Adam Kennedy <adamk@cpan.org>',
	) : ()),
	($ExtUtils::MakeMaker::VERSION ge '6.30_00' ? (
		LICENSE => 'perl',
	) : ()),
	($ExtUtils::MakeMaker::VERSION ge '6.46' ? (
		META_MERGE => {
			build_requires => { Test => 0 }
		}
	) : ()),
);