From: ivan Date: Thu, 12 Jul 2007 01:17:51 +0000 (+0000) Subject: add PREREQ_PM on lpperl X-Git-Tag: Business_OnlinePayment_LinkPoint_0_10~1 X-Git-Url: http://git.freeside.biz/gitweb/?p=Business-OnlinePayment-LinkPoint.git;a=commitdiff_plain;h=659e4504588f68d5adca8c81001462a7e74e4d6c add PREREQ_PM on lpperl --- diff --git a/Changes b/Changes index cf59af6..8ee0bf6 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for Perl extension Business::OnlinePayment::LinkPoint. +0.10 unreleased + - add PREREQ_PM on lpperl + 0.09 Wed Jul 11 18:07:20 PDT 2007 - Trim all non-numeric characters from phone numbers when doing an ACH transaction, as per undocumented suggestion from LinkPoint. diff --git a/LinkPoint.pm b/LinkPoint.pm index 014e428..c4f7d18 100644 --- a/LinkPoint.pm +++ b/LinkPoint.pm @@ -6,8 +6,8 @@ use Carp qw(croak); use Business::OnlinePayment; @ISA = qw(Business::OnlinePayment); -$VERSION = '0.09'; -#$VERSION = eval $VERSION; # modperlstyle: convert the string into a number +$VERSION = '0.10_01'; +$VERSION = eval $VERSION; # modperlstyle: convert the string into a number $DEBUG = 0; use lpperl; #3; #lpperl.pm from LinkPoint diff --git a/Makefile.PL b/Makefile.PL index 95f9c98..3ff853d 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -5,6 +5,8 @@ WriteMakefile( 'NAME' => 'Business::OnlinePayment::LinkPoint', 'VERSION_FROM' => 'LinkPoint.pm', # finds $VERSION 'AUTHOR' => 'Ivan Kohler ', - 'PREREQ_PM' => { 'Business::OnlinePayment' => 0, }, + 'PREREQ_PM' => { 'Business::OnlinePayment' => 0, + 'lpperl' => 0, + }, #'NORECURS' => 1, # dont descend into subdirectories );