Gentoo Archives: gentoo-commits

From: "Chi-Thanh Christopher Nguyen (chithanh)" <chithanh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/h323plus/files: h323plus-1.25.0-ptrace-param.patch h323plus-1.25.0-ptrace-debugoptionlist.patch
Date: Fri, 22 Feb 2013 19:04:26
Message-Id: 20130222190421.7B6CA2171D@flycatcher.gentoo.org
1 chithanh 13/02/22 19:04:21
2
3 Added: h323plus-1.25.0-ptrace-param.patch
4 h323plus-1.25.0-ptrace-debugoptionlist.patch
5 Log:
6 Initial commit, bug #290106.
7
8 (Portage version: 2.1.11.50/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.1 net-libs/h323plus/files/h323plus-1.25.0-ptrace-param.patch
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/h323plus/files/h323plus-1.25.0-ptrace-param.patch?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/h323plus/files/h323plus-1.25.0-ptrace-param.patch?rev=1.1&content-type=text/plain
15
16 Index: h323plus-1.25.0-ptrace-param.patch
17 ===================================================================
18 diff -ur a/src/rtp.cxx b/src/rtp.cxx
19 --- a/src/rtp.cxx 2012-12-10 18:56:08.000000000 +0100
20 +++ b/src/rtp.cxx 2013-02-22 18:54:35.360358638 +0100
21 @@ -1164,9 +1164,13 @@
22 return e_ProcessPacket;
23 }
24
25 -
26 +#if PTRACING
27 void RTP_Session::OnRxSenderReport(const SenderReport & PTRACE_PARAM(sender),
28 const ReceiverReportArray & PTRACE_PARAM(reports))
29 +#else
30 +void RTP_Session::OnRxSenderReport(const SenderReport & sender,
31 + const ReceiverReportArray & reports)
32 +#endif
33 {
34 userData->OnRxSenderReport(sessionID,sender,reports);
35
36
37
38
39 1.1 net-libs/h323plus/files/h323plus-1.25.0-ptrace-debugoptionlist.patch
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/h323plus/files/h323plus-1.25.0-ptrace-debugoptionlist.patch?rev=1.1&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/h323plus/files/h323plus-1.25.0-ptrace-debugoptionlist.patch?rev=1.1&content-type=text/plain
43
44 Index: h323plus-1.25.0-ptrace-debugoptionlist.patch
45 ===================================================================
46 diff -ur a/src/h323pluginmgr.cxx b/src/h323pluginmgr.cxx
47 --- a/src/h323pluginmgr.cxx 2012-11-29 17:23:26.000000000 +0100
48 +++ b/src/h323pluginmgr.cxx 2013-02-22 18:56:33.100356993 +0100
49 @@ -1543,7 +1543,9 @@
50 PopulateMediaFormatOptions(codecDefn, fmt);
51 PopulateMediaFormatFromGenericData(fmt,
52 (PluginCodec_H323GenericCodecData *)codecDefn->h323CapabilityData);
53 +#if PTRACING
54 OpalMediaFormat::DebugOptionList(fmt);
55 +#endif
56 return true;
57 }