We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56c47b5 commit d746207Copy full SHA for d746207
configure.py
@@ -1536,8 +1536,10 @@ def without_ssl_error(option):
1536
if options.openssl_no_asm and options.shared_openssl:
1537
error('--openssl-no-asm is incompatible with --shared-openssl')
1538
1539
- if options.openssl_is_fips and not options.shared_openssl:
+ if options.openssl_is_fips:
1540
o['defines'] += ['OPENSSL_FIPS']
1541
+
1542
+ if options.openssl_is_fips and not options.shared_openssl:
1543
variables['node_fipsinstall'] = b(True)
1544
1545
if options.shared_openssl:
0 commit comments