summaryrefslogtreecommitdiff
path: root/security/p5-Crypt-OpenPGP/files/patch-makefile
blob: db58f8ffab8c18191c2aecc3fa2bbb7dbe078cd6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
--- Makefile.PL.orig	Tue Dec 10 02:48:09 2002
+++ Makefile.PL	Tue Apr  8 10:33:08 2003
@@ -11,56 +11,6 @@
 use File::Basename qw/dirname/;
 use lib File::Spec->catdir(dirname($0), 'inc');
 
-use ExtUtils::AutoInstall (
-    -core => [
-        'Data::Buffer'     => '0.04',
-        'MIME::Base64'     => 0,
-        'Math::Pari'       => 0,
-        'Compress::Zlib'   => 0,
-        'LWP::UserAgent'   => 0,
-        'URI::Escape'      => 0,
-
-        'Crypt::DSA'       => 0,
-        'Crypt::RSA'       => 0,
-    ],
-
-    'PGP2 Compatibility (Minimum)' => [
-        -default           => $is_sdk,
-        'Crypt::IDEA'      => 0,
-        'Digest::MD5'      => 0,
-    ],
-
-    'PGP5 Compatibility (Minimum)' => [
-        -default           => $is_sdk,
-        'Crypt::DES_EDE3'  => 0,
-        'Digest::SHA1'     => 0,
-    ],
-
-    'GnuPG Compatibility (Minimum)' => [
-        -default           => $is_sdk,
-        'Crypt::Rijndael'  => 0,
-        'Crypt::CAST5_PP'  => 0,
-        'Crypt::RIPEMD160' => 0,
-    ],
-
-    'Support for all ciphers' => [
-        -default           => $is_sdk,
-        'Crypt::IDEA'      => 0,
-        'Crypt::DES_EDE3'  => 0,
-        'Crypt::CAST5_PP'  => 0,
-        'Crypt::Blowfish'  => 0,
-        'Crypt::Twofish'   => '2.00',
-        'Crypt::Rijndael'  => 0,
-    ],
-
-    'Support for all digests' => [
-        -default           => $is_sdk,
-        'Digest::MD5'      => 0,
-        'Digest::SHA1'     => 0,
-        'Crypt::RIPEMD160' => 0,
-    ],
-);
-
 WriteMakefile(
     AUTHOR       => 'Benjamin Trott <cpan@stupidfool.org>',
     ABSTRACT     => 'Pure-Perl OpenPGP-compatible PGP implementation',