From a1a8a71cf74745e4d8d9501a64a5da30ebd3befc Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Thu, 9 Jun 2011 21:52:44 +0000 Subject: [PATCH] Install FIPS module in FIPSDIR if set. --- Configure | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Configure b/Configure index a8b3b35e8..4705a5406 100755 --- a/Configure +++ b/Configure @@ -1148,7 +1148,14 @@ if ($openssldir eq "" and $prefix eq "") { if ($fips) { - $openssldir="/usr/local/ssl/fips-2.0"; + if (exists $ENV{FIPSDIR}) + { + $openssldir="$ENV{FIPSDIR}"; + } + else + { + $openssldir="/usr/local/ssl/fips-2.0"; + } } else {