Date: Sat, 17 Aug 2024 18:51:42 GMT From: MANTANI Nobutaka <nobutaka@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-branches@FreeBSD.org Subject: git: 12aa25a59b0d - 2024Q3 - japanese/mh: Fix APOP authentication breakage Message-ID: <202408171851.47HIpgiW050535@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch 2024Q3 has been updated by nobutaka: URL: https://cgit.FreeBSD.org/ports/commit/?id=12aa25a59b0df21c9b055cd9ff870bebad53ccdb commit 12aa25a59b0df21c9b055cd9ff870bebad53ccdb Author: MANTANI Nobutaka <nobutaka@FreeBSD.org> AuthorDate: 2024-08-17 18:11:32 +0000 Commit: MANTANI Nobutaka <nobutaka@FreeBSD.org> CommitDate: 2024-08-17 18:49:41 +0000 japanese/mh: Fix APOP authentication breakage PR: 277664 Reported by: Shigeharu TAKENO <shige@iee.niit.ac.jp> Approved by: WATANABE Kazuhiro <CQG00620@nifty.ne.jp> (maintainer) MFH: 2024Q3 (cherry picked from commit ab71398319d2b363cc2a89d5fe7b717a0604f31d) --- japanese/mh/Makefile | 2 +- japanese/mh/files/patch-h_md5.h | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/japanese/mh/Makefile b/japanese/mh/Makefile index 18ea387ca766..85df8866578c 100644 --- a/japanese/mh/Makefile +++ b/japanese/mh/Makefile @@ -1,6 +1,6 @@ PORTNAME= mh PORTVERSION= ${VERSION}.j${JP_VERSION} -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= japanese mail MASTER_SITES= ftp://ftp.laic.u-hyogo.ac.jp/pub/net/mh/ DISTNAME= ${PORTNAME}-${VERSION}-JP-${JP_VERSION} diff --git a/japanese/mh/files/patch-h_md5.h b/japanese/mh/files/patch-h_md5.h new file mode 100644 index 000000000000..914508155968 --- /dev/null +++ b/japanese/mh/files/patch-h_md5.h @@ -0,0 +1,18 @@ +--- h/md5.h.orig 1999-02-09 11:30:00 UTC ++++ h/md5.h +@@ -20,11 +20,15 @@ typedef unsigned short int UINT2; + typedef unsigned short int UINT2; + + /* UINT4 defines a four byte word */ ++#if 0 + #ifndef __alpha + typedef unsigned long int UINT4; + #else + typedef unsigned int UINT4; + #endif ++#endif ++#include <sys/types.h> ++typedef uint32_t UINT4; + + /* PROTO_LIST is defined depending on how PROTOTYPES is defined above. + If using PROTOTYPES, then PROTO_LIST returns the list, otherwise it
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202408171851.47HIpgiW050535>