summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cipher/Makefile.am2
-rw-r--r--cipher/camellia-aesni-avx-amd64.S (renamed from cipher/camellia_aesni_avx_x86-64.S)4
-rw-r--r--configure.ac2
3 files changed, 4 insertions, 4 deletions
diff --git a/cipher/Makefile.am b/cipher/Makefile.am
index c39f627e..00e44291 100644
--- a/cipher/Makefile.am
+++ b/cipher/Makefile.am
@@ -75,7 +75,7 @@ tiger.c \
whirlpool.c \
twofish.c \
rfc2268.c \
-camellia.c camellia.h camellia-glue.c camellia_aesni_avx_x86-64.S
+camellia.c camellia.h camellia-glue.c camellia-aesni-avx-amd64.S
if ENABLE_O_FLAG_MUNGING
o_flag_munging = sed -e 's/-O\([2-9s][2-9s]*\)/-O1/' -e 's/-Ofast/-O1/g'
diff --git a/cipher/camellia_aesni_avx_x86-64.S b/cipher/camellia-aesni-avx-amd64.S
index e25ad8f8..2b1df17a 100644
--- a/cipher/camellia_aesni_avx_x86-64.S
+++ b/cipher/camellia-aesni-avx-amd64.S
@@ -1,6 +1,6 @@
-/* camellia_avx_aesni_x86-64.S - AES-NI/AVX implementation of Camellia cipher
+/* camellia-avx-aesni-amd64.S - AES-NI/AVX implementation of Camellia cipher
*
- * Copyright (C) 2013 Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
+ * Copyright © 2013 Jussi Kivilinna <jussi.kivilinna@iki.fi>
*
* This file is part of Libgcrypt.
*
diff --git a/configure.ac b/configure.ac
index 079951db..f14e28a5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1241,7 +1241,7 @@ if test "$found" = "1" ; then
if test x"$avxsupport" = xyes ; then
if test x"$aesnisupport" = xyes ; then
# Build with the AES-NI/AVX implementation
- GCRYPT_CIPHERS="$GCRYPT_CIPHERS camellia_aesni_avx_x86-64.lo"
+ GCRYPT_CIPHERS="$GCRYPT_CIPHERS camellia-aesni-avx-amd64.lo"
fi
fi
fi