Skip to content

Commit

Permalink
Build OpenSSL FIPS provider (yugabyte#260)
Browse files Browse the repository at this point in the history
This PR adds building of the OpenSSL FIPS provider.
  • Loading branch information
es1024 authored Jan 5, 2024
1 parent e307bff commit 48b2fc0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/build_definitions/openssl.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def __init__(self) -> None:
self.patches = ['openssl-fix-afalg-link-on-centos7.patch']

def build(self, builder: BuilderInterface) -> None:
common_configure_options = ['shared', 'no-tests']
common_configure_options = ['shared', 'no-tests', 'enable-fips']
install_path = os.path.join(
builder.fs_layout.tp_installed_common_dir, "lib")
if is_macos_arm64_build():
Expand All @@ -59,7 +59,7 @@ def build(self, builder: BuilderInterface) -> None:
dep=self,
configure_cmd=configure_cmd,
# https://bit.ly/openssl_install_without_manpages
install=['install_sw']
install=['install_sw', 'install_fips']
)

def use_cppflags_env_var(self) -> bool:
Expand Down

0 comments on commit 48b2fc0

Please sign in to comment.