Force a non-segfaulting version of XML::LibXML
[catagits/XML-Feed.git] / Build.PL
index 289c881..dfe43d4 100644 (file)
--- a/Build.PL
+++ b/Build.PL
@@ -1,3 +1,29 @@
-# $Id: Build.PL,v 1.1.1.1 2004/05/29 17:29:56 btrott Exp $
+# $Id: Build.PL 918 2004-05-29 17:29:55Z btrott $
+use Module::Build;
+
+my $build = Module::Build
+  ->new( module_name   => "XML::Feed",
+         dist_abstract => "XML Syndication Feed Support", 
+         license       => 'perl',
+         script_files  => [ ],
+         requires      => {
+                          'Class::ErrorHandler'        => 0,
+                          'DateTime'                   => 0,
+                          'DateTime::Format::Mail'     => 0,
+                          'DateTime::Format::W3CDTF'   => 0,
+                          'Feed::Find'                 => 0,
+                          'HTML::TokeParser'           => 0,
+                          'List::Util'                 => 0,
+                          'LWP::UserAgent'             => 0,
+                          'URI::Fetch'                 => 0,
+                          'XML::Atom'                  => 0.23,
+                          'XML::LibXML'                => 1.66,
+                          'XML::RSS'                   => 1.01,
+                          'Test::More'                 => 0,
+                        },
+         create_makefile_pl => 'traditional',
+       );
+
+$build->create_build_script;
+
 
-require 'Makefile.PL';