aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.ac2
-rw-r--r--crypto/Makefile.am2
2 files changed, 4 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 23f0c38..c10a33f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -136,6 +136,8 @@ AM_CONDITIONAL([HOST_ASM_ELF_MIPS],
136 [test "x$HOST_ABI" = "xelf" -a "$host_cpu" = "mips" -a "x$enable_asm" != "xno"]) 136 [test "x$HOST_ABI" = "xelf" -a "$host_cpu" = "mips" -a "x$enable_asm" != "xno"])
137AM_CONDITIONAL([HOST_ASM_ELF_MIPS64], 137AM_CONDITIONAL([HOST_ASM_ELF_MIPS64],
138 [test "x$HOST_ABI" = "xelf" -a "$host_cpu" = "mips64" -a "x$enable_asm" != "xno"]) 138 [test "x$HOST_ABI" = "xelf" -a "$host_cpu" = "mips64" -a "x$enable_asm" != "xno"])
139AM_CONDITIONAL([HOST_ASM_ELF_RISCV64],
140 [test "x$HOST_ABI" = "xelf" -a "$host_cpu" = "riscv64" -a "x$enable_asm" != "xno"])
139AM_CONDITIONAL([HOST_ASM_ELF_X86_64], 141AM_CONDITIONAL([HOST_ASM_ELF_X86_64],
140 [test "x$HOST_ABI" = "xelf" -a "$host_cpu" = "x86_64" -a "x$enable_asm" != "xno"]) 142 [test "x$HOST_ABI" = "xelf" -a "$host_cpu" = "x86_64" -a "x$enable_asm" != "xno"])
141AM_CONDITIONAL([HOST_ASM_MACOSX_X86_64], 143AM_CONDITIONAL([HOST_ASM_MACOSX_X86_64],
diff --git a/crypto/Makefile.am b/crypto/Makefile.am
index 7969aee..a4a717d 100644
--- a/crypto/Makefile.am
+++ b/crypto/Makefile.am
@@ -212,6 +212,7 @@ include Makefile.am.mingw64-x86_64
212if !HOST_ASM_ELF_AARCH64 212if !HOST_ASM_ELF_AARCH64
213if !HOST_ASM_ELF_MIPS 213if !HOST_ASM_ELF_MIPS
214if !HOST_ASM_ELF_MIPS64 214if !HOST_ASM_ELF_MIPS64
215if !HOST_ASM_ELF_RISCV64
215if !HOST_ASM_ELF_X86_64 216if !HOST_ASM_ELF_X86_64
216if !HOST_ASM_MACOSX_X86_64 217if !HOST_ASM_MACOSX_X86_64
217if !HOST_ASM_MASM_X86_64 218if !HOST_ASM_MASM_X86_64
@@ -224,6 +225,7 @@ endif
224endif 225endif
225endif 226endif
226endif 227endif
228endif
227 229
228if HOST_AARCH64 230if HOST_AARCH64
229if HOST_DARWIN 231if HOST_DARWIN