Package: opie
Version: 2.32-10.1
Severity: normal
Tags: patch
Hi,
Attached is the diff for my opie 2.32-10.2 NMU.
diff -u opie-2.32/debian/changelog opie-2.32/debian/changelog
--- opie-2.32/debian/changelog
+++ opie-2.32/debian/changelog
@@ -1,3 +1,11 @@
+opie (2.32-10.2) unstable; urgency=high
+
+ * Non-maintainer upload.
+ * The fix for uint32_t on 64-bit architectures was reverted in the last NMU;
+ reinstate it. Fixes FTBFS on amd64.
+
+ -- Steinar H. Gunderson <[EMAIL PROTECTED]> Tue, 18 Jul 2006 23:15:46 +0200
+
opie (2.32-10.1) unstable; urgency=high
* Non-maintainer upload.
diff -u opie-2.32/opie.h opie-2.32/opie.h
--- opie-2.32/opie.h
+++ opie-2.32/opie.h
@@ -159,11 +159,8 @@
#define OPIE_PRINCIPAL_MAX 32
#endif /* OPIE_PRINCIPAL_MAX */
-#ifndef __alpha
-#define UINT4 unsigned long
-#else /* __alpha */
-#define UINT4 unsigned int
-#endif /* __alpha */
+#include <stdint.h>
+#define UINT4 uint32_t
typedef struct md5_state_s {
UINT4 count[2]; /* message length in bits, lsw first */