From owner-svn-ports-branches@freebsd.org Tue Jan 10 15:13:37 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E5A46CA9920; Tue, 10 Jan 2017 15:13:37 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BD7751033; Tue, 10 Jan 2017 15:13:37 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0AFDagI034475; Tue, 10 Jan 2017 15:13:36 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0AFDas9034471; Tue, 10 Jan 2017 15:13:36 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201701101513.v0AFDas9034471@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Tue, 10 Jan 2017 15:13:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r431090 - in branches/2017Q1/mail: archiveopteryx archiveopteryx-devel archiveopteryx-devel/files archiveopteryx/files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Jan 2017 15:13:38 -0000 Author: feld Date: Tue Jan 10 15:13:36 2017 New Revision: 431090 URL: https://svnweb.freebsd.org/changeset/ports/431090 Log: MFH: r431089 mail/archiveopteryx{-devel}: Fix build on HEAD Approved by: ports-secteam (with hat) Added: branches/2017Q1/mail/archiveopteryx-devel/files/patch-server_tlsthread.cpp - copied unchanged from r431089, head/mail/archiveopteryx-devel/files/patch-server_tlsthread.cpp branches/2017Q1/mail/archiveopteryx/files/patch-server_tlsthread.cpp - copied unchanged from r431089, head/mail/archiveopteryx/files/patch-server_tlsthread.cpp Modified: branches/2017Q1/mail/archiveopteryx-devel/Makefile branches/2017Q1/mail/archiveopteryx/Makefile Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/mail/archiveopteryx-devel/Makefile ============================================================================== --- branches/2017Q1/mail/archiveopteryx-devel/Makefile Tue Jan 10 15:12:44 2017 (r431089) +++ branches/2017Q1/mail/archiveopteryx-devel/Makefile Tue Jan 10 15:13:36 2017 (r431090) @@ -3,7 +3,7 @@ PORTNAME= archiveopteryx PORTVERSION= 3.2.99.20160129 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= mail PKGNAMESUFFIX= -devel Copied: branches/2017Q1/mail/archiveopteryx-devel/files/patch-server_tlsthread.cpp (from r431089, head/mail/archiveopteryx-devel/files/patch-server_tlsthread.cpp) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q1/mail/archiveopteryx-devel/files/patch-server_tlsthread.cpp Tue Jan 10 15:13:36 2017 (r431090, copy of r431089, head/mail/archiveopteryx-devel/files/patch-server_tlsthread.cpp) @@ -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: branches/2017Q1/mail/archiveopteryx/Makefile ============================================================================== --- branches/2017Q1/mail/archiveopteryx/Makefile Tue Jan 10 15:12:44 2017 (r431089) +++ branches/2017Q1/mail/archiveopteryx/Makefile Tue Jan 10 15:13:36 2017 (r431090) @@ -3,7 +3,7 @@ PORTNAME= archiveopteryx PORTVERSION= 3.2.0 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= mail MASTER_SITES= http://archiveopteryx.org/download/ Copied: branches/2017Q1/mail/archiveopteryx/files/patch-server_tlsthread.cpp (from r431089, head/mail/archiveopteryx/files/patch-server_tlsthread.cpp) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q1/mail/archiveopteryx/files/patch-server_tlsthread.cpp Tue Jan 10 15:13:36 2017 (r431090, copy of r431089, head/mail/archiveopteryx/files/patch-server_tlsthread.cpp) @@ -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