~ubuntu-branches/ubuntu/lucid/openssl/lucid-security

« back to all changes in this revision

Viewing changes to util/mkdef.pl

  • Committer: Bazaar Package Importer
  • Author(s): Kurt Roeckx
  • Date: 2007-03-10 17:11:46 UTC
  • mto: (11.1.1 lenny)
  • mto: This revision was merged to the branch mainline in revision 13.
  • Revision ID: james.westby@ubuntu.com-20070310171146-uo85b7ii5pi1unm2
Tags: upstream-0.9.8e
ImportĀ upstreamĀ versionĀ 0.9.8e

Show diffs side-by-side

added added

removed removed

Lines of Context:
94
94
                         "FP_API", "STDIO", "SOCK", "KRB5", "DGRAM",
95
95
                         # Engines
96
96
                         "STATIC_ENGINE", "ENGINE", "HW", "GMP",
 
97
                         # RFC3779 support 
 
98
                         "RFC3779",
97
99
                         # Deprecated functions
98
100
                         "DEPRECATED" );
99
101
 
113
115
my $no_rsa; my $no_dsa; my $no_dh; my $no_hmac=0; my $no_aes; my $no_krb5;
114
116
my $no_ec; my $no_ecdsa; my $no_ecdh; my $no_engine; my $no_hw; my $no_camellia;
115
117
my $no_fp_api; my $no_static_engine; my $no_gmp; my $no_deprecated;
 
118
my $no_rfc3779;
116
119
 
117
120
 
118
121
foreach (@ARGV, split(/ /, $options))
189
192
        elsif (/^no-engine$/)   { $no_engine=1; }
190
193
        elsif (/^no-hw$/)       { $no_hw=1; }
191
194
        elsif (/^no-gmp$/)      { $no_gmp=1; }
 
195
        elsif (/^no-rfc3779$/)  { $no_rfc3779=1; }
192
196
        }
193
197
 
194
198
 
1106
1110
                        if ($keyword eq "FP_API" && $no_fp_api) { return 0; }
1107
1111
                        if ($keyword eq "STATIC_ENGINE" && $no_static_engine) { return 0; }
1108
1112
                        if ($keyword eq "GMP" && $no_gmp) { return 0; }
 
1113
                        if ($keyword eq "RFC3779" && $no_rfc3779) { return 0; }
1109
1114
                        if ($keyword eq "DEPRECATED" && $no_deprecated) { return 0; }
1110
1115
 
1111
1116
                        # Nothing recognise as true