]> git.ipfire.org Git - thirdparty/nettle.git/commitdiff
Fixed handling of OPT_ASM_SOURCES. Added ecc-224-modp.asm.
authorNiels Möller <nisse@lysator.liu.se>
Fri, 1 Mar 2013 09:04:24 +0000 (10:04 +0100)
committerNiels Möller <nisse@lysator.liu.se>
Fri, 1 Mar 2013 09:04:24 +0000 (10:04 +0100)
ChangeLog
configure.ac

index 93643d335becf33a6c7dfac3eb218835639476e9..65c866a1c733c3a20a20dc94c7fe6eec23aa3634 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-03-01  Niels Möller  <nisse@lysator.liu.se>
+
+       * configure.ac (asm_optional_list): Added ecc-224-modp.asm.
+       (OPT_ASM_SOURCES): Fixed assignment.
+
 2013-02-28  Niels Möller  <nisse@lysator.liu.se>
 
        * x86_64/ecc-192-modp.asm: Reorganized to reduce number of
index 26776bb2e133cbd114c1075c8f873aae86b219f3..aa8817c53257d9409a6461dbfc2353b67f8b2f36 100644 (file)
@@ -250,7 +250,7 @@ asm_replace_list="aes-encrypt-internal.asm aes-decrypt-internal.asm \
 asm_optional_list=""
 
 if test "x$enable_public_key" = "xyes" ; then
-  asm_optional_list="$asm_search_list ecc-192-modp.asm ecc-256-redc.asm"
+  asm_optional_list="$asm_search_list ecc-192-modp.asm ecc-224-modp.asm ecc-256-redc.asm"
 fi
 
 OPT_ASM_SOURCES=""
@@ -278,7 +278,7 @@ if test "x$enable_assembler" = xyes ; then
        done <<EOF
 [`sed -n 's/[^         ]*PROLOGUE(_*\(nettle_\)*\([^)]*\)).*$/\2/p' < "$srcdir/$asm_path/$tmp_o"`]
 EOF
-       OPT_ASM_SOURCES="$OPT_SOURCES $tmp_o"
+       OPT_ASM_SOURCES="$OPT_ASM_SOURCES $tmp_o"
       fi
     done       
     if test -z "$asm_file_list"; then