ports/www/node16/files/patch-deps_openssl_openssl-cl__no__asm.gypi
Juraj Lutter c2664553ad www/node16: Fix build with OpenSSL 3
- This was tested only with OpenSSL 3 from base but not with openssl30
  or openssl31 ports.
- Regen patches

PR:	271656
2023-06-13 08:38:20 +02:00

17 lines
606 B
Python

--- deps/openssl/openssl-cl_no_asm.gypi.orig 2023-03-28 21:14:18 UTC
+++ deps/openssl/openssl-cl_no_asm.gypi
@@ -1,4 +1,5 @@
{
+ 'defines': ['OPENSSL_NO_ASM'],
'conditions': [
['target_arch=="ppc" and OS=="aix"', {
'includes': ['config/archs/aix-gcc/no-asm/openssl-cl.gypi'],
@@ -49,7 +50,7 @@
'includes': ['config/archs/linux64-riscv64/no-asm/openssl-cl.gypi'],
}, {
# Other architectures don't use assembly
- 'includes': ['config/archs/linux-x86_64/no-asm/openssl-cl.gypi'],
+ 'includes': ['config/archs/linux-elf/no-asm/openssl-cl.gypi'],
}],
],
}