From 284e2d2b379f4333a14a1657a8c06bb018393c35 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Sun, 10 Apr 2011 23:28:24 +0000 Subject: [PATCH] fix fipscanisteronly autodetect --- Configure | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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"; } -- 2.25.1