summaryrefslogtreecommitdiff
path: root/eax.h
diff options
context:
space:
mode:
Diffstat (limited to 'eax.h')
-rw-r--r--eax.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/eax.h b/eax.h
index eeacd4c9..e78401e4 100644
--- a/eax.h
+++ b/eax.h
@@ -72,7 +72,11 @@ public:
private:
CMAC_Base & AccessMAC() {return m_cmac;}
CMAC<T_BlockCipher> m_cmac;
-};
+};
+
+#ifdef EAX // EAX is defined to 11 on GCC 3.4.3, OpenSolaris 8.11
+#undef EAX
+#endif
/// <a href="http://www.cryptolounge.org/wiki/EAX">EAX</a>
template <class T_BlockCipher>