summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>2006-11-27 14:18:05 +0000
committerBen Laurie <ben@openssl.org>2006-11-27 14:18:05 +0000
commit96ea4ae91c7fda9fd28a013182b0e8dc67b7ac7d (patch)
tree364aa21990f695348601d6f4a8774fe7d861e26e /Configure
parent7af5726108188e4e4e4ca1a95cea43801ec19905 (diff)
Add RFC 3779 support.
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure9
1 files changed, 9 insertions, 0 deletions
diff --git a/Configure b/Configure
index 2eba60da82..6eb7f96e6c 100755
--- a/Configure
+++ b/Configure
@@ -579,6 +579,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;
@@ -614,6 +615,7 @@ my %disabled = ( # "what" => "comment"
"gmp" => "default",
"mdc2" => "default",
"rc5" => "default",
+ "rfc3779" => "default",
"shared" => "default",
"zlib" => "default",
"zlib-dynamic" => "default"
@@ -901,6 +903,8 @@ foreach (sort (keys %disabled))
{ $symlink = 0; }
elsif (/^sse2$/)
{ $no_sse2 = 1; }
+ elsif (/^rfc3779$/)
+ { $rfc3779 = 0; }
else
{
my ($ALGO, $algo);
@@ -1137,6 +1141,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 "")