diff options
author | arved <arved@FreeBSD.org> | 2018-06-13 22:33:17 +0800 |
---|---|---|
committer | arved <arved@FreeBSD.org> | 2018-06-13 22:33:17 +0800 |
commit | f5655ac637e475a4a43ec4c6a3229e5281ab3e96 (patch) | |
tree | e7a60d9593843ffa26b9c65ff7fafd2ca7049cac /mail | |
parent | caf2831a3ee352a9970f7ede13e77657daf467e5 (diff) | |
download | freebsd-ports-gnome-f5655ac637e475a4a43ec4c6a3229e5281ab3e96.tar.gz freebsd-ports-gnome-f5655ac637e475a4a43ec4c6a3229e5281ab3e96.tar.zst freebsd-ports-gnome-f5655ac637e475a4a43ec4c6a3229e5281ab3e96.zip |
Fix program with stunnel >= 5.45.
PR: 228496
Submitted by: t-matubara@miracle.ocn.ne.jp
Approved by: maintainer timeout
Diffstat (limited to 'mail')
-rw-r--r-- | mail/mew/Makefile | 2 | ||||
-rw-r--r-- | mail/mew/files/patch-mew-ssl.el | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/mail/mew/Makefile b/mail/mew/Makefile index c168f9f51f1e..cae7c6da4b89 100644 --- a/mail/mew/Makefile +++ b/mail/mew/Makefile @@ -3,7 +3,7 @@ PORTNAME= mew PORTVERSION= 6.7 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= mail elisp MASTER_SITES= http://www.mew.org/Release/ PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} diff --git a/mail/mew/files/patch-mew-ssl.el b/mail/mew/files/patch-mew-ssl.el new file mode 100644 index 000000000000..953b19fef1b7 --- /dev/null +++ b/mail/mew/files/patch-mew-ssl.el @@ -0,0 +1,11 @@ +--- mew-ssl.el.orig 2018-05-26 06:07:04.349903000 +0900 ++++ mew-ssl.el 2018-05-26 06:14:42.303658000 +0900 +@@ -241,7 +241,7 @@ + (mew-ssl-set-string pnm string) + (setq string (concat prev-str string)) + (cond +- ((string-match "Negotiated \\|opened with SSL" string) ++ ((string-match "Negotiated \\| ciphersuite:\\|opened with SSL" string) + (mew-ssl-set-status pnm t)) + ((string-match "Failed to initialize" string) + (mew-ssl-set-status pnm t)) ;; xxx |