summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2011-02-18 14:30:13 +0100
committerWerner Koch <wk@gnupg.org>2011-02-18 14:30:13 +0100
commitf17d50bbd31b1faa24af1e46c10bba845becf585 (patch)
tree3fafbfc3613d7bbed1db2dec03d5a61321a61f99 /ChangeLog
parentdc880b55f4bb27d20c0224338836ac0505f386ff (diff)
downloadlibgcrypt-f17d50bbd31b1faa24af1e46c10bba845becf585.tar.gz
Fix strict-aliasing problems in rijndael.c
We used to use -fno-strict-aliasing but only if configured in maintainer-mode. Thus with gcc-4.4 we could run into problems. The fix is to define a new type with the may_alias attribute and use this for the casting stuff in do_encrypt_aligned and do_decrypt_aligned.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog4
1 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index f192d20a..01c12135 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2011-02-18 Werner Koch <wk@g10code.com>
+
+ * configure.ac [GCC]: Remove the use of -fno-strict-aliasing.
+
2011-02-11 Werner Koch <wk@g10code.com>
* configure.ac: Add option --disbale-aesni-support.