summaryrefslogtreecommitdiff
path: root/cipher/tiger.c
diff options
context:
space:
mode:
Diffstat (limited to 'cipher/tiger.c')
-rw-r--r--cipher/tiger.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/cipher/tiger.c b/cipher/tiger.c
index 51c6450c..20d17cae 100644
--- a/cipher/tiger.c
+++ b/cipher/tiger.c
@@ -27,6 +27,11 @@
#include "memory.h"
+#ifdef HAVE_U64_TYPEDEF
+
+/* we really need it here, but as this is only experiment we
+ * can live without Tiger */
+
typedef struct {
u64 a, b, c;
byte buf[64];
@@ -964,4 +969,5 @@ gnupgext_enum_func( int what, int *sequence, int *class, int *vers )
return ret;
}
+#endif /* HAVE_U64_TYPEDEF */