aboutsummaryrefslogtreecommitdiff
path: root/changes
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2014-05-05 11:44:02 -0400
committerNick Mathewson <nickm@torproject.org>2014-05-05 11:44:02 -0400
commit388478561dd4457afedf530591f02cb05864b187 (patch)
treefb71c8f7a93d923c84db702b8fc635e8420a1128 /changes
parent5d496963b4a98512711bd4cbc5565535d89e7845 (diff)
downloadtor-388478561dd4457afedf530591f02cb05864b187.tar
tor-388478561dd4457afedf530591f02cb05864b187.tar.gz
Fix cross-compiling when 128-bit math compiles but won't link
Apparently, there exist cross-compiling environments for arm7 where you can compile a 64x64->128 multiply, but not link it. Fixes bug 11729; bugfix on 0.2.4.8-alpha. Patch from 'conradev'.
Diffstat (limited to 'changes')
-rw-r--r--changes/bug117295
1 files changed, 5 insertions, 0 deletions
diff --git a/changes/bug11729 b/changes/bug11729
new file mode 100644
index 000000000..93751cfea
--- /dev/null
+++ b/changes/bug11729
@@ -0,0 +1,5 @@
+ o Minor bugfixes (build):
+ - When deciding whether to build the 64-bit curve25519 implementation,
+ detect platforms where we can compile 128-bit arithmetic but cannot
+ link it. Fixes bug 11729; bugfix on 0.2.4.8-alpha. Patch
+ from "conradev".