Date: Tue, 10 Jan 2017 15:12:44 +0000 (UTC) From: Mark Felder <feld@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r431089 - in head/mail: archiveopteryx archiveopteryx-devel archiveopteryx-devel/files archiveopteryx/files Message-ID: <201701101512.v0AFCi5b034232@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: feld Date: Tue Jan 10 15:12:44 2017 New Revision: 431089 URL: https://svnweb.freebsd.org/changeset/ports/431089 Log: mail/archiveopteryx{-devel}: Fix build on HEAD Added: head/mail/archiveopteryx-devel/files/patch-server_tlsthread.cpp (contents, props changed) head/mail/archiveopteryx/files/patch-server_tlsthread.cpp (contents, props changed) Modified: head/mail/archiveopteryx-devel/Makefile head/mail/archiveopteryx/Makefile Modified: head/mail/archiveopteryx-devel/Makefile ============================================================================== --- head/mail/archiveopteryx-devel/Makefile Tue Jan 10 14:57:06 2017 (r431088) +++ head/mail/archiveopteryx-devel/Makefile Tue Jan 10 15:12:44 2017 (r431089) @@ -3,7 +3,7 @@ PORTNAME= archiveopteryx PORTVERSION= 3.2.99.20160129 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= mail PKGNAMESUFFIX= -devel Added: head/mail/archiveopteryx-devel/files/patch-server_tlsthread.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/archiveopteryx-devel/files/patch-server_tlsthread.cpp Tue Jan 10 15:12:44 2017 (r431089) @@ -0,0 +1,11 @@ +--- server/tlsthread.cpp.orig 2017-01-10 15:06:31 UTC ++++ server/tlsthread.cpp +@@ -93,7 +93,7 @@ void TlsThread::setup() + SSL_library_init(); + + ctx = ::SSL_CTX_new( SSLv23_server_method() ); +- int options = SSL_OP_ALL ++ long options = SSL_OP_ALL + // also try to pick the same ciphers suites more often + | SSL_OP_CIPHER_SERVER_PREFERENCE + // and don't use SSLv2, even if the client wants to Modified: head/mail/archiveopteryx/Makefile ============================================================================== --- head/mail/archiveopteryx/Makefile Tue Jan 10 14:57:06 2017 (r431088) +++ head/mail/archiveopteryx/Makefile Tue Jan 10 15:12:44 2017 (r431089) @@ -3,7 +3,7 @@ PORTNAME= archiveopteryx PORTVERSION= 3.2.0 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= mail MASTER_SITES= http://archiveopteryx.org/download/ Added: head/mail/archiveopteryx/files/patch-server_tlsthread.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/archiveopteryx/files/patch-server_tlsthread.cpp Tue Jan 10 15:12:44 2017 (r431089) @@ -0,0 +1,11 @@ +--- server/tlsthread.cpp.orig 2017-01-10 15:10:07 UTC ++++ server/tlsthread.cpp +@@ -93,7 +93,7 @@ void TlsThread::setup() + SSL_library_init(); + + ctx = ::SSL_CTX_new( SSLv23_server_method() ); +- int options = SSL_OP_ALL ++ long options = SSL_OP_ALL + // also try to pick the same ciphers suites more often + | SSL_OP_CIPHER_SERVER_PREFERENCE + // and don't use SSLv2, even if the client wants to
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701101512.v0AFCi5b034232>