svn commit: r382055 - head/mail/courier/files
Jung-uk Kim
jkim at FreeBSD.org
Mon Mar 23 23:07:19 UTC 2015
Author: jkim
Date: Mon Mar 23 23:07:18 2015
New Revision: 382055
URL: https://svnweb.freebsd.org/changeset/ports/382055
QAT: https://qat.redports.org/buildarchive/r382055/
Log:
Make it also buildable without SSLv3 support.
PR: 198399
Modified:
head/mail/courier/files/patch-tcpd__libcouriertls.c
Modified: head/mail/courier/files/patch-tcpd__libcouriertls.c
==============================================================================
--- head/mail/courier/files/patch-tcpd__libcouriertls.c Mon Mar 23 22:49:28 2015 (r382054)
+++ head/mail/courier/files/patch-tcpd__libcouriertls.c Mon Mar 23 23:07:18 2015 (r382055)
@@ -1,6 +1,6 @@
---- tcpd/libcouriertls.c.orig 2009-11-21 15:07:32.000000000 -0500
-+++ tcpd/libcouriertls.c 2015-03-23 18:04:57.776710000 -0400
-@@ -551,8 +551,10 @@
+--- tcpd/libcouriertls.c.orig 2009-11-21 21:07:32.000000000 +0100
++++ tcpd/libcouriertls.c 2015-03-07 22:46:47.521076321 +0100
+@@ -551,9 +551,13 @@
if (!protocol || !*protocol)
protocol="SSL23";
@@ -10,6 +10,9 @@
+#ifndef OPENSSL_NO_SSL2
+ protocol && strcmp(protocol, "SSL2") == 0 ? SSLv2_method():
+#endif
++#ifndef OPENSSL_NO_SSL3
protocol && strcmp(protocol, "SSL3") == 0 ? SSLv3_method():
++#endif
protocol && strcmp(protocol, "SSL23") == 0 ? SSLv23_method():
TLSv1_method());
+
More information about the svn-ports-all
mailing list