Changeset View
Changeset View
Standalone View
Standalone View
configure.ac
| Show First 20 Lines • Show All 991 Lines • ▼ Show 20 Lines | |||||
| # Build with the ARMv8/AArch64 CE implementation | # Build with the ARMv8/AArch64 CE implementation | ||||
| GCRYPT_CIPHERS="$GCRYPT_CIPHERS rijndael-armv8-ce.lo" | GCRYPT_CIPHERS="$GCRYPT_CIPHERS rijndael-armv8-ce.lo" | ||||
| GCRYPT_CIPHERS="$GCRYPT_CIPHERS rijndael-armv8-aarch64-ce.lo" | GCRYPT_CIPHERS="$GCRYPT_CIPHERS rijndael-armv8-aarch64-ce.lo" | ||||
| ;; | ;; | ||||
| powerpc64le-*-*) | powerpc64le-*-*) | ||||
| # Build with the crypto extension implementation | # Build with the crypto extension implementation | ||||
| GCRYPT_CIPHERS="$GCRYPT_CIPHERS rijndael-ppc8.lo" | GCRYPT_CIPHERS="$GCRYPT_CIPHERS rijndael-ppc8.lo" | ||||
| GCRYPT_CIPHERS="$GCRYPT_CIPHERS sha512-ppc8.lo sha256-ppc8.lo" | |||||
| ;; | ;; | ||||
| powerpc64-*-*) | powerpc64-*-*) | ||||
| # Big-Endian. | # Big-Endian. | ||||
| # Build with the crypto extension implementation | # Build with the crypto extension implementation | ||||
| GCRYPT_CIPHERS="$GCRYPT_CIPHERS rijndael-ppc8be.lo" | GCRYPT_CIPHERS="$GCRYPT_CIPHERS rijndael-ppc8be.lo" | ||||
| GCRYPT_CIPHERS="$GCRYPT_CIPHERS sha512-ppc8be.lo sha256-ppc8be.lo" | |||||
| ;; | ;; | ||||
| powerpc-*-*) | powerpc-*-*) | ||||
| # Big-Endian. | # Big-Endian. | ||||
| # Build with the crypto extension implementation | # Build with the crypto extension implementation | ||||
| GCRYPT_CIPHERS="$GCRYPT_CIPHERS rijndael-ppc832.lo" | GCRYPT_CIPHERS="$GCRYPT_CIPHERS rijndael-ppc832.lo" | ||||
| GCRYPT_CIPHERS="$GCRYPT_CIPHERS sha512-ppc832.lo sha256-ppc832.lo" | |||||
| ;; | ;; | ||||
| esac | esac | ||||
| case "$mpi_cpu_arch" in | case "$mpi_cpu_arch" in | ||||
| x86) | x86) | ||||
| # Build with the AES-NI implementation | # Build with the AES-NI implementation | ||||
| GCRYPT_CIPHERS="$GCRYPT_CIPHERS rijndael-aesni.lo" | GCRYPT_CIPHERS="$GCRYPT_CIPHERS rijndael-aesni.lo" | ||||
| ▲ Show 20 Lines • Show All 596 Lines • Show Last 20 Lines | |||||