summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2013-03-01 10:04:24 +0100
committerNiels Möller <nisse@lysator.liu.se>2013-03-01 10:04:24 +0100
commiteb046c27b335ba6b90219536bbdca7522603adfb (patch)
tree6a945a603a87fd49e7fe5d23a8b9ba635066ea4f
parent10e0615f30f6997675985b655f1cfd6823aa8615 (diff)
downloadnettle-eb046c27b335ba6b90219536bbdca7522603adfb.tar.gz
Fixed handling of OPT_ASM_SOURCES. Added ecc-224-modp.asm.
-rw-r--r--ChangeLog5
-rw-r--r--configure.ac4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 93643d33..65c866a1 100644
--- 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
diff --git a/configure.ac b/configure.ac
index 26776bb2..aa8817c5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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