From owner-svn-ports-all@FreeBSD.ORG Mon Jan 19 08:22:39 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DACF7E7A; Mon, 19 Jan 2015 08:22:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 AC43B831; Mon, 19 Jan 2015 08:22:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t0J8MdZv078778; Mon, 19 Jan 2015 08:22:39 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t0J8MdgJ078776; Mon, 19 Jan 2015 08:22:39 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201501190822.t0J8MdgJ078776@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Mon, 19 Jan 2015 08:22:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r377391 - in head/net-p2p/libtorrent-rasterbar: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2015 08:22:40 -0000 Author: rm Date: Mon Jan 19 08:22:38 2015 New Revision: 377391 URL: https://svnweb.freebsd.org/changeset/ports/377391 QAT: https://qat.redports.org/buildarchive/r377391/ Log: net-p2p/libtorrent-rasterbar: fix build with LibreSSL Add upstream-provided patch to fix build with LibreSSL. Default (OpenSSL) setup isn't affected, so no PORTREVISION bump. Remove pkg-message, that have no use. Submitted by: Corey (by private email) Added: head/net-p2p/libtorrent-rasterbar/files/patch-libressl (contents, props changed) Deleted: head/net-p2p/libtorrent-rasterbar/files/pkg-message.in Modified: head/net-p2p/libtorrent-rasterbar/Makefile Modified: head/net-p2p/libtorrent-rasterbar/Makefile ============================================================================== --- head/net-p2p/libtorrent-rasterbar/Makefile Mon Jan 19 08:15:17 2015 (r377390) +++ head/net-p2p/libtorrent-rasterbar/Makefile Mon Jan 19 08:22:38 2015 (r377391) @@ -35,8 +35,6 @@ CONFIGURE_ARGS= --disable-static \ SHLIB_VER= 7 PLIST_SUB+= SHLIB_VER="${SHLIB_VER}" -SUB_FILES= pkg-message - PORTDOCS= * DOCSRCDIR1= ${WRKSRC} Added: head/net-p2p/libtorrent-rasterbar/files/patch-libressl ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/libtorrent-rasterbar/files/patch-libressl Mon Jan 19 08:22:38 2015 (r377391) @@ -0,0 +1,38 @@ +--- src/torrent.cpp (revision 10629) ++++ src/torrent.cpp (revision 10630) +@@ -82,6 +82,7 @@ + #ifdef TORRENT_USE_OPENSSL + #include "libtorrent/ssl_stream.hpp" + #include ++#include + #if BOOST_VERSION >= 104700 + #include + #endif // BOOST_VERSION +Index: src/peer_connection.cpp +=================================================================== +--- src/peer_connection.cpp (revision 10629) ++++ src/peer_connection.cpp (revision 10630) +@@ -65,6 +65,10 @@ + #include + #endif + ++#ifdef TORRENT_USE_OPENSSL ++#include ++#endif ++ + //#define TORRENT_CORRUPT_DATA + + using boost::shared_ptr; +Index: src/session_impl.cpp +=================================================================== +--- src/session_impl.cpp (revision 10629) ++++ src/session_impl.cpp (revision 10630) +@@ -149,6 +149,7 @@ + #ifdef TORRENT_USE_OPENSSL + + #include ++#include + + namespace + { +