Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-p2p/transmission/files: transmission-2.41-noutp.patch
Date: Sat, 26 Nov 2011 22:41:35
Message-Id: 20111126224125.C618C2004C@flycatcher.gentoo.org
1 eva 11/11/26 22:41:25
2
3 Added: transmission-2.41-noutp.patch
4 Log:
5 Fix build issue when USE=-utp, bug #290737.
6
7 (Portage version: 2.2.0_alpha78/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 net-p2p/transmission/files/transmission-2.41-noutp.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/transmission/files/transmission-2.41-noutp.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/transmission/files/transmission-2.41-noutp.patch?rev=1.1&content-type=text/plain
14
15 Index: transmission-2.41-noutp.patch
16 ===================================================================
17 --- third-party/libutp/utypes.h.orig Wed Sep 28 19:46:15 2011
18 +++ third-party/libutp/utypes.h Wed Sep 28 19:47:06 2011
19 @@ -36,7 +36,11 @@ typedef const char * cstr;
20 typedef char * str;
21
22 #ifndef __cplusplus
23 +#ifdef HAVE_STDBOOL_H
24 +#include <stdbool.h>
25 +#else
26 typedef uint8 bool;
27 +#endif
28 #endif
29
30 #endif //__UTYPES_H__