From: Dr. Stephen Henson Date: Sun, 10 Apr 2011 23:28:24 +0000 (+0000) Subject: fix fipscanisteronly autodetect X-Git-Tag: OpenSSL-fips-2_0-rc1~574 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=284e2d2b379f4333a14a1657a8c06bb018393c35;p=oweals%2Fopenssl.git fix fipscanisteronly autodetect --- diff --git a/Configure b/Configure index 88d87a5981..eca6dcf8e9 100755 --- a/Configure +++ b/Configure @@ -710,7 +710,7 @@ my %disabled = ( # "what" => "comment" [or special keyword "experimental my @experimental = (); # If ssl directory missing assume truncated FIPS tarball -if (! -d ssl) +if (!-d "ssl") { print STDERR "Auto Configuring fipsonly\n"; $fips = 1; @@ -1124,6 +1124,7 @@ my $exp_cflags = ""; if ($fipscanisteronly == 2) { +print STDERR "ADDING FIPSSYM\n"; $exp_cflags .= " -DOPENSSL_FIPSSYMS"; }