<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Pseudonerd &#187; python</title>
	<atom:link href="http://pseudonerd.com/tag/python/feed" rel="self" type="application/rss+xml" />
	<link>http://pseudonerd.com</link>
	<description>blog sobre tecnologia e nerdices em geral!</description>
	<lastBuildDate>Mon, 26 Dec 2011 14:28:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>escreva um algoritmo que calcule a média ponderada e imprima o segundo maior número</title>
		<link>http://pseudonerd.com/programacao/escreva-um-algoritmo-que-calcule-a-media-ponderada-e-imprima-o-segundo-maior-numero-482</link>
		<comments>http://pseudonerd.com/programacao/escreva-um-algoritmo-que-calcule-a-media-ponderada-e-imprima-o-segundo-maior-numero-482#comments</comments>
		<pubDate>Fri, 15 Apr 2011 15:28:22 +0000</pubDate>
		<dc:creator>adlersd</dc:creator>
				<category><![CDATA[c]]></category>
		<category><![CDATA[programação]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[algoritmos]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[média ponderada]]></category>

		<guid isPermaLink="false">http://pseudonerd.com/?p=482</guid>
		<description><![CDATA[Esse algoritmo foi proposto pela Marlene. Escreva um programa que lê 4 notas reais (do tipo double), calcule e imprime (com 2 casas decimais) a média ponderada das notas. Os pesos são: 1 para a 1ª nota, 2 para 2ª, 3 para a 3ª e 4 para a 4ª. Imprima, também, a segunda a maior [...]
Não existem posts relacionados.]]></description>
			<content:encoded><![CDATA[<p>Esse algoritmo foi proposto pela <a href="http://pseudonerd.com/programacao/escreva-um-algoritmo-que-leia-dois-numeros-inteiros-e-imprima-a-soma-e-o-produto-390/comment-page-1#comment-2539">Marlene</a>.</p>
<blockquote><p><strong><br />
Escreva  um programa   que   lê   4  notas   reais   (do  tipo  double),   calcule   e   imprime   (com 2   casas<br />
decimais) a média ponderada das notas. Os pesos são: 1 para a 1ª nota, 2 para 2ª, 3 para a 3ª e 4 para a 4ª. Imprima, também, a segunda a maior nota (com 2 casas decimais).<br />
por exemplo: Notas: 10.0, 3.5, 6.8, 7.6<br />
</strong></p></blockquote>
<p><strong>Em C:</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
</pre></td><td class="code"><pre class="c" style="font-family:monospace;"><span style="color: #339933;">#include &lt;stdio.h&gt;</span>
&nbsp;
<span style="color: #993333;">int</span> main<span style="color: #009900;">&#40;</span><span style="color: #993333;">int</span> argc<span style="color: #339933;">,</span> <span style="color: #993333;">char</span> <span style="color: #339933;">**</span>argv<span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
    <span style="color: #993333;">int</span> i<span style="color: #339933;">;</span>
	<span style="color: #993333;">float</span> notas<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">4</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> primeiraNota <span style="color: #339933;">=</span> <span style="color:#800080;">0.0</span><span style="color: #339933;">,</span> segundaNota <span style="color: #339933;">=</span> <span style="color:#800080;">0.0</span><span style="color: #339933;">;</span>
	<span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;Digite a primeira nota: &quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	scanf<span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;%f&quot;</span><span style="color: #339933;">,</span> <span style="color: #339933;">&amp;</span>notas<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;Digite o segunda nota: &quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	scanf<span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;%f&quot;</span><span style="color: #339933;">,</span> <span style="color: #339933;">&amp;</span>notas<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;Digite a primeira nota: &quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	scanf<span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;%f&quot;</span><span style="color: #339933;">,</span> <span style="color: #339933;">&amp;</span>notas<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">2</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;Digite o segunda nota: &quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	scanf<span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;%f&quot;</span><span style="color: #339933;">,</span> <span style="color: #339933;">&amp;</span>notas<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">3</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;A media ponderada e: %.2f<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">,</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span>notas<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">0</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">+</span> <span style="color: #009900;">&#40;</span>notas<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">1</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">*</span><span style="color: #0000dd;">2</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">+</span> <span style="color: #009900;">&#40;</span>notas<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">2</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">*</span><span style="color: #0000dd;">3</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">+</span> <span style="color: #009900;">&#40;</span>notas<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">3</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">*</span><span style="color: #0000dd;">4</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">/</span><span style="color: #0000dd;">10</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
    primeiraNota <span style="color: #339933;">=</span> notas<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
    segundaNota <span style="color: #339933;">=</span> notas<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #b1b100;">for</span><span style="color: #009900;">&#40;</span> i<span style="color: #339933;">=</span><span style="color: #0000dd;">0</span><span style="color: #339933;">;</span> i <span style="color: #339933;">&lt;</span> <span style="color: #0000dd;">4</span> <span style="color: #339933;">;</span> i<span style="color: #339933;">++</span> <span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
        <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> notas<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span> <span style="color: #339933;">&gt;</span> primeiraNota <span style="color: #009900;">&#41;</span>
        <span style="color: #009900;">&#123;</span>
            segundaNota<span style="color: #339933;">=</span>primeiraNota<span style="color: #339933;">;</span>
            primeiraNota <span style="color: #339933;">=</span> notas<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
        <span style="color: #b1b100;">else</span> <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> <span style="color: #009900;">&#40;</span> <span style="color: #009900;">&#40;</span>notas<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span><span style="color: #339933;">&lt;</span>primeiraNota<span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #009900;">&#40;</span>notas<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span><span style="color: #339933;">&gt;</span>segundaNota<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">||</span> <span style="color: #009900;">&#40;</span>primeiraNota<span style="color: #339933;">==</span>segundaNota<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span>
        <span style="color: #009900;">&#123;</span>
            segundaNota <span style="color: #339933;">=</span> notas<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
    <span style="color: #009900;">&#125;</span>
	<span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;A segunda maior nota e: %.2f<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">,</span>segundaNota<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #b1b100;">return</span> <span style="color: #0000dd;">0</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>assim que eu tiver um tempo, eu atualizo esse post e disponibilizo a solução em python.</p>
<p>abraço,<br />
até…</p>
<p>Não existem posts relacionados.</p>]]></content:encoded>
			<wfw:commentRss>http://pseudonerd.com/programacao/escreva-um-algoritmo-que-calcule-a-media-ponderada-e-imprima-o-segundo-maior-numero-482/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>escreva um algoritmo que leia três notas, calcule e imprima a média aritmética</title>
		<link>http://pseudonerd.com/programacao/escreva-um-algoritmo-que-leia-tres-notas-calcule-e-imprima-a-media-aritmetica-399</link>
		<comments>http://pseudonerd.com/programacao/escreva-um-algoritmo-que-leia-tres-notas-calcule-e-imprima-a-media-aritmetica-399#comments</comments>
		<pubDate>Sun, 03 May 2009 20:50:02 +0000</pubDate>
		<dc:creator>adlersd</dc:creator>
				<category><![CDATA[c]]></category>
		<category><![CDATA[programação]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[algoritmo]]></category>
		<category><![CDATA[C]]></category>

		<guid isPermaLink="false">http://pseudonerd.com/?p=399</guid>
		<description><![CDATA[escreva um algoritmo que leia três notas, calcule e imprima a média aritmética Continuando com a série de posts, onde vou postar alguns algoritimos resolvidos em linguagem C e também em python. escreva um algoritmo que leia três notas, calcule e imprima a média aritmética. Em C: 1 2 3 4 5 6 7 8 [...]
Não existem posts relacionados.]]></description>
			<content:encoded><![CDATA[<p>escreva um algoritmo que leia três notas, calcule e imprima a média aritmética</p>
<p>Continuando com a série de posts, onde vou postar alguns algoritimos resolvidos em linguagem C e também em python.</p>
<blockquote><p><strong>escreva um algoritmo que leia três notas, calcule e imprima a média aritmética.</strong></p></blockquote>
<p><strong>Em C:</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
</pre></td><td class="code"><pre class="c" style="font-family:monospace;"><span style="color: #339933;">#include &lt;stdio.h&gt;</span>
&nbsp;
<span style="color: #993333;">int</span> main<span style="color: #009900;">&#40;</span><span style="color: #993333;">int</span> argc<span style="color: #339933;">,</span> <span style="color: #993333;">char</span> <span style="color: #339933;">**</span>argv<span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	<span style="color: #993333;">float</span> nota1<span style="color: #339933;">,</span>nota2<span style="color: #339933;">,</span>nota3<span style="color: #339933;">;</span>
	<span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;digite a primeira nota: &quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	scanf<span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;%f&quot;</span><span style="color: #339933;">,&amp;</span>nota1<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;digite a segunda nota: &quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	scanf<span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;%f&quot;</span><span style="color: #339933;">,&amp;</span>nota2<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;digite a terceira nota: &quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	scanf<span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;%f&quot;</span><span style="color: #339933;">,&amp;</span>nota3<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;a media aritmetica e: %f&quot;</span><span style="color: #339933;">,</span><span style="color: #009900;">&#40;</span>nota1<span style="color: #339933;">+</span>nota2<span style="color: #339933;">+</span>nota3<span style="color: #009900;">&#41;</span><span style="color: #339933;">/</span><span style="color: #0000dd;">3</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">return</span> <span style="color: #0000dd;">0</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p><strong>Em Python:</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
</pre></td><td class="code"><pre class="python" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">#!/usr/bin/env python</span>
&nbsp;
<span style="color: #ff7700;font-weight:bold;">def</span> main<span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>:
    nota1 = <span style="color: #008000;">input</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">&quot;digite a primeira nota: &quot;</span><span style="color: black;">&#41;</span>
    nota2 = <span style="color: #008000;">input</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">&quot;digite a segunda nota: &quot;</span><span style="color: black;">&#41;</span>
    nota3 = <span style="color: #008000;">input</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">&quot;digite a terceira nota: &quot;</span><span style="color: black;">&#41;</span>
    <span style="color: #ff7700;font-weight:bold;">print</span> <span style="color: #483d8b;">&quot;a media aritmetica e: &quot;</span>, <span style="color: black;">&#40;</span>nota1+nota2+nota3<span style="color: black;">&#41;</span>/<span style="color: #ff4500;">3</span>
&nbsp;
<span style="color: #ff7700;font-weight:bold;">if</span> __name__ == <span style="color: #483d8b;">&quot;__main__&quot;</span>:
    main<span style="color: black;">&#40;</span><span style="color: black;">&#41;</span></pre></td></tr></table></div>

<p>qualquer dúvida ou se você quiser propor um algoritmo é só deixar um comentário!</p>
<p>abraço,<br />
até&#8230;</p>
<p>Não existem posts relacionados.</p>]]></content:encoded>
			<wfw:commentRss>http://pseudonerd.com/programacao/escreva-um-algoritmo-que-leia-tres-notas-calcule-e-imprima-a-media-aritmetica-399/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>No module named _elementtree</title>
		<link>http://pseudonerd.com/linux/no-module-named-_elementtree-387</link>
		<comments>http://pseudonerd.com/linux/no-module-named-_elementtree-387#comments</comments>
		<pubDate>Mon, 27 Apr 2009 03:37:05 +0000</pubDate>
		<dc:creator>adlersd</dc:creator>
				<category><![CDATA[dicas]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[portage]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://pseudonerd.com/?p=387</guid>
		<description><![CDATA[Após um longo tempo parado, voltaremos a atualizar o blog com mais frequência, o problema abaixo na instalação do pacote x11-libs/libxcb-1.1.90.1: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 [...]
Não existem posts relacionados.]]></description>
			<content:encoded><![CDATA[<p>Após um longo tempo parado, voltaremos a atualizar o blog com mais frequência, o problema abaixo na instalação do pacote <a href="http://packages.gentoo.org/package/x11-libs/libxcb">x11-libs/libxcb-1.1.90.1</a>:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&gt;&gt;&gt;</span> Emerging <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">20</span> of <span style="color: #000000;">62</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> x11-libs<span style="color: #000000; font-weight: bold;">/</span>libxcb-1.1.90.1
 <span style="color: #000000; font-weight: bold;">*</span> libxcb-1.1.90.1.tar.bz2 RMD160 SHA1 SHA256 <span style="color: #c20cb9; font-weight: bold;">size</span> ;-<span style="color: #7a0874; font-weight: bold;">&#41;</span> ...                                                                             <span style="color: #7a0874; font-weight: bold;">&#91;</span> ok <span style="color: #7a0874; font-weight: bold;">&#93;</span>
 <span style="color: #000000; font-weight: bold;">*</span> checking ebuild checksums ;-<span style="color: #7a0874; font-weight: bold;">&#41;</span> ...                                                                                                   <span style="color: #7a0874; font-weight: bold;">&#91;</span> ok <span style="color: #7a0874; font-weight: bold;">&#93;</span>
 <span style="color: #000000; font-weight: bold;">*</span> checking auxfile checksums ;-<span style="color: #7a0874; font-weight: bold;">&#41;</span> ...                                                                                                  <span style="color: #7a0874; font-weight: bold;">&#91;</span> ok <span style="color: #7a0874; font-weight: bold;">&#93;</span>
 <span style="color: #000000; font-weight: bold;">*</span> checking miscfile checksums ;-<span style="color: #7a0874; font-weight: bold;">&#41;</span> ...                                                                                                 <span style="color: #7a0874; font-weight: bold;">&#91;</span> ok <span style="color: #7a0874; font-weight: bold;">&#93;</span>
<span style="color: #000000; font-weight: bold;">&gt;&gt;&gt;</span> Unpacking source...
<span style="color: #000000; font-weight: bold;">&gt;&gt;&gt;</span> Unpacking libxcb-1.1.90.1.tar.bz2 to <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>tmp<span style="color: #000000; font-weight: bold;">/</span>portage<span style="color: #000000; font-weight: bold;">/</span>x11-libs<span style="color: #000000; font-weight: bold;">/</span>libxcb-1.1.90.1<span style="color: #000000; font-weight: bold;">/</span>work
 <span style="color: #000000; font-weight: bold;">*</span> Running elibtoolize <span style="color: #000000; font-weight: bold;">in</span>: libxcb-1.1.90.1
 <span style="color: #000000; font-weight: bold;">*</span>   Applying portage-1.5.10.patch ...
 <span style="color: #000000; font-weight: bold;">*</span>   Applying sed-1.5.6.patch ...
<span style="color: #000000; font-weight: bold;">&gt;&gt;&gt;</span> Source unpacked <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>tmp<span style="color: #000000; font-weight: bold;">/</span>portage<span style="color: #000000; font-weight: bold;">/</span>x11-libs<span style="color: #000000; font-weight: bold;">/</span>libxcb-1.1.90.1<span style="color: #000000; font-weight: bold;">/</span>work
<span style="color: #000000; font-weight: bold;">&gt;&gt;&gt;</span> Compiling <span style="color: #7a0874; font-weight: bold;">source</span> <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>tmp<span style="color: #000000; font-weight: bold;">/</span>portage<span style="color: #000000; font-weight: bold;">/</span>x11-libs<span style="color: #000000; font-weight: bold;">/</span>libxcb-1.1.90.1<span style="color: #000000; font-weight: bold;">/</span>work<span style="color: #000000; font-weight: bold;">/</span>libxcb-1.1.90.1 ...
 <span style="color: #000000; font-weight: bold;">*</span> econf: updating libxcb-1.1.90.1<span style="color: #000000; font-weight: bold;">/</span>config.sub with <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>share<span style="color: #000000; font-weight: bold;">/</span>gnuconfig<span style="color: #000000; font-weight: bold;">/</span>config.sub
 <span style="color: #000000; font-weight: bold;">*</span> econf: updating libxcb-1.1.90.1<span style="color: #000000; font-weight: bold;">/</span>config.guess with <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>share<span style="color: #000000; font-weight: bold;">/</span>gnuconfig<span style="color: #000000; font-weight: bold;">/</span>config.guess
.<span style="color: #000000; font-weight: bold;">/</span>configure <span style="color: #660033;">--prefix</span>=<span style="color: #000000; font-weight: bold;">/</span>usr <span style="color: #660033;">--build</span>=x86_64-pc-linux-gnu <span style="color: #660033;">--host</span>=x86_64-pc-linux-gnu <span style="color: #660033;">--mandir</span>=<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>share<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">man</span> <span style="color: #660033;">--infodir</span>=<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>share<span style="color: #000000; font-weight: bold;">/</span>info <span style="color: #660033;">--datadir</span>=<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>share <span style="color: #660033;">--sysconfdir</span>=<span style="color: #000000; font-weight: bold;">/</span>etc <span style="color: #660033;">--localstatedir</span>=<span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>lib <span style="color: #660033;">--libdir</span>=<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>lib64 <span style="color: #660033;">--prefix</span>=<span style="color: #000000; font-weight: bold;">/</span>usr <span style="color: #660033;">--datadir</span>=<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>share <span style="color: #660033;">--disable-build-docs</span> <span style="color: #660033;">--disable-xselinux</span> <span style="color: #660033;">--enable-xinput</span>
checking <span style="color: #000000; font-weight: bold;">for</span> a BSD-compatible install... <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #660033;">-c</span>
checking whether build environment is sane... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking <span style="color: #000000; font-weight: bold;">for</span> a thread-safe <span style="color: #c20cb9; font-weight: bold;">mkdir</span> -p... <span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #660033;">-p</span>
checking <span style="color: #000000; font-weight: bold;">for</span> gawk... <span style="color: #c20cb9; font-weight: bold;">gawk</span>
checking whether <span style="color: #c20cb9; font-weight: bold;">make</span> sets $<span style="color: #7a0874; font-weight: bold;">&#40;</span>MAKE<span style="color: #7a0874; font-weight: bold;">&#41;</span>... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking <span style="color: #000000; font-weight: bold;">for</span> a Python interpreter with version <span style="color: #000000; font-weight: bold;">&gt;</span>= <span style="color: #000000;">2.5</span>... python
checking <span style="color: #000000; font-weight: bold;">for</span> python... <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>python
checking <span style="color: #000000; font-weight: bold;">for</span> python version... <span style="color: #000000;">2.6</span>
checking <span style="color: #000000; font-weight: bold;">for</span> python platform... linux2
checking <span style="color: #000000; font-weight: bold;">for</span> python script directory... <span style="color: #800000;">${prefix}</span><span style="color: #000000; font-weight: bold;">/</span>lib64<span style="color: #000000; font-weight: bold;">/</span>python2.6<span style="color: #000000; font-weight: bold;">/</span>site-packages
checking <span style="color: #000000; font-weight: bold;">for</span> python extension module directory... <span style="color: #800000;">${exec_prefix}</span><span style="color: #000000; font-weight: bold;">/</span>lib64<span style="color: #000000; font-weight: bold;">/</span>python2.6<span style="color: #000000; font-weight: bold;">/</span>site-packages
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-pkg-config... no
checking <span style="color: #000000; font-weight: bold;">for</span> pkg-config... <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>pkg-config
checking pkg-config is at least version 0.9.0... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking <span style="color: #000000; font-weight: bold;">for</span> CHECK... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking <span style="color: #000000; font-weight: bold;">for</span> style of include used by make... GNU
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-gcc... x86_64-pc-linux-gnu-gcc
checking <span style="color: #000000; font-weight: bold;">for</span> C compiler default output <span style="color: #c20cb9; font-weight: bold;">file</span> name... a.out
checking whether the C compiler works... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking whether we are cross compiling... no
checking <span style="color: #000000; font-weight: bold;">for</span> suffix of executables... 
checking <span style="color: #000000; font-weight: bold;">for</span> suffix of object files... o
checking whether we are using the GNU C compiler... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking whether x86_64-pc-linux-gnu-gcc accepts -g... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-gcc option to accept ISO C89... none needed
checking dependency style of x86_64-pc-linux-gnu-gcc... gcc3
checking <span style="color: #000000; font-weight: bold;">for</span> a <span style="color: #c20cb9; font-weight: bold;">sed</span> that does not truncate output... <span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">sed</span>
checking <span style="color: #000000; font-weight: bold;">for</span> <span style="color: #c20cb9; font-weight: bold;">grep</span> that handles long lines and -e... <span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">grep</span>
checking <span style="color: #000000; font-weight: bold;">for</span> egrep... <span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">grep</span> <span style="color: #660033;">-E</span>
checking <span style="color: #000000; font-weight: bold;">for</span> <span style="color: #c20cb9; font-weight: bold;">ld</span> used by x86_64-pc-linux-gnu-gcc... <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>x86_64-pc-linux-gnu<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">ld</span>
checking <span style="color: #000000; font-weight: bold;">if</span> the linker <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>x86_64-pc-linux-gnu<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">ld</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> is GNU ld... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking <span style="color: #000000; font-weight: bold;">for</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>x86_64-pc-linux-gnu<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">ld</span> option to reload object files... <span style="color: #660033;">-r</span>
checking <span style="color: #000000; font-weight: bold;">for</span> BSD-compatible nm... <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">nm</span> <span style="color: #660033;">-B</span>
checking whether <span style="color: #c20cb9; font-weight: bold;">ln</span> <span style="color: #660033;">-s</span> works... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking how to recognize dependent libraries... pass_all
checking how to run the C preprocessor... x86_64-pc-linux-gnu-gcc <span style="color: #660033;">-E</span>
checking <span style="color: #000000; font-weight: bold;">for</span> ANSI C header files... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking <span style="color: #000000; font-weight: bold;">for</span> sys<span style="color: #000000; font-weight: bold;">/</span>types.h... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking <span style="color: #000000; font-weight: bold;">for</span> sys<span style="color: #000000; font-weight: bold;">/</span>stat.h... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking <span style="color: #000000; font-weight: bold;">for</span> stdlib.h... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking <span style="color: #000000; font-weight: bold;">for</span> string.h... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking <span style="color: #000000; font-weight: bold;">for</span> memory.h... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking <span style="color: #000000; font-weight: bold;">for</span> strings.h... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking <span style="color: #000000; font-weight: bold;">for</span> inttypes.h... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking <span style="color: #000000; font-weight: bold;">for</span> stdint.h... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking <span style="color: #000000; font-weight: bold;">for</span> unistd.h... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking dlfcn.h usability... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking dlfcn.h presence... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking <span style="color: #000000; font-weight: bold;">for</span> dlfcn.h... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-g++... x86_64-pc-linux-gnu-g++
checking whether we are using the GNU C++ compiler... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking whether x86_64-pc-linux-gnu-g++ accepts -g... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking dependency style of x86_64-pc-linux-gnu-g++... gcc3
checking how to run the C++ preprocessor... x86_64-pc-linux-gnu-g++ <span style="color: #660033;">-E</span>
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-g77... no
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-xlf... no
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-f77... no
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-frt... no
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-pgf77... no
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-cf77... no
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-fort77... no
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-fl32... no
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-af77... no
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-xlf90... no
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-f90... no
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-pgf90... no
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-pghpf... no
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-epcf90... no
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-gfortran... no
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-g95... no
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-xlf95... no
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-f95... no
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-fort... no
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-ifort... no
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-ifc... no
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-efc... no
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-pgf95... no
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-lf95... no
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-ftn... no
checking <span style="color: #000000; font-weight: bold;">for</span> g77... no
checking <span style="color: #000000; font-weight: bold;">for</span> xlf... no
checking <span style="color: #000000; font-weight: bold;">for</span> f77... no
checking <span style="color: #000000; font-weight: bold;">for</span> frt... no
checking <span style="color: #000000; font-weight: bold;">for</span> pgf77... no
checking <span style="color: #000000; font-weight: bold;">for</span> cf77... no
checking <span style="color: #000000; font-weight: bold;">for</span> fort77... no
checking <span style="color: #000000; font-weight: bold;">for</span> fl32... no
checking <span style="color: #000000; font-weight: bold;">for</span> af77... no
checking <span style="color: #000000; font-weight: bold;">for</span> xlf90... no
checking <span style="color: #000000; font-weight: bold;">for</span> f90... no
checking <span style="color: #000000; font-weight: bold;">for</span> pgf90... no
checking <span style="color: #000000; font-weight: bold;">for</span> pghpf... no
checking <span style="color: #000000; font-weight: bold;">for</span> epcf90... no
checking <span style="color: #000000; font-weight: bold;">for</span> gfortran... no
checking <span style="color: #000000; font-weight: bold;">for</span> g95... no
checking <span style="color: #000000; font-weight: bold;">for</span> xlf95... no
checking <span style="color: #000000; font-weight: bold;">for</span> f95... no
checking <span style="color: #000000; font-weight: bold;">for</span> fort... no
checking <span style="color: #000000; font-weight: bold;">for</span> ifort... no
checking <span style="color: #000000; font-weight: bold;">for</span> ifc... no
checking <span style="color: #000000; font-weight: bold;">for</span> efc... no
checking <span style="color: #000000; font-weight: bold;">for</span> pgf95... no
checking <span style="color: #000000; font-weight: bold;">for</span> lf95... no
checking <span style="color: #000000; font-weight: bold;">for</span> ftn... no
checking whether we are using the GNU Fortran <span style="color: #000000;">77</span> compiler... no
checking whether  accepts -g... no
checking the maximum length of <span style="color: #7a0874; font-weight: bold;">command</span> line arguments... <span style="color: #000000;">1572864</span>
checking <span style="color: #7a0874; font-weight: bold;">command</span> to parse <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">nm</span> <span style="color: #660033;">-B</span> output from x86_64-pc-linux-gnu-gcc object... ok
checking <span style="color: #000000; font-weight: bold;">for</span> objdir... .libs
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-ar... x86_64-pc-linux-gnu-ar
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-ranlib... x86_64-pc-linux-gnu-ranlib
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-strip... x86_64-pc-linux-gnu-strip
checking <span style="color: #000000; font-weight: bold;">if</span> x86_64-pc-linux-gnu-gcc supports <span style="color: #660033;">-fno-rtti</span> -fno-exceptions... no
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-gcc option to produce PIC... <span style="color: #660033;">-fPIC</span>
checking <span style="color: #000000; font-weight: bold;">if</span> x86_64-pc-linux-gnu-gcc PIC flag <span style="color: #660033;">-fPIC</span> works... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking <span style="color: #000000; font-weight: bold;">if</span> x86_64-pc-linux-gnu-gcc static flag <span style="color: #660033;">-static</span> works... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking <span style="color: #000000; font-weight: bold;">if</span> x86_64-pc-linux-gnu-gcc supports <span style="color: #660033;">-c</span> <span style="color: #660033;">-o</span> file.o... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking whether the x86_64-pc-linux-gnu-gcc linker <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>x86_64-pc-linux-gnu<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">ld</span> <span style="color: #660033;">-m</span> elf_x86_64<span style="color: #7a0874; font-weight: bold;">&#41;</span> supports shared libraries... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking whether <span style="color: #660033;">-lc</span> should be explicitly linked in... no
checking dynamic linker characteristics... GNU<span style="color: #000000; font-weight: bold;">/</span>Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking <span style="color: #000000; font-weight: bold;">if</span> libtool supports shared libraries... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking whether to build shared libraries... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking whether to build static libraries... <span style="color: #c20cb9; font-weight: bold;">yes</span>
configure: creating libtool
appending configuration tag <span style="color: #ff0000;">&quot;CXX&quot;</span> to libtool
checking <span style="color: #000000; font-weight: bold;">for</span> <span style="color: #c20cb9; font-weight: bold;">ld</span> used by x86_64-pc-linux-gnu-g++... <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>x86_64-pc-linux-gnu<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">ld</span> <span style="color: #660033;">-m</span> elf_x86_64
checking <span style="color: #000000; font-weight: bold;">if</span> the linker <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>x86_64-pc-linux-gnu<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">ld</span> <span style="color: #660033;">-m</span> elf_x86_64<span style="color: #7a0874; font-weight: bold;">&#41;</span> is GNU ld... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking whether the x86_64-pc-linux-gnu-g++ linker <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>x86_64-pc-linux-gnu<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">ld</span> <span style="color: #660033;">-m</span> elf_x86_64<span style="color: #7a0874; font-weight: bold;">&#41;</span> supports shared libraries... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-g++ option to produce PIC... <span style="color: #660033;">-fPIC</span>
checking <span style="color: #000000; font-weight: bold;">if</span> x86_64-pc-linux-gnu-g++ PIC flag <span style="color: #660033;">-fPIC</span> works... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking <span style="color: #000000; font-weight: bold;">if</span> x86_64-pc-linux-gnu-g++ static flag <span style="color: #660033;">-static</span> works... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking <span style="color: #000000; font-weight: bold;">if</span> x86_64-pc-linux-gnu-g++ supports <span style="color: #660033;">-c</span> <span style="color: #660033;">-o</span> file.o... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking whether the x86_64-pc-linux-gnu-g++ linker <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>x86_64-pc-linux-gnu<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">ld</span> <span style="color: #660033;">-m</span> elf_x86_64<span style="color: #7a0874; font-weight: bold;">&#41;</span> supports shared libraries... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking dynamic linker characteristics... GNU<span style="color: #000000; font-weight: bold;">/</span>Linux ld.so
<span style="color: #7a0874; font-weight: bold;">&#40;</span>cached<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span>cached<span style="color: #7a0874; font-weight: bold;">&#41;</span> checking how to hardcode library paths into programs... immediate
appending configuration tag <span style="color: #ff0000;">&quot;F77&quot;</span> to libtool
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-gcc... <span style="color: #7a0874; font-weight: bold;">&#40;</span>cached<span style="color: #7a0874; font-weight: bold;">&#41;</span> x86_64-pc-linux-gnu-gcc
checking whether we are using the GNU C compiler... <span style="color: #7a0874; font-weight: bold;">&#40;</span>cached<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking whether x86_64-pc-linux-gnu-gcc accepts -g... <span style="color: #7a0874; font-weight: bold;">&#40;</span>cached<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking <span style="color: #000000; font-weight: bold;">for</span> x86_64-pc-linux-gnu-gcc option to accept ISO C89... <span style="color: #7a0874; font-weight: bold;">&#40;</span>cached<span style="color: #7a0874; font-weight: bold;">&#41;</span> none needed
checking dependency style of x86_64-pc-linux-gnu-gcc... <span style="color: #7a0874; font-weight: bold;">&#40;</span>cached<span style="color: #7a0874; font-weight: bold;">&#41;</span> gcc3
checking <span style="color: #000000; font-weight: bold;">for</span> xsltproc... <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>xsltproc
checking <span style="color: #000000; font-weight: bold;">for</span> XCBPROTO... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking <span style="color: #000000; font-weight: bold;">for</span> NEEDED... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking <span style="color: #000000; font-weight: bold;">for</span> XDMCP... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking <span style="color: #000000; font-weight: bold;">for</span> XdmcpWrap <span style="color: #000000; font-weight: bold;">in</span> -lXdmcp... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking execinfo.h usability... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking execinfo.h presence... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking <span style="color: #000000; font-weight: bold;">for</span> execinfo.h... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking XCBPROTO_XCBINCLUDEDIR... <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>share<span style="color: #000000; font-weight: bold;">/</span>xcb
checking XCBPROTO_XCBPYTHONDIR... <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>lib64<span style="color: #000000; font-weight: bold;">/</span>python2.6<span style="color: #000000; font-weight: bold;">/</span>site-packages
checking <span style="color: #000000; font-weight: bold;">for</span> ANSI C header files... <span style="color: #7a0874; font-weight: bold;">&#40;</span>cached<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking <span style="color: #000000; font-weight: bold;">for</span> library containing getaddrinfo... none required
checking <span style="color: #000000; font-weight: bold;">for</span> library containing connect... none required
checking <span style="color: #000000; font-weight: bold;">for</span> struct sockaddr_un.sun_len... no
checking whether x86_64-pc-linux-gnu-gcc supports symbol visibility... <span style="color: #c20cb9; font-weight: bold;">yes</span>
checking whether documentation is built... no
configure: creating .<span style="color: #000000; font-weight: bold;">/</span>config.status
config.status: creating Makefile
config.status: creating src<span style="color: #000000; font-weight: bold;">/</span>Makefile
config.status: creating tests<span style="color: #000000; font-weight: bold;">/</span>Makefile
config.status: creating doc<span style="color: #000000; font-weight: bold;">/</span>Makefile
config.status: creating xcb.pc
config.status: creating xcb-xlib.pc
config.status: creating xcb-composite.pc
config.status: creating xcb-damage.pc
config.status: creating xcb-dpms.pc
config.status: creating xcb-glx.pc
config.status: creating xcb-randr.pc
config.status: creating xcb-record.pc
config.status: creating xcb-render.pc
config.status: creating xcb-res.pc
config.status: creating xcb-screensaver.pc
config.status: creating xcb-shape.pc
config.status: creating xcb-shm.pc
config.status: creating xcb-sync.pc
config.status: creating xcb-xevie.pc
config.status: creating xcb-xf86dri.pc
config.status: creating xcb-xfixes.pc
config.status: creating xcb-xinerama.pc
config.status: creating xcb-xinput.pc
config.status: creating xcb-xprint.pc
config.status: creating xcb-xselinux.pc
config.status: creating xcb-xtest.pc
config.status: creating xcb-xv.pc
config.status: creating xcb-xvmc.pc
config.status: creating doc<span style="color: #000000; font-weight: bold;">/</span>xcb.doxygen
config.status: creating src<span style="color: #000000; font-weight: bold;">/</span>config.h
config.status: executing depfiles commands
&nbsp;
  Package: libxcb 1.1.90.1
&nbsp;
  Configuration
    XDM support.........: <span style="color: #c20cb9; font-weight: bold;">yes</span>
    Build unit tests....: <span style="color: #c20cb9; font-weight: bold;">yes</span>
&nbsp;
  Used CFLAGS:
    CPPFLAGS............: 
    CFLAGS..............: <span style="color: #660033;">-march</span>=athlon64 <span style="color: #660033;">-O2</span> <span style="color: #660033;">-fomit-frame-pointer</span> <span style="color: #660033;">-pipe</span>
    Warning CFLAGS......: <span style="color: #660033;">-Wall</span> <span style="color: #660033;">-pedantic</span> <span style="color: #660033;">-Wpointer-arith</span> 		<span style="color: #660033;">-Wstrict-prototypes</span> <span style="color: #660033;">-Wmissing-declarations</span> <span style="color: #660033;">-Wnested-externs</span>
&nbsp;
  Installation:
    Prefix..............: <span style="color: #000000; font-weight: bold;">/</span>usr
&nbsp;
<span style="color: #c20cb9; font-weight: bold;">make</span> 
Making all <span style="color: #000000; font-weight: bold;">in</span> src
<span style="color: #c20cb9; font-weight: bold;">make</span><span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">1</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>: Entering directory <span style="color: #000000; font-weight: bold;">`/</span>var<span style="color: #000000; font-weight: bold;">/</span>tmp<span style="color: #000000; font-weight: bold;">/</span>portage<span style="color: #000000; font-weight: bold;">/</span>x11-libs<span style="color: #000000; font-weight: bold;">/</span>libxcb-1.1.90.1<span style="color: #000000; font-weight: bold;">/</span>work<span style="color: #000000; font-weight: bold;">/</span>libxcb-1.1.90.1<span style="color: #000000; font-weight: bold;">/</span>src<span style="color: #ff0000;">'
ln -s -f /usr/share/xcb/xproto.xml xproto.xml
/usr/bin/python ./c_client.py -p /usr/lib64/python2.6/site-packages /usr/share/xcb/xproto.xml
Traceback (most recent call last):
  File &quot;./c_client.py&quot;, line 2, in &lt;module&gt;
    from xml.etree.cElementTree import *
  File &quot;/usr/lib64/python2.6/xml/etree/cElementTree.py&quot;, line 3, in &lt;module&gt;
    from _elementtree import *
ImportError: No module named _elementtree
make[1]: *** [xproto.c] Error 1
make[1]: Leaving directory `/var/tmp/portage/x11-libs/libxcb-1.1.90.1/work/libxcb-1.1.90.1/src'</span>
<span style="color: #c20cb9; font-weight: bold;">make</span>: <span style="color: #000000; font-weight: bold;">***</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>all-recursive<span style="color: #7a0874; font-weight: bold;">&#93;</span> Error <span style="color: #000000;">1</span>
 <span style="color: #000000; font-weight: bold;">*</span> 
 <span style="color: #000000; font-weight: bold;">*</span> ERROR: x11-libs<span style="color: #000000; font-weight: bold;">/</span>libxcb-1.1.90.1 failed.
 <span style="color: #000000; font-weight: bold;">*</span> Call stack:
 <span style="color: #000000; font-weight: bold;">*</span>               ebuild.sh, line   <span style="color: #000000;">48</span>:  Called src_compile
 <span style="color: #000000; font-weight: bold;">*</span>             environment, line <span style="color: #000000;">3095</span>:  Called x-modular_src_compile
 <span style="color: #000000; font-weight: bold;">*</span>             environment, line <span style="color: #000000;">3875</span>:  Called x-modular_src_make
 <span style="color: #000000; font-weight: bold;">*</span>             environment, line <span style="color: #000000;">3914</span>:  Called die
 <span style="color: #000000; font-weight: bold;">*</span> The specific snippet of code:
 <span style="color: #000000; font-weight: bold;">*</span>       emake <span style="color: #000000; font-weight: bold;">||</span> die <span style="color: #ff0000;">&quot;emake failed&quot;</span>
 <span style="color: #000000; font-weight: bold;">*</span>  The die message:
 <span style="color: #000000; font-weight: bold;">*</span>   emake failed
 <span style="color: #000000; font-weight: bold;">*</span> 
 <span style="color: #000000; font-weight: bold;">*</span> If you need support, post the topmost build error, and the call stack <span style="color: #000000; font-weight: bold;">if</span> relevant.
 <span style="color: #000000; font-weight: bold;">*</span> A <span style="color: #7a0874; font-weight: bold;">complete</span> build log is located at <span style="color: #ff0000;">'/var/tmp/portage/x11-libs/libxcb-1.1.90.1/temp/build.log'</span>.
 <span style="color: #000000; font-weight: bold;">*</span> The ebuild environment <span style="color: #c20cb9; font-weight: bold;">file</span> is located at <span style="color: #ff0000;">'/var/tmp/portage/x11-libs/libxcb-1.1.90.1/temp/environment'</span>.
 <span style="color: #000000; font-weight: bold;">*</span> 
&nbsp;
<span style="color: #000000; font-weight: bold;">&gt;&gt;&gt;</span> Failed to emerge x11-libs<span style="color: #000000; font-weight: bold;">/</span>libxcb-1.1.90.1, Log <span style="color: #c20cb9; font-weight: bold;">file</span>:
&nbsp;
<span style="color: #000000; font-weight: bold;">&gt;&gt;&gt;</span>  <span style="color: #ff0000;">'/var/tmp/portage/x11-libs/libxcb-1.1.90.1/temp/build.log'</span></pre></td></tr></table></div>

<p>para resolver é só você recompilar o python com suporte a xml:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #007800;">USE</span>=<span style="color: #ff0000;">&quot;xml&quot;</span> emerge dev-lang<span style="color: #000000; font-weight: bold;">/</span>python</pre></td></tr></table></div>

<p>abraço,<br />
até&#8230;</p>
<p>Não existem posts relacionados.</p>]]></content:encoded>
			<wfw:commentRss>http://pseudonerd.com/linux/no-module-named-_elementtree-387/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

