Skip to content

Commit

Permalink
Handle perls without dot in @inc
Browse files Browse the repository at this point in the history
  • Loading branch information
bingos committed Mar 30, 2017
1 parent 48709df commit 607adea
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
3 changes: 3 additions & 0 deletions Changes
@@ -1,6 +1,9 @@
Changelog for AAAA::Crypt::DH
=============================

0.06 Thu Mar 30 14:18:59 BST 2017
- Handle perls without dot in @INC

0.04 Tue Oct 5 10:23:57 BST 2010
- version bump to include latest
Devel::CheckLib which should
Expand Down
1 change: 1 addition & 0 deletions Makefile.PL
@@ -1,3 +1,4 @@
use if ! ( grep { $_ eq '.' } @INC ), qw[lib .];
use strict;
use inc::Module::Install;
name 'AAAA-Crypt-DH';
Expand Down
10 changes: 5 additions & 5 deletions lib/AAAA/Crypt/DH.pm
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use vars qw($VERSION);

$VERSION = '0.04';
$VERSION = '0.06';

qq[Making Crypt::DH installable];

Expand All @@ -19,18 +19,18 @@ AAAA::Crypt::DH - making Crypt::DH installable
# in Makefile.PL
requires 'AAAA::Crypt::DH';
=head1 DESCRIPTION
AAAA::Crypt::DH is a L<Task> distribution that makes sure that either
AAAA::Crypt::DH is a L<Task> distribution that makes sure that either
L<Math::BigInt::GMP> or L<Math::BigInt::Pari> are installed so that
L<Crypt::DH> works at a speed approaching reasonable.
If you have a dependency on L<Crypt::DH> add AAAA::Crypt::DH as an
If you have a dependency on L<Crypt::DH> add AAAA::Crypt::DH as an
additional dependency and one of the above Math libs will be installed
before L<Crypt::DH>.
Why the C<'AAAA'>? Well, L<CPAN> and L<CPANPLUS> install prereqs sorted
Why the C<'AAAA'>? Well, L<CPAN> and L<CPANPLUS> install prereqs sorted
alphabetically, the C<'AAAA'> ensures that this prereq is installed before
L<Crypt::DH>. Simples.
Expand Down

0 comments on commit 607adea

Please sign in to comment.