Skip to content

Commit

Permalink
Got it! have to adjust FIPS now
Browse files Browse the repository at this point in the history
Signed-off-by: John McCrae <[email protected]>
  • Loading branch information
johnmccrae committed Apr 18, 2024
1 parent ff5d8a7 commit 3c4fc96
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions config/software/openssl.rb
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,10 @@
elsif windows?
platform = windows_arch_i386? ? "mingw" : "mingw64"
"perl.exe ./Configure #{platform}"
# FIPS support is now built into v3 and later of openssl so we don't need the whole openssl-fips.rb file, we just need to enable it in the build
if (version.satisfies?(">= 3") && fips_mode?)
"perl.exe ./Configure fips enable-fips"
end
else
prefix =
if linux? && ppc64?
Expand All @@ -146,11 +150,6 @@
"#{prefix} disable-gost"
end

puts "***********************************"
puts "The environment is : #{env}"
puts "***********************************"


patch_env = if aix?
# This enables omnibus to use 'makedepend'
# from fileset 'X11.adt.imake' (AIX install media)
Expand Down

0 comments on commit 3c4fc96

Please sign in to comment.