From f7bf81333394350031877647fcb94fe1b32f3fde Mon Sep 17 00:00:00 2001 From: Kirill Ponomarev Date: Sun, 7 Mar 2004 18:50:51 +0000 Subject: - Fix build on sparc64 PR: ports/63884 Submitted by: maintainer --- mail/pgp4pine/files/patch-md5.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 mail/pgp4pine/files/patch-md5.c (limited to 'mail/pgp4pine/files/patch-md5.c') diff --git a/mail/pgp4pine/files/patch-md5.c b/mail/pgp4pine/files/patch-md5.c new file mode 100644 index 000000000000..6f502f43888b --- /dev/null +++ b/mail/pgp4pine/files/patch-md5.c @@ -0,0 +1,13 @@ +--- pgp4pine/md5.c.orig Sun Mar 7 13:55:00 2004 ++++ pgp4pine/md5.c Sun Mar 7 13:55:02 2004 +@@ -288,8 +288,8 @@ + + p = hd->buf; + #ifdef WORDS_BIGENDIAN +-#define X(a) do { *p++ = hd->##a ; *p++ = hd->##a >> 8; \ +- *p++ = hd->##a >> 16; *p++ = hd->##a >> 24; } while(0) ++#define X(a) do { *p++ = (*hd).a ; *p++ = (*hd).a >> 8; \ ++ *p++ = (*hd).a >> 16; *p++ = (*hd).a >> 24; } while(0) + #else /* little endian */ + /*#define X(a) do { *(u_int32_t*)p = hd->##a ; p += 4; } while(0)*/ + /* Unixware's cpp doesn't like the above construct so we do it his way: -- cgit v1.2.3