Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/libtorrent/files: libtorrent-0.12.6-gcc44.patch
Date: Tue, 22 Dec 2009 20:07:42
Message-Id: E1NNB1B-0007am-0g@stork.gentoo.org
1 ssuominen 09/12/22 20:07:41
2
3 Added: libtorrent-0.12.6-gcc44.patch
4 Log:
5 Version bump.
6 (Portage version: 2.2_rc60/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 net-libs/libtorrent/files/libtorrent-0.12.6-gcc44.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libtorrent/files/libtorrent-0.12.6-gcc44.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libtorrent/files/libtorrent-0.12.6-gcc44.patch?rev=1.1&content-type=text/plain
13
14 Index: libtorrent-0.12.6-gcc44.patch
15 ===================================================================
16 Missing include required by snprintf and --disable-openssl ./configure switch.
17
18 diff -ur libtorrent-0.12.6.orig/src/protocol/handshake.cc libtorrent-0.12.6/src/protocol/handshake.cc
19 --- libtorrent-0.12.6.orig/src/protocol/handshake.cc 2009-11-12 10:03:51.000000000 +0200
20 +++ libtorrent-0.12.6/src/protocol/handshake.cc 2009-12-22 22:05:27.000000000 +0200
21 @@ -53,6 +53,8 @@
22 #include "handshake.h"
23 #include "handshake_manager.h"
24
25 +#include <stdio.h>
26 +
27 namespace torrent {
28
29 const char* Handshake::m_protocol = "BitTorrent protocol";