From b01e8b2063242b435f8c8c45cdec6f7720dafc04 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Sat, 21 Jul 2007 00:14:02 +0000 Subject: [PATCH] Change fips build default install location so it doesn't overwrite any existing OpenSSL installation. --- Configure | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/Configure b/Configure index b64ed14481..496260b820 100755 --- a/Configure +++ b/Configure @@ -564,7 +564,7 @@ my $prefix=""; my $openssldir=""; my $exe_ext=""; my $install_prefix=""; -my $fipslibdir="/usr/local/ssl/lib/"; +my $fipslibdir="/usr/local/ssl/lib/fips-1.0/"; my $nofipscanistercheck=0; my $fipsdso=0; my $fipscanisterinternal="n"; @@ -968,7 +968,17 @@ $no_shared = 0 if ($fipsdso && !$IsMK1MF); $exe_ext=".exe" if ($target eq "Cygwin" || $target eq "DJGPP" || $target eq "mingw"); $exe_ext=".pm" if ($target =~ /vos/); -$openssldir="/usr/local/ssl" if ($openssldir eq "" and $prefix eq ""); +if ($openssldir eq "" and $prefix eq "") + { + if ($fips) + { + $openssldir="/usr/local/ssl/fips-1.0"; + } + else + { + $openssldir="/usr/local/ssl"; + } + } $prefix=$openssldir if $prefix eq ""; $default_ranlib= &which("ranlib") or $default_ranlib="true"; -- 2.25.1