1use ExtUtils::MakeMaker;
2# See lib/ExtUtils/MakeMaker.pm for details of how to influence
3# the contents of the Makefile that is written.
4print "NOTE: XML::SimpleObject requires XML::Parser. If you have XML::LibXML, you
5can install XML::SimpleObject::LibXML instead.\n
6Checking for XML::Parser ... \n";
7require XML::Parser;
8print "OK\n";
9
10WriteMakefile(
11    'NAME'	=> 'XML::SimpleObject',
12    'VERSION' => '0.53',
13);
14