diff options
author | Ivan Kohler <ivan@freeside.biz> | 2012-11-05 15:19:01 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2012-11-05 15:19:01 -0800 |
commit | f2260f5ea50078bf24cb8761d0110d136578fb24 (patch) | |
tree | 80f31815cdb2febd608e867df51639ee618d3f49 | |
parent | c835b19b36a697cfbaf29e2841b0ee26cce83782 (diff) |
declare dependancy on SOAP::WSDL
-rw-r--r-- | Changes | 3 | ||||
-rw-r--r-- | Makefile.PL | 3 |
2 files changed, 4 insertions, 2 deletions
@@ -2,5 +2,6 @@ Revision history for Geo-EZLocate 0.01 Mon Nov 5 15:12:56 PST 2012 - (Mark) First version, released on an unsuspecting world. - - (Ivan) Declare dependancy on Class::Std::Fast::Storable + - (Ivan) Declare dependancies on Class::Std::Fast::Storable and + SOAP::WSDL diff --git a/Makefile.PL b/Makefile.PL index c47da17..e3dedce 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -13,8 +13,9 @@ WriteMakefile( : ()), PL_FILES => {}, PREREQ_PM => { - 'Test::More' => 0, + 'Test::More' => 0, 'Class::Std::Fast::Storable' => 0, + 'SOAP::WSDL' => 0, }, dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, clean => { FILES => 'Geo-EZLocate-*' }, |