my $expected_version = "0.008";
print("import: ExtUtils::Config\n");
use ExtUtils::Config;

if (defined ExtUtils::Config->VERSION) {
	my $given_version = ExtUtils::Config->VERSION;
	$given_version =~ s/0+$//;
	die('Expected version ' . $expected_version . ' but found ' . $given_version) unless ($expected_version eq $given_version);
	print('	using version ' . ExtUtils::Config->VERSION . '
');

}
