diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/configure.ac b/configure.ac index 864a4ad..8d347b0 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,3 +1,4 @@ | |||
1 | # | ||
1 | # Copyright (c) 2014-2015 Brent Cook | 2 | # Copyright (c) 2014-2015 Brent Cook |
2 | # | 3 | # |
3 | # Permission to use, copy, modify, and distribute this software for any | 4 | # Permission to use, copy, modify, and distribute this software for any |
@@ -86,16 +87,17 @@ AS_CASE([$host_cpu], | |||
86 | ) | 87 | ) |
87 | AM_CONDITIONAL([HOST_CPU_IS_INTEL], [test "x$HOSTARCH" = "xintel"]) | 88 | AM_CONDITIONAL([HOST_CPU_IS_INTEL], [test "x$HOSTARCH" = "xintel"]) |
88 | 89 | ||
89 | AM_CONDITIONAL([HOST_AARCH64], [test "$host_cpu" = "aarch64"]) | 90 | AM_CONDITIONAL([HOST_AARCH64], [test "$host_cpu" = "aarch64"]) |
90 | AM_CONDITIONAL([HOST_ARM], [test "$host_cpu" = "arm"]) | 91 | AM_CONDITIONAL([HOST_ARM], [test "$host_cpu" = "arm"]) |
91 | AM_CONDITIONAL([HOST_I386], [test "$host_cpu" = "i386"]) | 92 | AM_CONDITIONAL([HOST_I386], [test "$host_cpu" = "i386"]) |
92 | AM_CONDITIONAL([HOST_MIPS], [test "$host_cpu" = "mips"]) | 93 | AM_CONDITIONAL([HOST_LOONGARCH64], [test "$host_cpu" = "loongarch64"]) |
93 | AM_CONDITIONAL([HOST_MIPS64], [test "$host_cpu" = "mips64"]) | 94 | AM_CONDITIONAL([HOST_MIPS], [test "$host_cpu" = "mips"]) |
94 | AM_CONDITIONAL([HOST_POWERPC], [test "$host_cpu" = "powerpc"]) | 95 | AM_CONDITIONAL([HOST_MIPS64], [test "$host_cpu" = "mips64"]) |
95 | AM_CONDITIONAL([HOST_POWERPC64], [test "$host_cpu" = "ppc64"]) | 96 | AM_CONDITIONAL([HOST_POWERPC], [test "$host_cpu" = "powerpc"]) |
96 | AM_CONDITIONAL([HOST_RISCV64], [test "$host_cpu" = "riscv64"]) | 97 | AM_CONDITIONAL([HOST_POWERPC64], [test "$host_cpu" = "ppc64"]) |
97 | AM_CONDITIONAL([HOST_SPARC64], [test "$host_cpu" = "sparc64"]) | 98 | AM_CONDITIONAL([HOST_RISCV64], [test "$host_cpu" = "riscv64"]) |
98 | AM_CONDITIONAL([HOST_X86_64], [test "$host_cpu" = "x86_64"]) | 99 | AM_CONDITIONAL([HOST_SPARC64], [test "$host_cpu" = "sparc64"]) |
100 | AM_CONDITIONAL([HOST_X86_64], [test "$host_cpu" = "x86_64"]) | ||
99 | 101 | ||
100 | AC_MSG_CHECKING([if .gnu.warning accepts long strings]) | 102 | AC_MSG_CHECKING([if .gnu.warning accepts long strings]) |
101 | AC_LINK_IFELSE([AC_LANG_SOURCE([[ | 103 | AC_LINK_IFELSE([AC_LANG_SOURCE([[ |
@@ -113,8 +115,6 @@ AC_ARG_ENABLE([asm], AS_HELP_STRING([--disable-asm], [Disable assembly])) | |||
113 | AM_CONDITIONAL([OPENSSL_NO_ASM], [test "x$enable_asm" = "xno"]) | 115 | AM_CONDITIONAL([OPENSSL_NO_ASM], [test "x$enable_asm" = "xno"]) |
114 | 116 | ||
115 | # Conditionally enable assembly by default | 117 | # Conditionally enable assembly by default |
116 | AM_CONDITIONAL([HOST_ASM_ELF_ARM], | ||
117 | [test "x$HOST_ABI" = "xelf" -a "$host_cpu" = "arm" -a "x$enable_asm" != "xno"]) | ||
118 | AM_CONDITIONAL([HOST_ASM_ELF_MIPS], | 118 | AM_CONDITIONAL([HOST_ASM_ELF_MIPS], |
119 | [test "x$HOST_ABI" = "xelf" -a "$host_cpu" = "mips" -a "x$enable_asm" != "xno"]) | 119 | [test "x$HOST_ABI" = "xelf" -a "$host_cpu" = "mips" -a "x$enable_asm" != "xno"]) |
120 | AM_CONDITIONAL([HOST_ASM_ELF_MIPS64], | 120 | AM_CONDITIONAL([HOST_ASM_ELF_MIPS64], |