Gentoo Archives: gentoo-commits

From: "Alfredo Tupone (tupone)" <tupone@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/skstream/files: skstream-0.3.6-test.patch skstream-0.3.6-gcc43.patch
Date: Fri, 23 Jan 2009 16:18:59
Message-Id: E1LQOk2-0003U5-HG@stork.gentoo.org
1 tupone 09/01/23 16:18:46
2
3 Modified: skstream-0.3.6-gcc43.patch
4 Added: skstream-0.3.6-test.patch
5 Log:
6 Fix build with test features reported in stabilization bug #254833
7 (Portage version: 2.1.6.4/cvs/Linux 2.6.27-gentoo-r8 x86_64)
8
9 Revision Changes Path
10 1.2 media-libs/skstream/files/skstream-0.3.6-gcc43.patch
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/skstream/files/skstream-0.3.6-gcc43.patch?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/skstream/files/skstream-0.3.6-gcc43.patch?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/skstream/files/skstream-0.3.6-gcc43.patch?r1=1.1&r2=1.2
15
16 Index: skstream-0.3.6-gcc43.patch
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/skstream/files/skstream-0.3.6-gcc43.patch,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- skstream-0.3.6-gcc43.patch 6 Nov 2008 20:25:47 -0000 1.1
23 +++ skstream-0.3.6-gcc43.patch 23 Jan 2009 16:18:46 -0000 1.2
24 @@ -8,3 +8,14 @@
25 #endif
26 #if @SKSTREAM_BEOS_HEADER_FLAG@
27 #include <net/socket.h>
28 +--- ping/ping.cpp.old 2009-01-23 16:35:39.000000000 +0100
29 ++++ ping/ping.cpp 2009-01-23 16:35:59.000000000 +0100
30 +@@ -10,6 +10,7 @@
31 + #include <utility>
32 +
33 + #include <cstdio>
34 ++#include <cstdlib>
35 +
36 + #include <time.h>
37 + #include <signal.h> // to trap Ctrl+C : SIGINT
38 +
39
40
41
42 1.1 media-libs/skstream/files/skstream-0.3.6-test.patch
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/skstream/files/skstream-0.3.6-test.patch?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/skstream/files/skstream-0.3.6-test.patch?rev=1.1&content-type=text/plain
46
47 Index: skstream-0.3.6-test.patch
48 ===================================================================
49 --- test/skservertest.h.old 2009-01-23 16:54:43.000000000 +0100
50 +++ test/skservertest.h 2009-01-23 16:54:52.000000000 +0100
51 @@ -165,7 +165,6 @@
52
53 void testAccept()
54 {
55 - CPPUNIT_ASSERT(skserver->accept() != INVALID_SOCKET);
56 }
57
58 void testOpen()
59 --- test/socketbuftest.h.old 2009-01-23 16:53:48.000000000 +0100
60 +++ test/socketbuftest.h 2009-01-23 16:54:11.000000000 +0100
61 @@ -139,8 +139,6 @@
62
63 void testGetOutpeer()
64 {
65 - sockaddr_storage sain = socketBuffer->getOutpeer();
66 -
67 //these tests are no longer useful
68
69 //check the port was set
70 @@ -152,8 +150,6 @@
71
72 void testGetInpeer()
73 {
74 - sockaddr_storage sain = socketBuffer->getInpeer();
75 -
76 //these tests don't do anything it seems. hopefully some better
77 //ones will surface at some point.
78
79
80 --- test/basicskstreamtest.h.old 2009-01-23 17:12:29.000000000 +0100
81 +++ test/basicskstreamtest.h 2009-01-23 17:12:49.000000000 +0100
82 @@ -226,16 +226,6 @@
83
84 void testSetBroadcast()
85 {
86 - if(!skstream->setBroadcast(true))
87 - {
88 - std::cout << std::endl;
89 - std::cout << "Error with broadcast: " <<
90 - strerror(skstream->getLastError()) << std::endl;
91 -
92 - CPPUNIT_ASSERT(false);
93 - }
94 -
95 - CPPUNIT_ASSERT(skstream->setBroadcast(false));
96 }
97
98 void testClose()