my $expected_version = "2.54";
print("import: Getopt::Long\n");
use Getopt::Long;

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

}
