MFH: r431089

mail/archiveopteryx{-devel}: Fix build on HEAD

Approved by:	ports-secteam (with hat)
This commit is contained in:
Mark Felder 2017-01-10 15:13:36 +00:00
parent b5d673ea60
commit 35e893edcc
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/branches/2017Q1/; revision=431090
4 changed files with 24 additions and 2 deletions

View File

@ -3,7 +3,7 @@
PORTNAME= archiveopteryx PORTNAME= archiveopteryx
PORTVERSION= 3.2.99.20160129 PORTVERSION= 3.2.99.20160129
PORTREVISION= 2 PORTREVISION= 3
CATEGORIES= mail CATEGORIES= mail
PKGNAMESUFFIX= -devel PKGNAMESUFFIX= -devel

View File

@ -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

View File

@ -3,7 +3,7 @@
PORTNAME= archiveopteryx PORTNAME= archiveopteryx
PORTVERSION= 3.2.0 PORTVERSION= 3.2.0
PORTREVISION= 6 PORTREVISION= 7
CATEGORIES= mail CATEGORIES= mail
MASTER_SITES= http://archiveopteryx.org/download/ MASTER_SITES= http://archiveopteryx.org/download/

View File

@ -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