aboutsummaryrefslogtreecommitdiff
path: root/openssl
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2006-09-19 21:41:24 +0000
committerRob Austein <sra@hactrn.net>2006-09-19 21:41:24 +0000
commitd40d179d9021421d41780a45224302822644725b (patch)
tree12abe316a1ae52e3e794ca82d93527c6a720119a /openssl
parente9b05851c7cb62ee05ae199885804926388d6ac6 (diff)
Add support for --enable-rfc3779.
This script is completely demented. svn path=/openssl/trunk/Configure; revision=291
Diffstat (limited to 'openssl')
-rwxr-xr-xopenssl/trunk/Configure9
1 files changed, 9 insertions, 0 deletions
diff --git a/openssl/trunk/Configure b/openssl/trunk/Configure
index a989a7eb..d7855cee 100755
--- a/openssl/trunk/Configure
+++ b/openssl/trunk/Configure
@@ -570,6 +570,7 @@ my $threads=0;
my $no_shared=0; # but "no-shared" is default
my $zlib=1; # but "no-zlib" is default
my $no_krb5=0; # but "no-krb5" is implied unless "--with-krb5-..." is used
+my $rfc3779=1; # but "no-rfc3779" is default
my $no_asm=0;
my $no_dso=0;
my $no_gmp=0;
@@ -605,6 +606,7 @@ my %disabled = ( # "what" => "comment"
"gmp" => "default",
"mdc2" => "default",
"rc5" => "default",
+ "rfc3779" => "default",
"shared" => "default",
"zlib" => "default",
"zlib-dynamic" => "default"
@@ -884,6 +886,8 @@ foreach (sort (keys %disabled))
{ $symlink = 0; }
elsif (/^sse2$/)
{ $no_sse2 = 1; }
+ elsif (/^rfc3779$/)
+ { $rfc3779 = 0; }
else
{
my ($ALGO, $algo);
@@ -1121,6 +1125,11 @@ if ($zlib)
}
}
+if ($rfc3779)
+ {
+ $openssl_other_defines.="#define OPENSSL_RFC3779\n";
+ }
+
# You will find shlib_mark1 and shlib_mark2 explained in Makefile.org
my $shared_mark = "";
if ($shared_target eq "")