Skip to content
Snippets Groups Projects
Commit 7d41b7a5 authored by Niels Möller's avatar Niels Möller
Browse files

* configure.ac: When looking for assembler files, link in

aes-encrypt-internal.asm and aes-decrypt-internal.asm. Don't look
for aes.asm, aes-encrypt.asm and aes-decrypt.asm.

Rev: src/nettle/configure.ac:1.65
parent 3603a229
No related branches found
No related tags found
No related merge requests found
......@@ -127,7 +127,7 @@ if test "x$enable_assembler" = xyes ; then
if test -n "$asm_path"; then
AC_MSG_NOTICE([Looking for assembler files in $asm_path/.])
found=no
for tmp_f in aes.asm aes-encrypt.asm aes-decrypt.asm \
for tmp_f in aes-encrypt-internal.asm aes-decrypt-internal.asm \
arcfour-crypt.asm md5-compress.asm sha1-compress.asm machine.m4; do
# echo "Looking for $srcdir/$asm_path/$tmp_f"
if test -f "$srcdir/$asm_path/$tmp_f"; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment