Index: net/asio/Makefile =================================================================== --- net/asio/Makefile (revision 443115) +++ net/asio/Makefile (working copy) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= asio -PORTVERSION= 1.10.4 -PORTREVISION= 3 +PORTVERSION= 1.10.6 CATEGORIES= net devel MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION}%20(Stable)/ @@ -10,6 +9,8 @@ MAINTAINER= acm@FreeBSD.org COMMENT= Cross-platform C++ library for network and low-level I/O programming +LICENSE_FILE= ${WRKSRC}/LICENSE_1_0.txt + RUN_DEPENDS= ${LOCALBASE}/include/boost/chrono/system_clocks.hpp:devel/boost-libs GNU_CONFIGURE= yes Index: net/asio/distinfo =================================================================== --- net/asio/distinfo (revision 443115) +++ net/asio/distinfo (working copy) @@ -1,2 +1,3 @@ -SHA256 (asio-1.10.4.tar.bz2) = 313b0d69bd5fd528a6748fec2f24c56ab143310302c903efe5f0728232b7b14a -SIZE (asio-1.10.4.tar.bz2) = 1270594 +TIMESTAMP = 1497173194 +SHA256 (asio-1.10.6.tar.bz2) = e0d71c40a7b1f6c1334008fb279e7361b32a063e020efd21e40d9d8ff037195e +SIZE (asio-1.10.6.tar.bz2) = 1266180 Index: net/asio/files/patch-include_asio_ssl_impl_context.ipp =================================================================== --- net/asio/files/patch-include_asio_ssl_impl_context.ipp (nonexistent) +++ net/asio/files/patch-include_asio_ssl_impl_context.ipp (working copy) @@ -0,0 +1,26 @@ +--- include/asio/ssl/impl/context.ipp.orig 2015-03-23 20:28:30 UTC ++++ include/asio/ssl/impl/context.ipp +@@ -88,7 +88,15 @@ context::context(context::method m) + handle_ = ::SSL_CTX_new(::SSLv2_server_method()); + break; + #endif // defined(OPENSSL_NO_SSL2) ++#if defined(OPENSSL_NO_SSL3) + case context::sslv3: ++ case context::sslv3_client: ++ case context::sslv3_server: ++ asio::detail::throw_error( ++ asio::error::invalid_argument, "context"); ++ break; ++#else // defined(OPENSSL_NO_SSL3) ++ case context::sslv3: + handle_ = ::SSL_CTX_new(::SSLv3_method()); + break; + case context::sslv3_client: +@@ -97,6 +105,7 @@ context::context(context::method m) + case context::sslv3_server: + handle_ = ::SSL_CTX_new(::SSLv3_server_method()); + break; ++#endif // defined(OPENSSL_NO_SSL3) + case context::tlsv1: + handle_ = ::SSL_CTX_new(::TLSv1_method()); + break; Property changes on: net/asio/files/patch-include_asio_ssl_impl_context.ipp ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property