Ticket #1073: configure.log

File configure.log, 118.7 KB (added by eternalsword@…, 18 years ago)

The configure log

Line 
1configuration:
2
3============ Checking for cc version ============
4Result is: 4.2.3, ok
5##########################################
6
7============ Checking for host cc ============
8Result is: cc
9##########################################
10
11============ Checking for cross compilation ============
12
13int main(void) { return 0; }
14
15cc -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
16
17
18Result is: no
19##########################################
20
21============ Checking for CPU type ============
22Result is: 750CXe
23##########################################
24
25============ Checking for GCC & CPU optimization abilities ============
26Result is: none
27##########################################
28
29============ Checking for extern symbol prefix ============
30
31int ff_extern;
32
33cc -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -c
34
35
36Result is:
37##########################################
38
39============ Checking for assembler support of -pipe option ============
40
41int main(void) { return 0; }
42
43cc -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -pipe
44
45
46Result is: yes
47##########################################
48
49============ Checking for compiler support of named assembler arguments ============
50Result is: yes
51##########################################
52
53============ Checking for .align is a power of two ============
54
55main(void) { asm (".align 3"); }
56
57cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
58/tmp/mplayer-conf-20438-22906.c:1: warning: return type defaults to 'int'
59/tmp/mplayer-conf-20438-22906.c: In function 'main':
60/tmp/mplayer-conf-20438-22906.c:1: warning: control reaches end of non-void function
61
62
63Result is: yes
64##########################################
65
66============ Checking for -lposix ============
67
68int main(void) { return 0; }
69
70cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lposix
71/usr/bin/ld: cannot find -lposix
72collect2: ld returned 1 exit status
73
74
75Result is: no
76##########################################
77
78============ Checking for -lm ============
79
80int main(void) { return 0; }
81
82cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lm
83
84
85Result is: yes
86##########################################
87
88============ Checking for langinfo ============
89
90#include <langinfo.h>
91int main(void) { nl_langinfo(CODESET); return 0; }
92
93cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
94
95
96Result is: yes
97##########################################
98
99============ Checking for language ============
100Result is: using en (man pages: en )
101##########################################
102
103============ Checking for enable sighandler ============
104Result is: yes
105##########################################
106
107============ Checking for runtime cpudetection ============
108Result is: no
109##########################################
110
111============ Checking for restrict keyword ============
112
113void foo(char * restrict p); int main(void){}
114
115cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
116/tmp/mplayer-conf-20438-22906.c:1: error: expected ';', ',' or ')' before 'p'
117
118
119
120void foo(char * __restrict p); int main(void){}
121
122cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
123/tmp/mplayer-conf-20438-22906.c: In function 'main':
124/tmp/mplayer-conf-20438-22906.c:1: warning: control reaches end of non-void function
125
126
127Result is: __restrict
128##########################################
129
130============ Checking for __builtin_expect ============
131
132int foo (int a) {
133 a = __builtin_expect (a, 10);
134 return a == 10 ? 0 : 1;
135}
136int main(void) { return foo(10) && foo(0); }
137
138cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
139
140
141Result is: yes
142##########################################
143
144============ Checking for kstat ============
145
146#include <kstat.h>
147int main(void) { (void) kstat_open(); (void) kstat_close(0); return 0; }
148
149cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lkstat
150/tmp/mplayer-conf-20438-22906.c:1:19: error: kstat.h: No such file or directory
151/tmp/mplayer-conf-20438-22906.c: In function 'main':
152/tmp/mplayer-conf-20438-22906.c:2: warning: implicit declaration of function 'kstat_open'
153/tmp/mplayer-conf-20438-22906.c:2: warning: implicit declaration of function 'kstat_close'
154
155
156Result is: no
157##########################################
158
159============ Checking for posix4 ============
160
161#include <time.h>
162int main(void) { (void) nanosleep(0, 0); return 0; }
163
164cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lposix4
165/usr/bin/ld: cannot find -lposix4
166collect2: ld returned 1 exit status
167
168
169Result is: no
170##########################################
171
172============ Checking for llrint ============
173
174#include <math.h>
175int main(void) { long (*foo)(float); foo = llrint; (void)(*foo)(0.0); return 0; }
176
177cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -D_ISOC99_SOURCE -lm
178/tmp/mplayer-conf-20438-22906.c: In function 'main':
179/tmp/mplayer-conf-20438-22906.c:2: warning: assignment from incompatible pointer type
180
181
182Result is: yes
183##########################################
184
185============ Checking for lrint ============
186
187#include <math.h>
188int main(void) { long (*foo)(float); foo = lrint; (void)(*foo)(0.0); return 0; }
189
190cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -D_ISOC99_SOURCE -lm
191/tmp/mplayer-conf-20438-22906.c: In function 'main':
192/tmp/mplayer-conf-20438-22906.c:2: warning: assignment from incompatible pointer type
193
194
195Result is: yes
196##########################################
197
198============ Checking for lrintf ============
199
200#include <math.h>
201int main(void) { long (*foo)(float); foo = lrintf; (void)(*foo)(0.0); return 0; }
202
203cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -D_ISOC99_SOURCE -lm
204
205
206Result is: yes
207##########################################
208
209============ Checking for round ============
210
211#include <math.h>
212int main(void) { long (*foo)(float); foo = round; (void)(*foo)(0.0); return 0; }
213
214cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -D_ISOC99_SOURCE -lm
215/tmp/mplayer-conf-20438-22906.c: In function 'main':
216/tmp/mplayer-conf-20438-22906.c:2: warning: assignment from incompatible pointer type
217
218
219Result is: yes
220##########################################
221
222============ Checking for roundf ============
223
224#include <math.h>
225int main(void) { long (*foo)(float); foo = roundf; (void)(*foo)(0.0); return 0; }
226
227cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -D_ISOC99_SOURCE -lm
228/tmp/mplayer-conf-20438-22906.c: In function 'main':
229/tmp/mplayer-conf-20438-22906.c:2: warning: assignment from incompatible pointer type
230
231
232Result is: yes
233##########################################
234
235============ Checking for mkstemp ============
236
237#include <stdlib.h>
238int main(void) { char a; mkstemp(&a); return 0; }
239
240cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
241
242
243Result is: yes
244##########################################
245
246============ Checking for nanosleep ============
247
248#include <time.h>
249int main(void) { (void) nanosleep(0, 0); return 0; }
250
251cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
252
253
254Result is: yes
255##########################################
256
257============ Checking for socklib ============
258
259#include <netdb.h>
260#include <sys/socket.h>
261int main(void) { (void) gethostbyname(0); (void) socket(AF_INET, SOCK_STREAM, 0); return 0; }
262
263cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
264
265
266
267#include <winsock2.h>
268int main(void) { (void) gethostbyname(0); return 0; }
269
270cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lws2_32
271/tmp/mplayer-conf-20438-22906.c:1:22: error: winsock2.h: No such file or directory
272/tmp/mplayer-conf-20438-22906.c: In function 'main':
273/tmp/mplayer-conf-20438-22906.c:2: warning: implicit declaration of function 'gethostbyname'
274
275
276Result is: yes
277##########################################
278
279============ Checking for inet_pton() ============
280
281#include <sys/types.h>
282#include <sys/socket.h>
283#include <arpa/inet.h>
284int main(void) { (void) inet_pton(0, 0, 0); return 0; }
285
286cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
287
288
289Result is: yes (using )
290##########################################
291
292============ Checking for network ============
293Result is: yes
294##########################################
295
296============ Checking for inttypes.h (required) ============
297
298#include <inttypes.h>
299int main(void) { return 0; }
300
301cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
302
303
304Result is: yes
305##########################################
306
307============ Checking for int_fastXY_t in inttypes.h ============
308
309#include <inttypes.h>
310int main(void) {
311volatile int_fast16_t v= 0;
312return v; }
313
314cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
315
316
317Result is: yes
318##########################################
319
320============ Checking for word size ============
321
322#include <stdio.h>
323#include <sys/types.h>
324int main(void) { printf("%d\n", sizeof(size_t)*8); return 0; }
325
326cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
327
328
329Result is: 32
330##########################################
331
332============ Checking for malloc.h ============
333
334#include <malloc.h>
335int main(void) { (void) malloc(0); return 0; }
336
337cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
338
339
340Result is: yes
341##########################################
342
343============ Checking for memalign() ============
344
345#include <malloc.h>
346int main (void) { (void) memalign(64, sizeof(char)); return 0; }
347
348cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
349
350
351Result is: yes
352##########################################
353
354============ Checking for alloca.h ============
355
356#include <alloca.h>
357int main(void) { (void) alloca(0); return 0; }
358
359cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
360
361
362
363#include <alloca.h>
364int main(void) { (void) alloca(0); return 0; }
365
366cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
367
368
369Result is: yes
370##########################################
371
372============ Checking for byteswap.h ============
373
374#include <byteswap.h>
375int main(void) { bswap_16(0); return 0; }
376
377cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
378
379
380
381#include <byteswap.h>
382int main(void) { bswap_16(0); return 0; }
383
384cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
385
386
387Result is: yes
388##########################################
389
390============ Checking for mman.h ============
391
392#include <sys/types.h>
393#include <sys/mman.h>
394int main(void) { (void) mmap(0, 0, 0, 0, 0, 0); return 0; }
395
396cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
397
398
399Result is: yes
400##########################################
401
402
403#include <sys/types.h>
404#include <sys/mman.h>
405int main(void) { void *p = MAP_FAILED; return 0; }
406
407cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
408/tmp/mplayer-conf-20438-22906.c: In function 'main':
409/tmp/mplayer-conf-20438-22906.c:3: warning: unused variable 'p'
410
411
412============ Checking for dynamic loader ============
413
414#include <dlfcn.h>
415int main(void) { dlopen(0, 0); dlclose(0); dlsym(0, 0); return 0; }
416
417cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
418/tmp/mplayer-conf-20438-22906.c: In function 'main':
419/tmp/mplayer-conf-20438-22906.c:2: warning: null argument where non-null required (argument 1)
420/tmp/mplayer-conf-20438-22906.c:2: warning: null argument where non-null required (argument 2)
421/tmp/ccos7GZl.o: In function `main':
422mplayer-conf-20438-22906.c:(.text+0x14): undefined reference to `dlopen'
423mplayer-conf-20438-22906.c:(.text+0x1c): undefined reference to `dlclose'
424mplayer-conf-20438-22906.c:(.text+0x28): undefined reference to `dlsym'
425collect2: ld returned 1 exit status
426
427
428
429#include <dlfcn.h>
430int main(void) { dlopen(0, 0); dlclose(0); dlsym(0, 0); return 0; }
431
432cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -ldl
433/tmp/mplayer-conf-20438-22906.c: In function 'main':
434/tmp/mplayer-conf-20438-22906.c:2: warning: null argument where non-null required (argument 1)
435/tmp/mplayer-conf-20438-22906.c:2: warning: null argument where non-null required (argument 2)
436
437
438Result is: yes
439##########################################
440
441============ Checking for dynamic a/v plugins support ============
442Result is: no
443##########################################
444
445============ Checking for pthread ============
446
447#include <pthread.h>
448void* func(void *arg) { return arg; }
449int main(void) { pthread_t tid; return pthread_create (&tid, 0, func, 0) == 0 ? 0 : 1; }
450
451cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lpthreadGC2
452/usr/bin/ld: cannot find -lpthreadGC2
453collect2: ld returned 1 exit status
454
455
456
457#include <pthread.h>
458void* func(void *arg) { return arg; }
459int main(void) { pthread_t tid; return pthread_create (&tid, 0, func, 0) == 0 ? 0 : 1; }
460
461cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
462/tmp/ccMO88wu.o: In function `main':
463mplayer-conf-20438-22906.c:(.text+0x30): undefined reference to `pthread_create'
464collect2: ld returned 1 exit status
465
466
467
468#include <pthread.h>
469void* func(void *arg) { return arg; }
470int main(void) { pthread_t tid; return pthread_create (&tid, 0, func, 0) == 0 ? 0 : 1; }
471
472cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lpthread
473
474
475Result is: yes (using -lpthread)
476##########################################
477
478============ Checking for w32threads ============
479Result is: no (using pthread instead)
480##########################################
481
482============ Checking for rpath ============
483Result is: no
484##########################################
485
486============ Checking for iconv ============
487
488#include <stdio.h>
489#include <unistd.h>
490#include <iconv.h>
491#define INBUFSIZE 1024
492#define OUTBUFSIZE 4096
493
494char inbuffer[INBUFSIZE];
495char outbuffer[OUTBUFSIZE];
496
497int main(void) {
498 size_t numread;
499 iconv_t icdsc;
500 char *tocode="UTF-8";
501 char *fromcode="cp1250";
502 if ((icdsc = iconv_open (tocode, fromcode)) != (iconv_t)(-1)) {
503 while ((numread = read (0, inbuffer, INBUFSIZE))) {
504 char *iptr=inbuffer;
505 char *optr=outbuffer;
506 size_t inleft=numread;
507 size_t outleft=OUTBUFSIZE;
508 if (iconv(icdsc, (const char **)&iptr, &inleft, &optr, &outleft)
509 != (size_t)(-1)) {
510 write (1, outbuffer, OUTBUFSIZE - outleft);
511 }
512 }
513 if (iconv_close(icdsc) == -1)
514 ;
515 }
516}
517
518cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lm
519/tmp/mplayer-conf-20438-22906.c: In function 'main':
520/tmp/mplayer-conf-20438-22906.c:21: warning: passing argument 2 of 'iconv' from incompatible pointer type
521/tmp/mplayer-conf-20438-22906.c:29: warning: control reaches end of non-void function
522
523
524Result is: yes
525##########################################
526
527============ Checking for soundcard.h ============
528
529#include <sys/soundcard.h>
530int main(void) { return 0; }
531
532cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
533
534
535Result is: yes (sys/soundcard.h)
536##########################################
537
538============ Checking for sys/dvdio.h ============
539
540#include <unistd.h>
541#include <sys/dvdio.h>
542int main(void) { return 0; }
543
544cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
545/tmp/mplayer-conf-20438-22906.c:2:23: error: sys/dvdio.h: No such file or directory
546
547
548Result is: no
549##########################################
550
551============ Checking for sys/cdio.h ============
552
553#include <unistd.h>
554#include <sys/cdio.h>
555int main(void) { return 0; }
556
557cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
558/tmp/mplayer-conf-20438-22906.c:2:22: error: sys/cdio.h: No such file or directory
559
560
561Result is: no
562##########################################
563
564============ Checking for linux/cdrom.h ============
565
566#include <sys/types.h>
567#include <linux/cdrom.h>
568int main(void) { return 0; }
569
570cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
571
572
573Result is: yes
574##########################################
575
576============ Checking for dvd.h ============
577
578#include <dvd.h>
579int main(void) { return 0; }
580
581cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
582/tmp/mplayer-conf-20438-22906.c:1:17: error: dvd.h: No such file or directory
583
584
585Result is: no
586##########################################
587
588============ Checking for termcap ============
589
590int main(void) { tgetent(); return 0; }
591
592cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lncurses
593/tmp/mplayer-conf-20438-22906.c: In function 'main':
594/tmp/mplayer-conf-20438-22906.c:1: warning: implicit declaration of function 'tgetent'
595/usr/bin/ld: cannot find -lncurses
596collect2: ld returned 1 exit status
597
598
599
600int main(void) { tgetent(); return 0; }
601
602cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -ltinfo
603/tmp/mplayer-conf-20438-22906.c: In function 'main':
604/tmp/mplayer-conf-20438-22906.c:1: warning: implicit declaration of function 'tgetent'
605/usr/bin/ld: cannot find -ltinfo
606collect2: ld returned 1 exit status
607
608
609
610int main(void) { tgetent(); return 0; }
611
612cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -ltermcap
613/tmp/mplayer-conf-20438-22906.c: In function 'main':
614/tmp/mplayer-conf-20438-22906.c:1: warning: implicit declaration of function 'tgetent'
615/usr/bin/ld: cannot find -ltermcap
616collect2: ld returned 1 exit status
617
618
619Result is: no
620##########################################
621
622============ Checking for termios ============
623
624#include <sys/termios.h>
625int main(void) { return 0; }
626
627cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
628
629
630Result is: yes (sys/termios.h)
631##########################################
632
633============ Checking for shm ============
634
635#include <sys/types.h>
636#include <sys/shm.h>
637int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; }
638
639cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
640
641
642Result is: yes
643##########################################
644
645============ Checking for strsep() ============
646
647#include <string.h>
648int main (void) { char *s = "Hello, world!"; (void) strsep(&s, ","); return 0; }
649
650cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
651
652
653Result is: yes
654##########################################
655
656============ Checking for vsscanf() ============
657
658#include <stdarg.h>
659int main(void) { vsscanf(0, 0, 0); return 0; }
660
661cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
662/tmp/mplayer-conf-20438-22906.c: In function 'main':
663/tmp/mplayer-conf-20438-22906.c:2: warning: implicit declaration of function 'vsscanf'
664/tmp/mplayer-conf-20438-22906.c:2: warning: too many arguments for format
665
666
667Result is: yes
668##########################################
669
670============ Checking for swab() ============
671
672#include <unistd.h>
673int main(void) { swab(0, 0, 0); return 0; }
674
675cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
676/tmp/mplayer-conf-20438-22906.c: In function 'main':
677/tmp/mplayer-conf-20438-22906.c:2: warning: implicit declaration of function 'swab'
678
679
680Result is: yes
681##########################################
682
683============ Checking for POSIX select() ============
684
685#include <stdio.h>
686#include <stdlib.h>
687#include <sys/types.h>
688#include <string.h>
689#include <sys/time.h>
690#include <unistd.h>
691int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds,&readfds,NULL,NULL,&timeout); return 0; }
692
693cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
694
695
696Result is: yes
697##########################################
698
699============ Checking for gettimeofday() ============
700
701#include <stdio.h>
702#include <sys/time.h>
703int main(void) {struct timeval tv_start; gettimeofday(&tv_start, NULL); return 0; }
704
705cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
706
707
708Result is: yes
709##########################################
710
711============ Checking for glob() ============
712
713#include <stdio.h>
714#include <glob.h>
715int main(void) { glob_t gg; glob("filename",0,NULL,&gg); return 0; }
716
717cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
718
719
720Result is: yes
721##########################################
722
723============ Checking for setenv() ============
724
725#include <stdlib.h>
726int main (void){ setenv("","",0); return 0; }
727
728cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
729
730
731Result is: yes
732##########################################
733
734============ Checking for sys/sysinfo.h ============
735
736#include <sys/sysinfo.h>
737int main(void) {
738 struct sysinfo s_info;
739 sysinfo(&s_info);
740 return 0;
741}
742
743cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
744
745
746Result is: yes
747##########################################
748
749============ Checking for pkg-config ============
750Result is: yes
751##########################################
752
753============ Checking for Samba support (libsmbclient) ============
754
755#include <libsmbclient.h>
756int main(void) { smbc_opendir("smb://"); return 0; }
757
758cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lsmbclient
759/tmp/mplayer-conf-20438-22906.c:1:26: error: libsmbclient.h: No such file or directory
760/tmp/mplayer-conf-20438-22906.c: In function 'main':
761/tmp/mplayer-conf-20438-22906.c:2: warning: implicit declaration of function 'smbc_opendir'
762
763
764
765#include <libsmbclient.h>
766int main(void) { smbc_opendir("smb://"); return 0; }
767
768cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lsmbclient -ldl
769/tmp/mplayer-conf-20438-22906.c:1:26: error: libsmbclient.h: No such file or directory
770/tmp/mplayer-conf-20438-22906.c: In function 'main':
771/tmp/mplayer-conf-20438-22906.c:2: warning: implicit declaration of function 'smbc_opendir'
772
773
774
775#include <libsmbclient.h>
776int main(void) { smbc_opendir("smb://"); return 0; }
777
778cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lsmbclient -ldl -lnsl
779/tmp/mplayer-conf-20438-22906.c:1:26: error: libsmbclient.h: No such file or directory
780/tmp/mplayer-conf-20438-22906.c: In function 'main':
781/tmp/mplayer-conf-20438-22906.c:2: warning: implicit declaration of function 'smbc_opendir'
782
783
784
785#include <libsmbclient.h>
786int main(void) { smbc_opendir("smb://"); return 0; }
787
788cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lsmbclient -ldl -lssl -lnsl
789/tmp/mplayer-conf-20438-22906.c:1:26: error: libsmbclient.h: No such file or directory
790/tmp/mplayer-conf-20438-22906.c: In function 'main':
791/tmp/mplayer-conf-20438-22906.c:2: warning: implicit declaration of function 'smbc_opendir'
792
793
794Result is: no
795##########################################
796
797============ Checking for tdfxfb ============
798Result is: no
799##########################################
800
801============ Checking for s3fb ============
802Result is: no
803##########################################
804
805============ Checking for tdfxvid ============
806Result is: no
807##########################################
808
809============ Checking for xvr100 ============
810
811#include <unistd.h>
812#include <sys/fbio.h>
813#include <sys/visual_io.h>
814int main(void) {
815struct vis_identifier ident;
816struct fbgattr attr;
817
818ioctl(0, VIS_GETIDENTIFIER, &ident);
819ioctl(0, FBIOGATTR, &attr);
820}
821
822cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
823/tmp/mplayer-conf-20438-22906.c:2:22: error: sys/fbio.h: No such file or directory
824/tmp/mplayer-conf-20438-22906.c:3:27: error: sys/visual_io.h: No such file or directory
825/tmp/mplayer-conf-20438-22906.c: In function 'main':
826/tmp/mplayer-conf-20438-22906.c:5: error: storage size of 'ident' isn't known
827/tmp/mplayer-conf-20438-22906.c:6: error: storage size of 'attr' isn't known
828/tmp/mplayer-conf-20438-22906.c:8: warning: implicit declaration of function 'ioctl'
829/tmp/mplayer-conf-20438-22906.c:8: error: 'VIS_GETIDENTIFIER' undeclared (first use in this function)
830/tmp/mplayer-conf-20438-22906.c:8: error: (Each undeclared identifier is reported only once
831/tmp/mplayer-conf-20438-22906.c:8: error: for each function it appears in.)
832/tmp/mplayer-conf-20438-22906.c:9: error: 'FBIOGATTR' undeclared (first use in this function)
833/tmp/mplayer-conf-20438-22906.c:6: warning: unused variable 'attr'
834/tmp/mplayer-conf-20438-22906.c:5: warning: unused variable 'ident'
835
836
837Result is: no
838##########################################
839
840============ Checking for tga ============
841Result is: yes
842##########################################
843
844============ Checking for md5sum support ============
845Result is: yes
846##########################################
847
848============ Checking for bl ============
849Result is: no
850##########################################
851
852============ Checking for DirectFB ============
853
854#include <directfb.h>
855int main(void) { IDirectFB *foo; DirectFBInit(0,0); return 0; }
856
857cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -ldirectfb
858/tmp/mplayer-conf-20438-22906.c:1:22: error: directfb.h: No such file or directory
859/tmp/mplayer-conf-20438-22906.c: In function 'main':
860/tmp/mplayer-conf-20438-22906.c:2: error: 'IDirectFB' undeclared (first use in this function)
861/tmp/mplayer-conf-20438-22906.c:2: error: (Each undeclared identifier is reported only once
862/tmp/mplayer-conf-20438-22906.c:2: error: for each function it appears in.)
863/tmp/mplayer-conf-20438-22906.c:2: error: 'foo' undeclared (first use in this function)
864/tmp/mplayer-conf-20438-22906.c:2: warning: implicit declaration of function 'DirectFBInit'
865
866
867
868#include <directfb.h>
869int main(void) { IDirectFB *foo; DirectFBInit(0,0); return 0; }
870
871cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -I/usr/local/include/directfb -ldirectfb
872/tmp/mplayer-conf-20438-22906.c:1:22: error: directfb.h: No such file or directory
873/tmp/mplayer-conf-20438-22906.c: In function 'main':
874/tmp/mplayer-conf-20438-22906.c:2: error: 'IDirectFB' undeclared (first use in this function)
875/tmp/mplayer-conf-20438-22906.c:2: error: (Each undeclared identifier is reported only once
876/tmp/mplayer-conf-20438-22906.c:2: error: for each function it appears in.)
877/tmp/mplayer-conf-20438-22906.c:2: error: 'foo' undeclared (first use in this function)
878/tmp/mplayer-conf-20438-22906.c:2: warning: implicit declaration of function 'DirectFBInit'
879
880
881
882#include <directfb.h>
883int main(void) { IDirectFB *foo; DirectFBInit(0,0); return 0; }
884
885cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -I/usr/include/directfb -ldirectfb
886/tmp/mplayer-conf-20438-22906.c:1:22: error: directfb.h: No such file or directory
887/tmp/mplayer-conf-20438-22906.c: In function 'main':
888/tmp/mplayer-conf-20438-22906.c:2: error: 'IDirectFB' undeclared (first use in this function)
889/tmp/mplayer-conf-20438-22906.c:2: error: (Each undeclared identifier is reported only once
890/tmp/mplayer-conf-20438-22906.c:2: error: for each function it appears in.)
891/tmp/mplayer-conf-20438-22906.c:2: error: 'foo' undeclared (first use in this function)
892/tmp/mplayer-conf-20438-22906.c:2: warning: implicit declaration of function 'DirectFBInit'
893
894
895
896#include <directfb.h>
897int main(void) { IDirectFB *foo; DirectFBInit(0,0); return 0; }
898
899cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -I/usr/local/include -ldirectfb
900/tmp/mplayer-conf-20438-22906.c:1:22: error: directfb.h: No such file or directory
901/tmp/mplayer-conf-20438-22906.c: In function 'main':
902/tmp/mplayer-conf-20438-22906.c:2: error: 'IDirectFB' undeclared (first use in this function)
903/tmp/mplayer-conf-20438-22906.c:2: error: (Each undeclared identifier is reported only once
904/tmp/mplayer-conf-20438-22906.c:2: error: for each function it appears in.)
905/tmp/mplayer-conf-20438-22906.c:2: error: 'foo' undeclared (first use in this function)
906/tmp/mplayer-conf-20438-22906.c:2: warning: implicit declaration of function 'DirectFBInit'
907
908
909Result is: no
910##########################################
911
912============ Checking for X11 headers presence ============
913Result is: yes
914##########################################
915
916============ Checking for X11 ============
917
918#include <X11/Xlib.h>
919#include <X11/Xutil.h>
920int main(void) { (void) XCreateWindow(0,0,0,0,0,0,0,0,0,0,0,0); return 0; }
921
922cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lXext -lX11 -lpthread
923
924
925Result is: yes
926##########################################
927
928============ Checking for Xss screensaver extensions ============
929
930#include <X11/Xlib.h>
931#include <X11/extensions/scrnsaver.h>
932int main(void) {
933 XScreenSaverSuspend(NULL, True);
934 return 0;
935}
936
937cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lXext -lX11 -lpthread -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lXss
938/tmp/mplayer-conf-20438-22906.c:2:38: error: X11/extensions/scrnsaver.h: No such file or directory
939/tmp/mplayer-conf-20438-22906.c: In function 'main':
940/tmp/mplayer-conf-20438-22906.c:4: warning: implicit declaration of function 'XScreenSaverSuspend'
941
942
943Result is: no
944##########################################
945
946============ Checking for DPMS ============
947
948#include <X11/Xmd.h>
949#include <X11/Xlib.h>
950#include <X11/Xutil.h>
951#include <X11/Xatom.h>
952#include <X11/extensions/dpms.h>
953int main(void) {
954 (void) DPMSQueryExtension(0, 0, 0);
955}
956
957cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lXext -lX11 -lpthread -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lXdpms
958/tmp/mplayer-conf-20438-22906.c: In function 'main':
959/tmp/mplayer-conf-20438-22906.c:8: warning: control reaches end of non-void function
960/usr/bin/ld: cannot find -lXdpms
961collect2: ld returned 1 exit status
962
963
964
965#include <X11/Xlib.h>
966#include <X11/extensions/dpms.h>
967int main(void) {
968 (void) DPMSQueryExtension(0, 0, 0);
969}
970
971cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lXext -lX11 -lpthread -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lXext
972/tmp/mplayer-conf-20438-22906.c: In function 'main':
973/tmp/mplayer-conf-20438-22906.c:5: warning: control reaches end of non-void function
974
975
976Result is: yes (using Xdpms 4)
977##########################################
978
979============ Checking for Xv ============
980
981#include <X11/Xlib.h>
982#include <X11/extensions/Xvlib.h>
983int main(void) {
984 (void) XvGetPortAttribute(0, 0, 0, 0);
985 (void) XvQueryPortAttributes(0, 0, 0);
986 return 0; }
987
988cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lXext -lX11 -lpthread -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lXv
989
990
991Result is: yes
992##########################################
993
994============ Checking for XvMC ============
995Result is: no
996##########################################
997
998============ Checking for Xinerama ============
999
1000#include <X11/Xlib.h>
1001#include <X11/extensions/Xinerama.h>
1002int main(void) { (void) XineramaIsActive(0); return 0; }
1003
1004cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lXext -lX11 -lpthread -lXv -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lXinerama
1005/tmp/mplayer-conf-20438-22906.c:2:37: error: X11/extensions/Xinerama.h: No such file or directory
1006/tmp/mplayer-conf-20438-22906.c: In function 'main':
1007/tmp/mplayer-conf-20438-22906.c:3: warning: implicit declaration of function 'XineramaIsActive'
1008
1009
1010Result is: no
1011##########################################
1012
1013============ Checking for Xxf86vm ============
1014
1015#include <X11/Xlib.h>
1016#include <X11/extensions/xf86vmode.h>
1017int main(void) { (void) XF86VidModeQueryExtension(0, 0, 0); return 0; }
1018
1019cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lXext -lX11 -lpthread -lXv -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lXxf86vm
1020/tmp/mplayer-conf-20438-22906.c:2:38: error: X11/extensions/xf86vmode.h: No such file or directory
1021/tmp/mplayer-conf-20438-22906.c: In function 'main':
1022/tmp/mplayer-conf-20438-22906.c:3: warning: implicit declaration of function 'XF86VidModeQueryExtension'
1023
1024
1025Result is: no
1026##########################################
1027
1028============ Checking for XF86keysym ============
1029
1030#include <X11/Xlib.h>
1031#include <X11/XF86keysym.h>
1032int main(void) { return XF86XK_AudioPause; }
1033
1034cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lXext -lX11 -lpthread -lXv -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
1035
1036
1037Result is: yes
1038##########################################
1039
1040============ Checking for DGA ============
1041
1042#include <X11/Xlib.h>
1043#include <X11/extensions/xf86dga.h>
1044int main (void) { (void) XDGASetViewport(0, 0, 0, 0, 0); return 0; }
1045
1046cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lXext -lX11 -lpthread -lXv -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lXxf86dga
1047/tmp/mplayer-conf-20438-22906.c:2:36: error: X11/extensions/xf86dga.h: No such file or directory
1048/tmp/mplayer-conf-20438-22906.c: In function 'main':
1049/tmp/mplayer-conf-20438-22906.c:3: warning: implicit declaration of function 'XDGASetViewport'
1050
1051
1052Result is: no
1053##########################################
1054
1055============ Checking for 3dfx ============
1056Result is: no
1057##########################################
1058
1059============ Checking for OpenGL ============
1060
1061#include <GL/gl.h>
1062#ifdef GL_WIN32
1063#include <windows.h>
1064#include <GL/glext.h>
1065#else
1066#include <X11/Xlib.h>
1067#include <GL/glx.h>
1068#endif
1069int main(void) {
1070#ifdef GL_WIN32
1071 HDC dc;
1072 wglCreateContext(dc);
1073#else
1074 glXCreateContext(NULL, NULL, NULL, True);
1075#endif
1076 glFinish();
1077 return 0;
1078}
1079
1080cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lXext -lX11 -lpthread -lXv -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lGL -lm
1081
1082
1083Result is: yes
1084##########################################
1085
1086============ Checking for VIDIX ============
1087Result is: yes (internal)
1088##########################################
1089
1090============ Checking for VIDIX PCI device name database ============
1091Result is: yes
1092##########################################
1093
1094============ Checking for /dev/mga_vid ============
1095Result is: no
1096##########################################
1097
1098============ Checking for xmga ============
1099Result is: no
1100##########################################
1101
1102============ Checking for GGI ============
1103
1104#include <ggi/ggi.h>
1105int main(void) { ggiInit(); return 0; }
1106
1107cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lggi
1108/tmp/mplayer-conf-20438-22906.c:1:21: error: ggi/ggi.h: No such file or directory
1109/tmp/mplayer-conf-20438-22906.c: In function 'main':
1110/tmp/mplayer-conf-20438-22906.c:2: warning: implicit declaration of function 'ggiInit'
1111
1112
1113Result is: no
1114##########################################
1115
1116============ Checking for GGI extension: libggiwmh ============
1117
1118#include <ggi/ggi.h>
1119#include <ggi/wmh.h>
1120int main(void) { ggiInit(); ggiWmhInit(); return 0; }
1121
1122cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lggi -lggiwmh
1123/tmp/mplayer-conf-20438-22906.c:1:21: error: ggi/ggi.h: No such file or directory
1124/tmp/mplayer-conf-20438-22906.c:2:21: error: ggi/wmh.h: No such file or directory
1125/tmp/mplayer-conf-20438-22906.c: In function 'main':
1126/tmp/mplayer-conf-20438-22906.c:3: warning: implicit declaration of function 'ggiInit'
1127/tmp/mplayer-conf-20438-22906.c:3: warning: implicit declaration of function 'ggiWmhInit'
1128
1129
1130Result is: no
1131##########################################
1132
1133============ Checking for AA ============
1134
1135#include <aalib.h>
1136extern struct aa_hardware_params aa_defparams;
1137extern struct aa_renderparams aa_defrenderparams;
1138int main(void) {
1139aa_context *c;
1140aa_renderparams *p;
1141(void) aa_init(0, 0, 0);
1142c = aa_autoinit(&aa_defparams);
1143p = aa_getrenderparams();
1144aa_autoinitkbd(c,0);
1145return 0; }
1146
1147cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -laa
1148/tmp/mplayer-conf-20438-22906.c:1:19: error: aalib.h: No such file or directory
1149/tmp/mplayer-conf-20438-22906.c: In function 'main':
1150/tmp/mplayer-conf-20438-22906.c:5: error: 'aa_context' undeclared (first use in this function)
1151/tmp/mplayer-conf-20438-22906.c:5: error: (Each undeclared identifier is reported only once
1152/tmp/mplayer-conf-20438-22906.c:5: error: for each function it appears in.)
1153/tmp/mplayer-conf-20438-22906.c:5: error: 'c' undeclared (first use in this function)
1154/tmp/mplayer-conf-20438-22906.c:6: error: 'aa_renderparams' undeclared (first use in this function)
1155/tmp/mplayer-conf-20438-22906.c:6: error: 'p' undeclared (first use in this function)
1156/tmp/mplayer-conf-20438-22906.c:7: warning: implicit declaration of function 'aa_init'
1157/tmp/mplayer-conf-20438-22906.c:8: warning: implicit declaration of function 'aa_autoinit'
1158/tmp/mplayer-conf-20438-22906.c:9: warning: implicit declaration of function 'aa_getrenderparams'
1159/tmp/mplayer-conf-20438-22906.c:10: warning: implicit declaration of function 'aa_autoinitkbd'
1160
1161
1162Result is: no
1163##########################################
1164
1165============ Checking for CACA ============
1166./configure: line 4464: caca-config: command not found
1167Result is: no
1168##########################################
1169
1170============ Checking for SVGAlib ============
1171
1172#include <vga.h>
1173int main(void) { return 0; }
1174
1175cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lvga -lm
1176/tmp/mplayer-conf-20438-22906.c:1:17: error: vga.h: No such file or directory
1177
1178
1179Result is: no
1180##########################################
1181
1182============ Checking for FBDev ============
1183Result is: yes
1184##########################################
1185
1186============ Checking for DVB ============
1187
1188#include <sys/poll.h>
1189#include <sys/ioctl.h>
1190#include <stdio.h>
1191#include <time.h>
1192#include <unistd.h>
1193
1194#include <ost/dmx.h>
1195#include <ost/frontend.h>
1196#include <ost/sec.h>
1197#include <ost/video.h>
1198#include <ost/audio.h>
1199int main(void) {return 0;}
1200
1201cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
1202/tmp/mplayer-conf-20438-22906.c:7:21: error: ost/dmx.h: No such file or directory
1203/tmp/mplayer-conf-20438-22906.c:8:26: error: ost/frontend.h: No such file or directory
1204/tmp/mplayer-conf-20438-22906.c:9:21: error: ost/sec.h: No such file or directory
1205/tmp/mplayer-conf-20438-22906.c:10:23: error: ost/video.h: No such file or directory
1206/tmp/mplayer-conf-20438-22906.c:11:23: error: ost/audio.h: No such file or directory
1207
1208
1209
1210#include <sys/poll.h>
1211#include <sys/ioctl.h>
1212#include <stdio.h>
1213#include <time.h>
1214#include <unistd.h>
1215
1216#include <ost/dmx.h>
1217#include <ost/frontend.h>
1218#include <ost/sec.h>
1219#include <ost/video.h>
1220#include <ost/audio.h>
1221int main(void) {return 0;}
1222
1223cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -I/usr/src/DVB/ost/include
1224/tmp/mplayer-conf-20438-22906.c:7:21: error: ost/dmx.h: No such file or directory
1225/tmp/mplayer-conf-20438-22906.c:8:26: error: ost/frontend.h: No such file or directory
1226/tmp/mplayer-conf-20438-22906.c:9:21: error: ost/sec.h: No such file or directory
1227/tmp/mplayer-conf-20438-22906.c:10:23: error: ost/video.h: No such file or directory
1228/tmp/mplayer-conf-20438-22906.c:11:23: error: ost/audio.h: No such file or directory
1229
1230
1231Result is: no
1232##########################################
1233
1234============ Checking for DVB HEAD ============
1235
1236#include <sys/poll.h>
1237#include <sys/ioctl.h>
1238#include <stdio.h>
1239#include <time.h>
1240#include <unistd.h>
1241
1242#include <linux/dvb/dmx.h>
1243#include <linux/dvb/frontend.h>
1244#include <linux/dvb/video.h>
1245#include <linux/dvb/audio.h>
1246int main(void) {return 0;}
1247
1248cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
1249
1250
1251Result is: yes
1252##########################################
1253
1254============ Checking for PNG support ============
1255
1256#include <png.h>
1257#include <string.h>
1258int main(void) {
1259 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
1260 printf("libpng: %s\n", png_libpng_ver);
1261 return (strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver));
1262}
1263
1264cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lpng -lz -lm
1265
1266
1267png.h : 1.2.15beta5
1268libpng: 1.2.15beta5
1269Result is: yes
1270##########################################
1271
1272============ Checking for JPEG support ============
1273
1274#include <stdio.h>
1275#include <stdlib.h>
1276#include <setjmp.h>
1277#include <string.h>
1278#include <jpeglib.h>
1279int main(void) {
1280 return 0;
1281}
1282
1283cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lpng -lz -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -ljpeg -lm
1284
1285
1286Result is: yes
1287##########################################
1288
1289============ Checking for PNM support ============
1290Result is: yes
1291##########################################
1292
1293============ Checking for GIF support ============
1294
1295#include <gif_lib.h>
1296int main(void) {
1297 return 0;
1298}
1299
1300cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lpng -lz -ljpeg -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lungif
1301/tmp/mplayer-conf-20438-22906.c:1:21: error: gif_lib.h: No such file or directory
1302
1303
1304
1305#include <gif_lib.h>
1306int main(void) {
1307 return 0;
1308}
1309
1310cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lpng -lz -ljpeg -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lgif
1311/tmp/mplayer-conf-20438-22906.c:1:21: error: gif_lib.h: No such file or directory
1312
1313
1314Result is: no
1315##########################################
1316
1317============ Checking for VESA support ============
1318
1319#include <vbe.h>
1320int main(void) { vbeVersion(); return 0; }
1321
1322cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lpng -lz -ljpeg -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lvbe -llrmi
1323/tmp/mplayer-conf-20438-22906.c:1:17: error: vbe.h: No such file or directory
1324/tmp/mplayer-conf-20438-22906.c: In function 'main':
1325/tmp/mplayer-conf-20438-22906.c:2: warning: implicit declaration of function 'vbeVersion'
1326
1327
1328Result is: no
1329##########################################
1330
1331============ Checking for SDL ============
1332./configure: line 4805: sdl-config: command not found
1333./configure: line 4807: sdl11-config: command not found
1334Result is: no
1335##########################################
1336
1337============ Checking for NAS ============
1338
1339#include <audio/audiolib.h>
1340int main(void) { return 0; }
1341
1342cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lpng -lz -ljpeg -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lm -laudio -lXt
1343/tmp/mplayer-conf-20438-22906.c:1:28: error: audio/audiolib.h: No such file or directory
1344
1345
1346Result is: no
1347##########################################
1348
1349============ Checking for DXR2 ============
1350
1351#include <dxr2ioctl.h>
1352int main(void) { return 0; }
1353
1354cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lpng -lz -ljpeg -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
1355/tmp/mplayer-conf-20438-22906.c:1:23: error: dxr2ioctl.h: No such file or directory
1356
1357
1358
1359#include <dxr2ioctl.h>
1360int main(void) { return 0; }
1361
1362cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lpng -lz -ljpeg -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -I/usr/local/include/dxr2
1363/tmp/mplayer-conf-20438-22906.c:1:23: error: dxr2ioctl.h: No such file or directory
1364
1365
1366
1367#include <dxr2ioctl.h>
1368int main(void) { return 0; }
1369
1370cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lpng -lz -ljpeg -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -I/usr/include/dxr2
1371/tmp/mplayer-conf-20438-22906.c:1:23: error: dxr2ioctl.h: No such file or directory
1372
1373
1374Result is: no
1375##########################################
1376
1377============ Checking for DXR3/H+ ============
1378
1379#include <linux/em8300.h>
1380int main(void) { return 0; }
1381
1382cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lpng -lz -ljpeg -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
1383/tmp/mplayer-conf-20438-22906.c:1:26: error: linux/em8300.h: No such file or directory
1384
1385
1386Result is: no
1387##########################################
1388
1389============ Checking for IVTV TV-Out (pre linux-2.6.24) ============
1390
1391#include <stdlib.h>
1392#include <inttypes.h>
1393#include <linux/types.h>
1394#include <linux/videodev2.h>
1395#include <linux/ivtv.h>
1396#include <sys/ioctl.h>
1397int main(void) {
1398struct ivtv_cfg_stop_decode sd;
1399struct ivtv_cfg_start_decode sd1;
1400ioctl (0, IVTV_IOC_START_DECODE, &sd1);
1401ioctl (0, IVTV_IOC_STOP_DECODE, &sd);
1402return 0; }
1403
1404cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lpng -lz -ljpeg -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
1405/tmp/mplayer-conf-20438-22906.c:5:24: error: linux/ivtv.h: No such file or directory
1406/tmp/mplayer-conf-20438-22906.c: In function 'main':
1407/tmp/mplayer-conf-20438-22906.c:8: error: storage size of 'sd' isn't known
1408/tmp/mplayer-conf-20438-22906.c:9: error: storage size of 'sd1' isn't known
1409/tmp/mplayer-conf-20438-22906.c:10: error: 'IVTV_IOC_START_DECODE' undeclared (first use in this function)
1410/tmp/mplayer-conf-20438-22906.c:10: error: (Each undeclared identifier is reported only once
1411/tmp/mplayer-conf-20438-22906.c:10: error: for each function it appears in.)
1412/tmp/mplayer-conf-20438-22906.c:11: error: 'IVTV_IOC_STOP_DECODE' undeclared (first use in this function)
1413/tmp/mplayer-conf-20438-22906.c:9: warning: unused variable 'sd1'
1414/tmp/mplayer-conf-20438-22906.c:8: warning: unused variable 'sd'
1415
1416
1417Result is: no
1418##########################################
1419
1420============ Checking for V4L2 MPEG Decoder ============
1421
1422#include <stdlib.h>
1423#include <inttypes.h>
1424#include <linux/types.h>
1425#include <linux/videodev2.h>
1426#include <linux/version.h>
1427int main(void) {
1428#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
1429#error kernel headers too old, need 2.6.22
1430 bad_kernel_version();
1431#endif
1432 struct v4l2_ext_controls ctrls;
1433 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
1434 return 0;
1435}
1436
1437cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lpng -lz -ljpeg -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
1438
1439
1440Result is: yes
1441##########################################
1442
1443============ Checking for OSS Audio ============
1444
1445#include <sys/ioctl.h>
1446#include <sys/soundcard.h>
1447int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; }
1448
1449cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lpng -lz -ljpeg -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
1450/tmp/mplayer-conf-20438-22906.c: In function 'main':
1451/tmp/mplayer-conf-20438-22906.c:3: warning: unused variable 'arg'
1452
1453
1454
1455#include <sys/ioctl.h>
1456#include <sys/soundcard.h>
1457#ifdef OPEN_SOUND_SYSTEM
1458int main(void) { return 0; }
1459#else
1460#error Not the real thing
1461#endif
1462
1463cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lpng -lz -ljpeg -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
1464
1465
1466Result is: yes
1467##########################################
1468
1469============ Checking for aRts ============
1470./configure: line 5102: artsc-config: command not found
1471Result is: no
1472##########################################
1473
1474============ Checking for EsounD ============
1475./configure: line 5128: esd-config: command not found
1476Result is: no
1477##########################################
1478
1479============ Checking for pulse ============
1480Result is: no
1481##########################################
1482
1483============ Checking for JACK ============
1484
1485#include <jack/jack.h>
1486int main(void) { jack_client_new("test"); return 0; }
1487
1488cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lpng -lz -ljpeg -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -ljack
1489/tmp/mplayer-conf-20438-22906.c:1:23: error: jack/jack.h: No such file or directory
1490/tmp/mplayer-conf-20438-22906.c: In function 'main':
1491/tmp/mplayer-conf-20438-22906.c:2: warning: implicit declaration of function 'jack_client_new'
1492
1493
1494
1495#include <jack/jack.h>
1496int main(void) { jack_client_new("test"); return 0; }
1497
1498cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lpng -lz -ljpeg -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
1499/tmp/mplayer-conf-20438-22906.c:1:23: error: jack/jack.h: No such file or directory
1500/tmp/mplayer-conf-20438-22906.c: In function 'main':
1501/tmp/mplayer-conf-20438-22906.c:2: warning: implicit declaration of function 'jack_client_new'
1502
1503
1504Result is: no
1505##########################################
1506
1507============ Checking for OpenAL ============
1508
1509#ifdef OPENAL_AL_H
1510#include <OpenAL/al.h>
1511#else
1512#include <AL/al.h>
1513#endif
1514int main(void) {
1515 alSourceQueueBuffers(0, 0, 0);
1516// alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
1517 return 0;
1518}
1519
1520cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lpng -lz -ljpeg -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lopenal
1521/tmp/mplayer-conf-20438-22906.c:4:19: error: AL/al.h: No such file or directory
1522/tmp/mplayer-conf-20438-22906.c: In function 'main':
1523/tmp/mplayer-conf-20438-22906.c:7: warning: implicit declaration of function 'alSourceQueueBuffers'
1524
1525
1526
1527#ifdef OPENAL_AL_H
1528#include <OpenAL/al.h>
1529#else
1530#include <AL/al.h>
1531#endif
1532int main(void) {
1533 alSourceQueueBuffers(0, 0, 0);
1534// alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
1535 return 0;
1536}
1537
1538cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lpng -lz -ljpeg -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -DOPENAL_AL_H=1 -lopenal
1539/tmp/mplayer-conf-20438-22906.c:2:23: error: OpenAL/al.h: No such file or directory
1540/tmp/mplayer-conf-20438-22906.c: In function 'main':
1541/tmp/mplayer-conf-20438-22906.c:7: warning: implicit declaration of function 'alSourceQueueBuffers'
1542
1543
1544
1545#ifdef OPENAL_AL_H
1546#include <OpenAL/al.h>
1547#else
1548#include <AL/al.h>
1549#endif
1550int main(void) {
1551 alSourceQueueBuffers(0, 0, 0);
1552// alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
1553 return 0;
1554}
1555
1556cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lpng -lz -ljpeg -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lopenal32
1557/tmp/mplayer-conf-20438-22906.c:4:19: error: AL/al.h: No such file or directory
1558/tmp/mplayer-conf-20438-22906.c: In function 'main':
1559/tmp/mplayer-conf-20438-22906.c:7: warning: implicit declaration of function 'alSourceQueueBuffers'
1560
1561
1562
1563#ifdef OPENAL_AL_H
1564#include <OpenAL/al.h>
1565#else
1566#include <AL/al.h>
1567#endif
1568int main(void) {
1569 alSourceQueueBuffers(0, 0, 0);
1570// alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
1571 return 0;
1572}
1573
1574cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lpng -lz -ljpeg -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -DOPENAL_AL_H=1 -lopenal32
1575/tmp/mplayer-conf-20438-22906.c:2:23: error: OpenAL/al.h: No such file or directory
1576/tmp/mplayer-conf-20438-22906.c: In function 'main':
1577/tmp/mplayer-conf-20438-22906.c:7: warning: implicit declaration of function 'alSourceQueueBuffers'
1578
1579
1580
1581#ifdef OPENAL_AL_H
1582#include <OpenAL/al.h>
1583#else
1584#include <AL/al.h>
1585#endif
1586int main(void) {
1587 alSourceQueueBuffers(0, 0, 0);
1588// alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
1589 return 0;
1590}
1591
1592cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lpng -lz -ljpeg -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -framework OpenAL
1593cc: OpenAL: No such file or directory
1594cc1: error: unrecognized command line option "-framework"
1595
1596
1597
1598#ifdef OPENAL_AL_H
1599#include <OpenAL/al.h>
1600#else
1601#include <AL/al.h>
1602#endif
1603int main(void) {
1604 alSourceQueueBuffers(0, 0, 0);
1605// alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
1606 return 0;
1607}
1608
1609cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lpng -lz -ljpeg -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -DOPENAL_AL_H=1 -framework OpenAL
1610cc: OpenAL: No such file or directory
1611cc1: error: unrecognized command line option "-framework"
1612
1613
1614Result is: no
1615##########################################
1616
1617============ Checking for ALSA audio ============
1618
1619#include <sys/asoundlib.h>
1620#if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
1621#error "alsa version != 0.5.x"
1622#endif
1623int main(void) { return 0; }
1624
1625cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lpng -lz -ljpeg -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lasound -ldl -lpthread
1626In file included from /tmp/mplayer-conf-20438-22906.c:1:
1627/usr/include/sys/asoundlib.h:1:2: warning: #warning This header is deprecated, use <alsa/asoundlib.h> instead.
1628/tmp/mplayer-conf-20438-22906.c:3:2: error: #error "alsa version != 0.5.x"
1629
1630
1631
1632#include <sys/asoundlib.h>
1633#if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
1634#error "alsa version != 0.9.x"
1635#endif
1636int main(void) { return 0; }
1637
1638cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lpng -lz -ljpeg -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lasound -ldl -lpthread
1639In file included from /tmp/mplayer-conf-20438-22906.c:1:
1640/usr/include/sys/asoundlib.h:1:2: warning: #warning This header is deprecated, use <alsa/asoundlib.h> instead.
1641/tmp/mplayer-conf-20438-22906.c:3:2: error: #error "alsa version != 0.9.x"
1642
1643
1644
1645#include <alsa/asoundlib.h>
1646#if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
1647#error "alsa version != 0.9.x"
1648#endif
1649int main(void) { return 0; }
1650
1651cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lpng -lz -ljpeg -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lasound -ldl -lpthread
1652/tmp/mplayer-conf-20438-22906.c:3:2: error: #error "alsa version != 0.9.x"
1653
1654
1655
1656#include <sys/asoundlib.h>
1657#if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
1658#error "alsa version != 1.0.x"
1659#endif
1660int main(void) { return 0; }
1661
1662cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lpng -lz -ljpeg -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lasound -ldl -lpthread
1663In file included from /tmp/mplayer-conf-20438-22906.c:1:
1664/usr/include/sys/asoundlib.h:1:2: warning: #warning This header is deprecated, use <alsa/asoundlib.h> instead.
1665
1666
1667
1668#include <alsa/asoundlib.h>
1669#if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
1670#error "alsa version != 1.0.x"
1671#endif
1672int main(void) { return 0; }
1673
1674cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lpng -lz -ljpeg -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lasound -ldl -lpthread
1675
1676
1677Result is: yes (using alsa 1.0.x and alsa/asoundlib.h)
1678##########################################
1679
1680============ Checking for Sun audio ============
1681
1682#include <sys/types.h>
1683#include <sys/audioio.h>
1684int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
1685
1686cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lpng -lz -ljpeg -lasound -ldl -lpthread -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
1687/tmp/mplayer-conf-20438-22906.c:2:25: error: sys/audioio.h: No such file or directory
1688/tmp/mplayer-conf-20438-22906.c: In function 'main':
1689/tmp/mplayer-conf-20438-22906.c:3: error: 'audio_info_t' undeclared (first use in this function)
1690/tmp/mplayer-conf-20438-22906.c:3: error: (Each undeclared identifier is reported only once
1691/tmp/mplayer-conf-20438-22906.c:3: error: for each function it appears in.)
1692/tmp/mplayer-conf-20438-22906.c:3: error: expected ';' before 'info'
1693/tmp/mplayer-conf-20438-22906.c:3: warning: implicit declaration of function 'AUDIO_INITINFO'
1694/tmp/mplayer-conf-20438-22906.c:3: error: 'info' undeclared (first use in this function)
1695
1696
1697Result is: no
1698##########################################
1699
1700============ Checking for VCD support ============
1701Result is: yes
1702##########################################
1703
1704============ Checking for dvdread ============
1705Result is: yes (internal)
1706##########################################
1707
1708============ Checking for internal libdvdcss ============
1709Result is: yes
1710##########################################
1711
1712============ Checking for cdparanoia ============
1713
1714#include <cdda_interface.h>
1715#include <cdda_paranoia.h>
1716// This need a better test. How ?
1717int main(void) {
1718 void *test = cdda_verbose_set;
1719 return test == (void *)1;
1720}
1721
1722cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lpng -lz -ljpeg -lasound -ldl -lpthread -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lcdda_interface -lcdda_paranoia -lm
1723
1724
1725Result is: yes
1726##########################################
1727
1728============ Checking for libcdio ============
1729Result is: auto (using cdparanoia)
1730##########################################
1731
1732============ Checking for bitmap font support ============
1733Result is: yes
1734##########################################
1735
1736============ Checking for freetype >= 2.0.9 ============
1737
1738#include <stdio.h>
1739#include <ft2build.h>
1740#include FT_FREETYPE_H
1741#if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
1742#error "Need FreeType 2.0.9 or newer"
1743#endif
1744int main(void)
1745{
1746 FT_Library library;
1747 FT_Int major=-1,minor=-1,patch=-1;
1748 int err=FT_Init_FreeType(&library);
1749 if(err){
1750 printf("Couldn't initialize freetype2 lib, err code: %d\n",err);
1751 exit(err);
1752 }
1753 FT_Library_Version(library,&major,&minor,&patch); // in v2.1.0+ only :(((
1754 printf("freetype2 header version: %d.%d.%d library version: %d.%d.%d\n",
1755 FREETYPE_MAJOR,FREETYPE_MINOR,FREETYPE_PATCH,
1756 (int)major,(int)minor,(int)patch );
1757 if(major!=FREETYPE_MAJOR || minor!=FREETYPE_MINOR){
1758 printf("Library and header version mismatch! Fix it in your distribution!\n");
1759 exit(1);
1760 }
1761 return 0;
1762}
1763
1764cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -I/usr/include/freetype2 -lfreetype -lz
1765
1766
1767freetype2 header version: 2.3.5 library version: 2.3.5
1768Result is: yes
1769##########################################
1770
1771============ Checking for fontconfig ============
1772
1773#include <stdio.h>
1774#include <fontconfig/fontconfig.h>
1775int main(void)
1776{
1777 int err = FcInit();
1778 if(err == FcFalse){
1779 printf("Couldn't initialize fontconfig lib\n");
1780 exit(err);
1781 }
1782 return 0;
1783
1784}
1785
1786cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lfontconfig
1787/tmp/mplayer-conf-20438-22906.c: In function 'main':
1788/tmp/mplayer-conf-20438-22906.c:8: warning: implicit declaration of function 'exit'
1789/tmp/mplayer-conf-20438-22906.c:8: warning: incompatible implicit declaration of built-in function 'exit'
1790
1791
1792Result is: yes
1793##########################################
1794
1795============ Checking for SSA/ASS support ============
1796
1797#include <ft2build.h>
1798#include FT_FREETYPE_H
1799#if ((FREETYPE_MAJOR < 2) || (FREETYPE_MINOR < 1) || ((FREETYPE_MINOR == 1) && (FREETYPE_PATCH < 8)))
1800#error "Need FreeType 2.1.8 or newer"
1801#endif
1802int main(void) { return 0; }
1803
1804cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -I/usr/include/freetype2 -lfreetype -lz
1805
1806
1807Result is: yes
1808##########################################
1809
1810============ Checking for fribidi with charsets ============
1811Result is: no
1812##########################################
1813
1814============ Checking for ENCA ============
1815
1816#include <enca.h>
1817int main(void)
1818{
1819 const char **langs;
1820 size_t langcnt;
1821 langs = enca_get_languages(&langcnt);
1822 return 0;
1823}
1824
1825cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lenca -lm
1826/tmp/mplayer-conf-20438-22906.c:1:18: error: enca.h: No such file or directory
1827/tmp/mplayer-conf-20438-22906.c: In function 'main':
1828/tmp/mplayer-conf-20438-22906.c:5: error: 'size_t' undeclared (first use in this function)
1829/tmp/mplayer-conf-20438-22906.c:5: error: (Each undeclared identifier is reported only once
1830/tmp/mplayer-conf-20438-22906.c:5: error: for each function it appears in.)
1831/tmp/mplayer-conf-20438-22906.c:5: error: expected ';' before 'langcnt'
1832/tmp/mplayer-conf-20438-22906.c:6: warning: implicit declaration of function 'enca_get_languages'
1833/tmp/mplayer-conf-20438-22906.c:6: error: 'langcnt' undeclared (first use in this function)
1834/tmp/mplayer-conf-20438-22906.c:6: warning: assignment makes pointer from integer without a cast
1835
1836
1837Result is: no
1838##########################################
1839
1840============ Checking for zlib ============
1841
1842#include <zlib.h>
1843int main(void) { (void) inflate(0, Z_NO_FLUSH); return 0; }
1844
1845cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lz
1846
1847
1848Result is: yes
1849##########################################
1850
1851============ Checking for RTC ============
1852
1853#include <sys/ioctl.h>
1854#ifdef __linux__
1855#include <linux/rtc.h>
1856#else
1857#include <rtc.h>
1858#define RTC_PIE_ON RTCIO_PIE_ON
1859#endif
1860int main(void) { return RTC_PIE_ON; }
1861
1862cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
1863
1864
1865Result is: no
1866##########################################
1867
1868============ Checking for liblzo2 support ============
1869
1870#include <lzo/lzo1x.h>
1871int main(void) { lzo_init();return 0; }
1872
1873cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -llzo2
1874/tmp/mplayer-conf-20438-22906.c:1:23: error: lzo/lzo1x.h: No such file or directory
1875/tmp/mplayer-conf-20438-22906.c: In function 'main':
1876/tmp/mplayer-conf-20438-22906.c:2: warning: implicit declaration of function 'lzo_init'
1877
1878
1879Result is: no
1880##########################################
1881
1882============ Checking for mad support ============
1883
1884#include <mad.h>
1885int main(void) { return 0; }
1886
1887cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lmad
1888/tmp/mplayer-conf-20438-22906.c:1:17: error: mad.h: No such file or directory
1889
1890
1891Result is: no
1892##########################################
1893
1894============ Checking for Twolame ============
1895
1896#include <twolame.h>
1897int main(void) { twolame_init(); return 0; }
1898
1899cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -ltwolame -lm
1900/tmp/mplayer-conf-20438-22906.c:1:21: error: twolame.h: No such file or directory
1901/tmp/mplayer-conf-20438-22906.c: In function 'main':
1902/tmp/mplayer-conf-20438-22906.c:2: warning: implicit declaration of function 'twolame_init'
1903
1904
1905Result is: no
1906##########################################
1907
1908============ Checking for Toolame ============
1909
1910#include <toolame.h>
1911int main(void) { toolame_init(); return 0; }
1912
1913cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -ltoolame -lm
1914/tmp/mplayer-conf-20438-22906.c:1:21: error: toolame.h: No such file or directory
1915/tmp/mplayer-conf-20438-22906.c: In function 'main':
1916/tmp/mplayer-conf-20438-22906.c:2: warning: implicit declaration of function 'toolame_init'
1917
1918
1919Result is: no
1920##########################################
1921
1922============ Checking for OggVorbis support ============
1923Result is: yes (internal Tremor)
1924##########################################
1925
1926============ Checking for libspeex (version >= 1.1 required) ============
1927
1928#include <speex/speex.h>
1929int main(void) {
1930 SpeexBits bits;
1931 void *dec;
1932 speex_decode_int(dec, &bits, dec);
1933}
1934
1935cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lspeex -lm
1936/tmp/mplayer-conf-20438-22906.c:1:25: error: speex/speex.h: No such file or directory
1937/tmp/mplayer-conf-20438-22906.c: In function 'main':
1938/tmp/mplayer-conf-20438-22906.c:3: error: 'SpeexBits' undeclared (first use in this function)
1939/tmp/mplayer-conf-20438-22906.c:3: error: (Each undeclared identifier is reported only once
1940/tmp/mplayer-conf-20438-22906.c:3: error: for each function it appears in.)
1941/tmp/mplayer-conf-20438-22906.c:3: error: expected ';' before 'bits'
1942/tmp/mplayer-conf-20438-22906.c:5: warning: implicit declaration of function 'speex_decode_int'
1943/tmp/mplayer-conf-20438-22906.c:5: error: 'bits' undeclared (first use in this function)
1944
1945
1946Result is: no
1947##########################################
1948
1949============ Checking for OggTheora support ============
1950
1951#include <theora/theora.h>
1952#include <string.h>
1953int main(void)
1954{
1955 /* theora is in flux, make sure that all interface routines and
1956 * datatypes exist and work the way we expect it, so we don't break
1957 * mplayer */
1958 ogg_packet op;
1959 theora_comment tc;
1960 theora_info inf;
1961 theora_state st;
1962 yuv_buffer yuv;
1963 int r;
1964 double t;
1965
1966 theora_info_init (&inf);
1967 theora_comment_init (&tc);
1968
1969 return 0;
1970
1971 /* we don't want to execute this kind of nonsense; just for making sure
1972 * that compilation works... */
1973 memset(&op, 0, sizeof(op));
1974 r = theora_decode_header (&inf, &tc, &op);
1975 r = theora_decode_init (&st, &inf);
1976 t = theora_granule_time (&st, op.granulepos);
1977 r = theora_decode_packetin (&st, &op);
1978 r = theora_decode_YUVout (&st, &yuv);
1979 theora_clear (&st);
1980
1981 return 0;
1982}
1983
1984cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
1985/tmp/mplayer-conf-20438-22906.c:1:27: error: theora/theora.h: No such file or directory
1986/tmp/mplayer-conf-20438-22906.c: In function 'main':
1987/tmp/mplayer-conf-20438-22906.c:8: error: 'ogg_packet' undeclared (first use in this function)
1988/tmp/mplayer-conf-20438-22906.c:8: error: (Each undeclared identifier is reported only once
1989/tmp/mplayer-conf-20438-22906.c:8: error: for each function it appears in.)
1990/tmp/mplayer-conf-20438-22906.c:8: error: expected ';' before 'op'
1991/tmp/mplayer-conf-20438-22906.c:9: error: 'theora_comment' undeclared (first use in this function)
1992/tmp/mplayer-conf-20438-22906.c:9: error: expected ';' before 'tc'
1993/tmp/mplayer-conf-20438-22906.c:10: error: 'theora_info' undeclared (first use in this function)
1994/tmp/mplayer-conf-20438-22906.c:10: error: expected ';' before 'inf'
1995/tmp/mplayer-conf-20438-22906.c:11: error: 'theora_state' undeclared (first use in this function)
1996/tmp/mplayer-conf-20438-22906.c:11: error: expected ';' before 'st'
1997/tmp/mplayer-conf-20438-22906.c:12: error: 'yuv_buffer' undeclared (first use in this function)
1998/tmp/mplayer-conf-20438-22906.c:12: error: expected ';' before 'yuv'
1999/tmp/mplayer-conf-20438-22906.c:16: warning: implicit declaration of function 'theora_info_init'
2000/tmp/mplayer-conf-20438-22906.c:16: error: 'inf' undeclared (first use in this function)
2001/tmp/mplayer-conf-20438-22906.c:17: warning: implicit declaration of function 'theora_comment_init'
2002/tmp/mplayer-conf-20438-22906.c:17: error: 'tc' undeclared (first use in this function)
2003/tmp/mplayer-conf-20438-22906.c:23: error: 'op' undeclared (first use in this function)
2004/tmp/mplayer-conf-20438-22906.c:24: warning: implicit declaration of function 'theora_decode_header'
2005/tmp/mplayer-conf-20438-22906.c:25: warning: implicit declaration of function 'theora_decode_init'
2006/tmp/mplayer-conf-20438-22906.c:25: error: 'st' undeclared (first use in this function)
2007/tmp/mplayer-conf-20438-22906.c:26: warning: implicit declaration of function 'theora_granule_time'
2008/tmp/mplayer-conf-20438-22906.c:27: warning: implicit declaration of function 'theora_decode_packetin'
2009/tmp/mplayer-conf-20438-22906.c:28: warning: implicit declaration of function 'theora_decode_YUVout'
2010/tmp/mplayer-conf-20438-22906.c:28: error: 'yuv' undeclared (first use in this function)
2011/tmp/mplayer-conf-20438-22906.c:29: warning: implicit declaration of function 'theora_clear'
2012
2013
2014
2015#include <theora/theora.h>
2016#include <string.h>
2017int main(void)
2018{
2019 /* theora is in flux, make sure that all interface routines and
2020 * datatypes exist and work the way we expect it, so we don't break
2021 * mplayer */
2022 ogg_packet op;
2023 theora_comment tc;
2024 theora_info inf;
2025 theora_state st;
2026 yuv_buffer yuv;
2027 int r;
2028 double t;
2029
2030 theora_info_init (&inf);
2031 theora_comment_init (&tc);
2032
2033 return 0;
2034
2035 /* we don't want to execute this kind of nonsense; just for making sure
2036 * that compilation works... */
2037 memset(&op, 0, sizeof(op));
2038 r = theora_decode_header (&inf, &tc, &op);
2039 r = theora_decode_init (&st, &inf);
2040 t = theora_granule_time (&st, op.granulepos);
2041 r = theora_decode_packetin (&st, &op);
2042 r = theora_decode_YUVout (&st, &yuv);
2043 theora_clear (&st);
2044
2045 return 0;
2046}
2047
2048cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -ltheora -logg
2049/tmp/mplayer-conf-20438-22906.c:1:27: error: theora/theora.h: No such file or directory
2050/tmp/mplayer-conf-20438-22906.c: In function 'main':
2051/tmp/mplayer-conf-20438-22906.c:8: error: 'ogg_packet' undeclared (first use in this function)
2052/tmp/mplayer-conf-20438-22906.c:8: error: (Each undeclared identifier is reported only once
2053/tmp/mplayer-conf-20438-22906.c:8: error: for each function it appears in.)
2054/tmp/mplayer-conf-20438-22906.c:8: error: expected ';' before 'op'
2055/tmp/mplayer-conf-20438-22906.c:9: error: 'theora_comment' undeclared (first use in this function)
2056/tmp/mplayer-conf-20438-22906.c:9: error: expected ';' before 'tc'
2057/tmp/mplayer-conf-20438-22906.c:10: error: 'theora_info' undeclared (first use in this function)
2058/tmp/mplayer-conf-20438-22906.c:10: error: expected ';' before 'inf'
2059/tmp/mplayer-conf-20438-22906.c:11: error: 'theora_state' undeclared (first use in this function)
2060/tmp/mplayer-conf-20438-22906.c:11: error: expected ';' before 'st'
2061/tmp/mplayer-conf-20438-22906.c:12: error: 'yuv_buffer' undeclared (first use in this function)
2062/tmp/mplayer-conf-20438-22906.c:12: error: expected ';' before 'yuv'
2063/tmp/mplayer-conf-20438-22906.c:16: warning: implicit declaration of function 'theora_info_init'
2064/tmp/mplayer-conf-20438-22906.c:16: error: 'inf' undeclared (first use in this function)
2065/tmp/mplayer-conf-20438-22906.c:17: warning: implicit declaration of function 'theora_comment_init'
2066/tmp/mplayer-conf-20438-22906.c:17: error: 'tc' undeclared (first use in this function)
2067/tmp/mplayer-conf-20438-22906.c:23: error: 'op' undeclared (first use in this function)
2068/tmp/mplayer-conf-20438-22906.c:24: warning: implicit declaration of function 'theora_decode_header'
2069/tmp/mplayer-conf-20438-22906.c:25: warning: implicit declaration of function 'theora_decode_init'
2070/tmp/mplayer-conf-20438-22906.c:25: error: 'st' undeclared (first use in this function)
2071/tmp/mplayer-conf-20438-22906.c:26: warning: implicit declaration of function 'theora_granule_time'
2072/tmp/mplayer-conf-20438-22906.c:27: warning: implicit declaration of function 'theora_decode_packetin'
2073/tmp/mplayer-conf-20438-22906.c:28: warning: implicit declaration of function 'theora_decode_YUVout'
2074/tmp/mplayer-conf-20438-22906.c:28: error: 'yuv' undeclared (first use in this function)
2075/tmp/mplayer-conf-20438-22906.c:29: warning: implicit declaration of function 'theora_clear'
2076
2077
2078
2079#include <theora/theora.h>
2080#include <string.h>
2081int main(void)
2082{
2083 /* theora is in flux, make sure that all interface routines and
2084 * datatypes exist and work the way we expect it, so we don't break
2085 * mplayer */
2086 ogg_packet op;
2087 theora_comment tc;
2088 theora_info inf;
2089 theora_state st;
2090 yuv_buffer yuv;
2091 int r;
2092 double t;
2093
2094 theora_info_init (&inf);
2095 theora_comment_init (&tc);
2096
2097 return 0;
2098
2099 /* we don't want to execute this kind of nonsense; just for making sure
2100 * that compilation works... */
2101 memset(&op, 0, sizeof(op));
2102 r = theora_decode_header (&inf, &tc, &op);
2103 r = theora_decode_init (&st, &inf);
2104 t = theora_granule_time (&st, op.granulepos);
2105 r = theora_decode_packetin (&st, &op);
2106 r = theora_decode_YUVout (&st, &yuv);
2107 theora_clear (&st);
2108
2109 return 0;
2110}
2111
2112cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -I. tremor/bitwise.c
2113/tmp/mplayer-conf-20438-22906.c:1:27: error: theora/theora.h: No such file or directory
2114/tmp/mplayer-conf-20438-22906.c: In function 'main':
2115/tmp/mplayer-conf-20438-22906.c:8: error: 'ogg_packet' undeclared (first use in this function)
2116/tmp/mplayer-conf-20438-22906.c:8: error: (Each undeclared identifier is reported only once
2117/tmp/mplayer-conf-20438-22906.c:8: error: for each function it appears in.)
2118/tmp/mplayer-conf-20438-22906.c:8: error: expected ';' before 'op'
2119/tmp/mplayer-conf-20438-22906.c:9: error: 'theora_comment' undeclared (first use in this function)
2120/tmp/mplayer-conf-20438-22906.c:9: error: expected ';' before 'tc'
2121/tmp/mplayer-conf-20438-22906.c:10: error: 'theora_info' undeclared (first use in this function)
2122/tmp/mplayer-conf-20438-22906.c:10: error: expected ';' before 'inf'
2123/tmp/mplayer-conf-20438-22906.c:11: error: 'theora_state' undeclared (first use in this function)
2124/tmp/mplayer-conf-20438-22906.c:11: error: expected ';' before 'st'
2125/tmp/mplayer-conf-20438-22906.c:12: error: 'yuv_buffer' undeclared (first use in this function)
2126/tmp/mplayer-conf-20438-22906.c:12: error: expected ';' before 'yuv'
2127/tmp/mplayer-conf-20438-22906.c:16: warning: implicit declaration of function 'theora_info_init'
2128/tmp/mplayer-conf-20438-22906.c:16: error: 'inf' undeclared (first use in this function)
2129/tmp/mplayer-conf-20438-22906.c:17: warning: implicit declaration of function 'theora_comment_init'
2130/tmp/mplayer-conf-20438-22906.c:17: error: 'tc' undeclared (first use in this function)
2131/tmp/mplayer-conf-20438-22906.c:23: error: 'op' undeclared (first use in this function)
2132/tmp/mplayer-conf-20438-22906.c:24: warning: implicit declaration of function 'theora_decode_header'
2133/tmp/mplayer-conf-20438-22906.c:25: warning: implicit declaration of function 'theora_decode_init'
2134/tmp/mplayer-conf-20438-22906.c:25: error: 'st' undeclared (first use in this function)
2135/tmp/mplayer-conf-20438-22906.c:26: warning: implicit declaration of function 'theora_granule_time'
2136/tmp/mplayer-conf-20438-22906.c:27: warning: implicit declaration of function 'theora_decode_packetin'
2137/tmp/mplayer-conf-20438-22906.c:28: warning: implicit declaration of function 'theora_decode_YUVout'
2138/tmp/mplayer-conf-20438-22906.c:28: error: 'yuv' undeclared (first use in this function)
2139/tmp/mplayer-conf-20438-22906.c:29: warning: implicit declaration of function 'theora_clear'
2140
2141
2142
2143#include <theora/theora.h>
2144#include <string.h>
2145int main(void)
2146{
2147 /* theora is in flux, make sure that all interface routines and
2148 * datatypes exist and work the way we expect it, so we don't break
2149 * mplayer */
2150 ogg_packet op;
2151 theora_comment tc;
2152 theora_info inf;
2153 theora_state st;
2154 yuv_buffer yuv;
2155 int r;
2156 double t;
2157
2158 theora_info_init (&inf);
2159 theora_comment_init (&tc);
2160
2161 return 0;
2162
2163 /* we don't want to execute this kind of nonsense; just for making sure
2164 * that compilation works... */
2165 memset(&op, 0, sizeof(op));
2166 r = theora_decode_header (&inf, &tc, &op);
2167 r = theora_decode_init (&st, &inf);
2168 t = theora_granule_time (&st, op.granulepos);
2169 r = theora_decode_packetin (&st, &op);
2170 r = theora_decode_YUVout (&st, &yuv);
2171 theora_clear (&st);
2172
2173 return 0;
2174}
2175
2176cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -I. tremor/bitwise.c -ltheora -logg
2177/tmp/mplayer-conf-20438-22906.c:1:27: error: theora/theora.h: No such file or directory
2178/tmp/mplayer-conf-20438-22906.c: In function 'main':
2179/tmp/mplayer-conf-20438-22906.c:8: error: 'ogg_packet' undeclared (first use in this function)
2180/tmp/mplayer-conf-20438-22906.c:8: error: (Each undeclared identifier is reported only once
2181/tmp/mplayer-conf-20438-22906.c:8: error: for each function it appears in.)
2182/tmp/mplayer-conf-20438-22906.c:8: error: expected ';' before 'op'
2183/tmp/mplayer-conf-20438-22906.c:9: error: 'theora_comment' undeclared (first use in this function)
2184/tmp/mplayer-conf-20438-22906.c:9: error: expected ';' before 'tc'
2185/tmp/mplayer-conf-20438-22906.c:10: error: 'theora_info' undeclared (first use in this function)
2186/tmp/mplayer-conf-20438-22906.c:10: error: expected ';' before 'inf'
2187/tmp/mplayer-conf-20438-22906.c:11: error: 'theora_state' undeclared (first use in this function)
2188/tmp/mplayer-conf-20438-22906.c:11: error: expected ';' before 'st'
2189/tmp/mplayer-conf-20438-22906.c:12: error: 'yuv_buffer' undeclared (first use in this function)
2190/tmp/mplayer-conf-20438-22906.c:12: error: expected ';' before 'yuv'
2191/tmp/mplayer-conf-20438-22906.c:16: warning: implicit declaration of function 'theora_info_init'
2192/tmp/mplayer-conf-20438-22906.c:16: error: 'inf' undeclared (first use in this function)
2193/tmp/mplayer-conf-20438-22906.c:17: warning: implicit declaration of function 'theora_comment_init'
2194/tmp/mplayer-conf-20438-22906.c:17: error: 'tc' undeclared (first use in this function)
2195/tmp/mplayer-conf-20438-22906.c:23: error: 'op' undeclared (first use in this function)
2196/tmp/mplayer-conf-20438-22906.c:24: warning: implicit declaration of function 'theora_decode_header'
2197/tmp/mplayer-conf-20438-22906.c:25: warning: implicit declaration of function 'theora_decode_init'
2198/tmp/mplayer-conf-20438-22906.c:25: error: 'st' undeclared (first use in this function)
2199/tmp/mplayer-conf-20438-22906.c:26: warning: implicit declaration of function 'theora_granule_time'
2200/tmp/mplayer-conf-20438-22906.c:27: warning: implicit declaration of function 'theora_decode_packetin'
2201/tmp/mplayer-conf-20438-22906.c:28: warning: implicit declaration of function 'theora_decode_YUVout'
2202/tmp/mplayer-conf-20438-22906.c:28: error: 'yuv' undeclared (first use in this function)
2203/tmp/mplayer-conf-20438-22906.c:29: warning: implicit declaration of function 'theora_clear'
2204
2205
2206Result is: no
2207##########################################
2208
2209============ Checking for internal mp3lib support ============
2210Result is: yes
2211##########################################
2212
2213============ Checking for internal liba52 support ============
2214Result is: yes
2215##########################################
2216
2217============ Checking for libdca support ============
2218
2219#include <inttypes.h>
2220#include <dts.h>
2221int main(void) { dts_init (0); return 0; }
2222
2223cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -ldts -lm
2224/tmp/mplayer-conf-20438-22906.c:2:17: error: dts.h: No such file or directory
2225/tmp/mplayer-conf-20438-22906.c: In function 'main':
2226/tmp/mplayer-conf-20438-22906.c:3: warning: implicit declaration of function 'dts_init'
2227
2228
2229
2230#include <inttypes.h>
2231#include <dts.h>
2232int main(void) { dts_init (0); return 0; }
2233
2234cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -ldca -lm
2235/tmp/mplayer-conf-20438-22906.c:2:17: error: dts.h: No such file or directory
2236/tmp/mplayer-conf-20438-22906.c: In function 'main':
2237/tmp/mplayer-conf-20438-22906.c:3: warning: implicit declaration of function 'dts_init'
2238
2239
2240Result is: no
2241##########################################
2242
2243============ Checking for internal libmpeg2 support ============
2244Result is: yes
2245##########################################
2246
2247============ Checking for libmpcdec (musepack, version >= 1.2.1 required) ============
2248
2249#include <mpcdec/mpcdec.h>
2250int main(void) {
2251 mpc_streaminfo info;
2252 mpc_decoder decoder;
2253 mpc_decoder_set_streaminfo(&decoder, &info);
2254 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
2255}
2256
2257cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lmpcdec -lm
2258/tmp/mplayer-conf-20438-22906.c: In function 'main':
2259/tmp/mplayer-conf-20438-22906.c:7: warning: control reaches end of non-void function
2260
2261
2262Result is: yes
2263##########################################
2264
2265============ Checking for FAAC (AAC encoder) support ============
2266
2267#include <inttypes.h>
2268#include <faac.h>
2269int main(void) { unsigned long x, y; faacEncOpen(48000, 2, &x, &y); return 0; }
2270
2271cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lmpcdec -lXext -lX11 -lpthread -lXv -lGL -ldl -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -O4 -lfaac -lm
2272
2273
2274Result is: yes (in libavcodec: yes)
2275##########################################
2276
2277============ Checking for FAAD2 (AAC) support ============
2278Result is: yes (internal floating-point)
2279##########################################
2280
2281============ Checking for LADSPA plugin support ============
2282
2283#include <stdio.h>
2284#include <ladspa.h>
2285int main(void) {
2286const LADSPA_Descriptor *ld = NULL;
2287return 0;
2288}
2289
2290cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lmpcdec -lXext -lX11 -lpthread -lXv -lGL -ldl -lfaac -lfaac -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
2291/tmp/mplayer-conf-20438-22906.c:2:20: error: ladspa.h: No such file or directory
2292/tmp/mplayer-conf-20438-22906.c: In function 'main':
2293/tmp/mplayer-conf-20438-22906.c:4: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token
2294/tmp/mplayer-conf-20438-22906.c:4: error: 'ld' undeclared (first use in this function)
2295/tmp/mplayer-conf-20438-22906.c:4: error: (Each undeclared identifier is reported only once
2296/tmp/mplayer-conf-20438-22906.c:4: error: for each function it appears in.)
2297
2298
2299Result is: no
2300##########################################
2301
2302============ Checking for Win32 codecs ============
2303Result is: no
2304##########################################
2305
2306============ Checking for XAnim codecs ============
2307Result is: yes (using /usr/local/lib/codecs)
2308##########################################
2309
2310============ Checking for RealPlayer codecs ============
2311Result is: yes (using /usr/local/lib/codecs)
2312##########################################
2313
2314============ Checking for QuickTime codecs ============
2315Result is: auto
2316##########################################
2317
2318============ Checking for Nemesi Streaming Media libraries ============
2319Result is: no
2320##########################################
2321
2322============ Checking for LIVE555 Streaming Media libraries ============
2323
2324#include <liveMedia.hh>
2325#if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
2326#error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
2327#endif
2328int main(void) {}
2329
2330cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lmpcdec -lXext -lX11 -lpthread -lXv -lGL -ldl -lfaac -lfaac -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-796-22906.cpp -I/usr/include/freetype2/liveMedia/include -I/usr/include/freetype2/UsageEnvironment/include -I/usr/include/freetype2/groupsock/include -lstdc++
2331/tmp/mplayer-conf-796-22906.cpp:1:24: error: liveMedia.hh: No such file or directory
2332/tmp/mplayer-conf-796-22906.cpp:3:2: error: #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
2333
2334
2335
2336#include <liveMedia.hh>
2337#if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
2338#error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
2339#endif
2340int main(void) {}
2341
2342cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lmpcdec -lXext -lX11 -lpthread -lXv -lGL -ldl -lfaac -lfaac -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-796-22906.cpp -I/usr/local/lib/live/liveMedia/include -I/usr/local/lib/live/UsageEnvironment/include -I/usr/local/lib/live/groupsock/include -lstdc++
2343/tmp/mplayer-conf-796-22906.cpp:1:24: error: liveMedia.hh: No such file or directory
2344/tmp/mplayer-conf-796-22906.cpp:3:2: error: #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
2345
2346
2347
2348#include <liveMedia.hh>
2349#if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
2350#error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
2351#endif
2352int main(void) {}
2353
2354cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lmpcdec -lXext -lX11 -lpthread -lXv -lGL -ldl -lfaac -lfaac -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-796-22906.cpp -I/usr/lib/live/liveMedia/include -I/usr/lib/live/UsageEnvironment/include -I/usr/lib/live/groupsock/include -lstdc++
2355/tmp/mplayer-conf-796-22906.cpp:1:24: error: liveMedia.hh: No such file or directory
2356/tmp/mplayer-conf-796-22906.cpp:3:2: error: #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
2357
2358
2359
2360#include <liveMedia.hh>
2361#if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
2362#error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
2363#endif
2364int main(void) {}
2365
2366cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lmpcdec -lXext -lX11 -lpthread -lXv -lGL -ldl -lfaac -lfaac -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-796-22906.cpp -I/usr/local/live/liveMedia/include -I/usr/local/live/UsageEnvironment/include -I/usr/local/live/groupsock/include -lstdc++
2367/tmp/mplayer-conf-796-22906.cpp:1:24: error: liveMedia.hh: No such file or directory
2368/tmp/mplayer-conf-796-22906.cpp:3:2: error: #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
2369
2370
2371
2372#include <liveMedia.hh>
2373#if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
2374#error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
2375#endif
2376int main(void) {}
2377
2378cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lmpcdec -lXext -lX11 -lpthread -lXv -lGL -ldl -lfaac -lfaac -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-796-22906.cpp -I/usr/local/lib/live/liveMedia/include -I/usr/local/lib/live/UsageEnvironment/include -I/usr/local/lib/live/groupsock/include -lstdc++
2379/tmp/mplayer-conf-796-22906.cpp:1:24: error: liveMedia.hh: No such file or directory
2380/tmp/mplayer-conf-796-22906.cpp:3:2: error: #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
2381
2382
2383
2384#include <liveMedia.hh>
2385#if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
2386#error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
2387#endif
2388int main(void) {}
2389
2390cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lmpcdec -lXext -lX11 -lpthread -lXv -lGL -ldl -lfaac -lfaac -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-796-22906.cpp -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock -lstdc++
2391/tmp/mplayer-conf-796-22906.cpp:1:24: error: liveMedia.hh: No such file or directory
2392/tmp/mplayer-conf-796-22906.cpp:3:2: error: #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
2393
2394
2395Result is: no
2396##########################################
2397
2398============ Checking for FFmpeg libavutil ============
2399Result is: yes (static)
2400##########################################
2401
2402============ Checking for FFmpeg libavcodec ============
2403Result is: yes (static)
2404##########################################
2405
2406============ Checking for FFmpeg libavformat ============
2407Result is: yes (static)
2408##########################################
2409
2410============ Checking for FFmpeg libpostproc ============
2411Result is: yes (static)
2412##########################################
2413
2414============ Checking for libamr narrowband ============
2415
2416#include <amrnb/interf_dec.h>
2417int main(void) { Speech_Decode_Frame_init(); return 0; }
2418
2419cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lmpcdec -lXext -lX11 -lpthread -lXv -lGL -ldl -lfaac -lfaac -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lamrnb
2420/tmp/mplayer-conf-20438-22906.c:1:30: error: amrnb/interf_dec.h: No such file or directory
2421/tmp/mplayer-conf-20438-22906.c: In function 'main':
2422/tmp/mplayer-conf-20438-22906.c:2: warning: implicit declaration of function 'Speech_Decode_Frame_init'
2423
2424
2425Result is: no
2426##########################################
2427
2428============ Checking for libamr wideband ============
2429
2430#include <amrwb/dec_if.h>
2431int main(void) { D_IF_init(); return 0; }
2432
2433cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lmpcdec -lXext -lX11 -lpthread -lXv -lGL -ldl -lfaac -lfaac -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lamrwb
2434/tmp/mplayer-conf-20438-22906.c:1:26: error: amrwb/dec_if.h: No such file or directory
2435/tmp/mplayer-conf-20438-22906.c: In function 'main':
2436/tmp/mplayer-conf-20438-22906.c:2: warning: implicit declaration of function 'D_IF_init'
2437
2438
2439Result is: no
2440##########################################
2441
2442============ Checking for libdv-0.9.5+ ============
2443
2444#include <libdv/dv.h>
2445int main(void) { dv_encoder_t* enc=dv_encoder_new(1,1,1); return 0; }
2446
2447cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lmpcdec -lXext -lX11 -lpthread -lXv -lGL -ldl -lfaac -lfaac -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -ldv -lpthread -lm
2448/tmp/mplayer-conf-20438-22906.c:1:22: error: libdv/dv.h: No such file or directory
2449/tmp/mplayer-conf-20438-22906.c: In function 'main':
2450/tmp/mplayer-conf-20438-22906.c:2: error: 'dv_encoder_t' undeclared (first use in this function)
2451/tmp/mplayer-conf-20438-22906.c:2: error: (Each undeclared identifier is reported only once
2452/tmp/mplayer-conf-20438-22906.c:2: error: for each function it appears in.)
2453/tmp/mplayer-conf-20438-22906.c:2: error: 'enc' undeclared (first use in this function)
2454/tmp/mplayer-conf-20438-22906.c:2: warning: implicit declaration of function 'dv_encoder_new'
2455
2456
2457Result is: no
2458##########################################
2459
2460============ Checking for XviD ============
2461
2462#include <xvid.h>
2463int main(void) { xvid_global(0, 0, 0, 0); return 0; }
2464
2465cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lmpcdec -lXext -lX11 -lpthread -lXv -lGL -ldl -lfaac -lfaac -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lxvidcore -lm
2466
2467
2468Result is: yes
2469##########################################
2470
2471============ Checking for XviD two pass plugin ============
2472
2473#include <xvid.h>
2474int main(void) { xvid_plugin_2pass2_t s; s.vbv_size=0; return 0; }
2475
2476cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lmpcdec -lxvidcore -lm -lXext -lX11 -lpthread -lXv -lGL -ldl -lfaac -lfaac -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
2477
2478
2479Result is: yes
2480##########################################
2481
2482============ Checking for x264 ============
2483
2484#include <inttypes.h>
2485#include <x264.h>
2486#if X264_BUILD < 53
2487#error We do not support old versions of x264. Get the latest from SVN.
2488#endif
2489int main(void) { x264_encoder_open((void*)0); return 0; }
2490
2491cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lmpcdec -lxvidcore -lm -lXext -lX11 -lpthread -lXv -lGL -ldl -lfaac -lfaac -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lx264 -lpthread
2492
2493
2494Result is: yes (in libavcodec: yes)
2495##########################################
2496
2497============ Checking for libnut ============
2498
2499#include <stdio.h>
2500#include <stdlib.h>
2501#include <inttypes.h>
2502#include <libnut.h>
2503int main(void) { (void)nut_error(0); return 0; }
2504
2505cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lmpcdec -lxvidcore -lm -lXext -lX11 -lpthread -lXv -lGL -ldl -lfaac -lx264 -lpthread -lfaac -lx264 -lpthread -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lnut
2506/tmp/mplayer-conf-20438-22906.c:4:20: error: libnut.h: No such file or directory
2507/tmp/mplayer-conf-20438-22906.c: In function 'main':
2508/tmp/mplayer-conf-20438-22906.c:5: warning: implicit declaration of function 'nut_error'
2509
2510
2511Result is: no
2512##########################################
2513
2514============ Checking for zr ============
2515Result is: no
2516##########################################
2517
2518============ Checking for libmp3lame (for mencoder) ============
2519
2520#include <lame/lame.h>
2521int main(void) { lame_version_t lv; (void) lame_init(); get_lame_version_numerical(&lv); printf("%d%d\n",lv.major,lv.minor); return 0; }
2522
2523cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lmpcdec -lxvidcore -lm -lXext -lX11 -lpthread -lXv -lGL -ldl -lfaac -lx264 -lpthread -lfaac -lx264 -lpthread -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lmp3lame -lm
2524/tmp/mplayer-conf-20438-22906.c:1:23: error: lame/lame.h: No such file or directory
2525/tmp/mplayer-conf-20438-22906.c: In function 'main':
2526/tmp/mplayer-conf-20438-22906.c:2: error: 'lame_version_t' undeclared (first use in this function)
2527/tmp/mplayer-conf-20438-22906.c:2: error: (Each undeclared identifier is reported only once
2528/tmp/mplayer-conf-20438-22906.c:2: error: for each function it appears in.)
2529/tmp/mplayer-conf-20438-22906.c:2: error: expected ';' before 'lv'
2530/tmp/mplayer-conf-20438-22906.c:2: warning: implicit declaration of function 'lame_init'
2531/tmp/mplayer-conf-20438-22906.c:2: warning: implicit declaration of function 'get_lame_version_numerical'
2532/tmp/mplayer-conf-20438-22906.c:2: error: 'lv' undeclared (first use in this function)
2533/tmp/mplayer-conf-20438-22906.c:2: warning: implicit declaration of function 'printf'
2534/tmp/mplayer-conf-20438-22906.c:2: warning: incompatible implicit declaration of built-in function 'printf'
2535
2536
2537Result is: no
2538##########################################
2539
2540============ Checking for mencoder ============
2541Result is: yes
2542##########################################
2543
2544============ Checking for fastmemcpy ============
2545Result is: yes
2546##########################################
2547
2548============ Checking for UnRAR executable ============
2549Result is: yes
2550##########################################
2551
2552============ Checking for TV interface ============
2553Result is: yes
2554##########################################
2555
2556============ Checking for DirectShow TV interface ============
2557Result is: no
2558##########################################
2559
2560============ Checking for Video 4 Linux TV interface ============
2561
2562#include <stdlib.h>
2563#include <linux/videodev.h>
2564int main(void) { return 0; }
2565
2566cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lmpcdec -lxvidcore -lm -lXext -lX11 -lpthread -lXv -lGL -ldl -lfaac -lx264 -lpthread -lfaac -lx264 -lpthread -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
2567
2568
2569Result is: yes
2570##########################################
2571
2572============ Checking for Video 4 Linux 2 TV interface ============
2573
2574#include <stdlib.h>
2575#include <linux/types.h>
2576#include <linux/videodev2.h>
2577int main(void) { return 0; }
2578
2579cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lmpcdec -lxvidcore -lm -lXext -lX11 -lpthread -lXv -lGL -ldl -lfaac -lx264 -lpthread -lfaac -lx264 -lpthread -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
2580
2581
2582Result is: yes
2583##########################################
2584
2585============ Checking for TV teletext interface ============
2586Result is: yes
2587##########################################
2588
2589============ Checking for Radio interface ============
2590Result is: no
2591##########################################
2592
2593============ Checking for Capture for Radio interface ============
2594Result is: no
2595##########################################
2596
2597============ Checking for Video 4 Linux 2 Radio interface ============
2598Result is: no
2599##########################################
2600
2601============ Checking for Video 4 Linux Radio interface ============
2602Result is: no
2603##########################################
2604
2605============ Checking for Video 4 Linux 2 MPEG PVR interface ============
2606
2607#include <stdlib.h>
2608#include <inttypes.h>
2609#include <linux/types.h>
2610#include <linux/videodev2.h>
2611int main(void) { struct v4l2_ext_controls ext; return 0; }
2612
2613cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lmpcdec -lxvidcore -lm -lXext -lX11 -lpthread -lXv -lGL -ldl -lfaac -lx264 -lpthread -lfaac -lx264 -lpthread -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
2614/tmp/mplayer-conf-20438-22906.c: In function 'main':
2615/tmp/mplayer-conf-20438-22906.c:5: warning: unused variable 'ext'
2616
2617
2618Result is: yes
2619##########################################
2620
2621============ Checking for audio select() ============
2622Result is: yes
2623##########################################
2624
2625============ Checking for ftp ============
2626Result is: yes
2627##########################################
2628
2629============ Checking for vstream client ============
2630
2631#include <vstream-client.h>
2632void vstream_error(const char *format, ... ) {}
2633int main(void) { vstream_start(); return 0; }
2634
2635cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lmpcdec -lxvidcore -lm -lXext -lX11 -lpthread -lXv -lGL -ldl -lfaac -lx264 -lpthread -lfaac -lx264 -lpthread -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -lvstream-client
2636/tmp/mplayer-conf-20438-22906.c:1:28: error: vstream-client.h: No such file or directory
2637/tmp/mplayer-conf-20438-22906.c: In function 'main':
2638/tmp/mplayer-conf-20438-22906.c:3: warning: implicit declaration of function 'vstream_start'
2639
2640
2641Result is: no
2642##########################################
2643
2644============ Checking for byte order ============
2645
2646short ascii_name[] = { (('M'<<8)|'P'),(('l'<<8)|'a'),(('y'<<8)|'e'),(('r'<<8)|'B'),
2647 (('i'<<8)|'g'),(('E'<<8)|'n'),(('d'<<8)|'i'),(('a'<<8)|'n'),0};
2648int main(void){
2649 return (int)ascii_name;
2650}
2651
2652cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lmpcdec -lxvidcore -lm -lXext -lX11 -lpthread -lXv -lGL -ldl -lfaac -lx264 -lpthread -lfaac -lx264 -lpthread -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
2653
2654
2655Result is: big-endian
2656##########################################
2657
2658============ Checking for OSD menu ============
2659Result is: no
2660##########################################
2661
2662============ Checking for Subtitles sorting ============
2663Result is: yes
2664##########################################
2665
2666============ Checking for XMMS inputplugin support ============
2667Result is: no
2668##########################################
2669
2670============ Checking for inet6 ============
2671
2672#include <sys/types.h>
2673#if !defined(_WIN32) || defined(__CYGWIN__)
2674#include <sys/socket.h>
2675#include <netinet/in.h>
2676#else
2677#include <ws2tcpip.h>
2678#endif
2679int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); }
2680
2681cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lmpcdec -lxvidcore -lm -lXext -lX11 -lpthread -lXv -lGL -ldl -lfaac -lx264 -lpthread -lfaac -lx264 -lpthread -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
2682/tmp/mplayer-conf-20438-22906.c: In function 'main':
2683/tmp/mplayer-conf-20438-22906.c:8: warning: unused variable 'six'
2684/tmp/mplayer-conf-20438-22906.c:8: warning: control reaches end of non-void function
2685
2686
2687Result is: yes
2688##########################################
2689
2690============ Checking for gethostbyname2 ============
2691
2692#include <sys/types.h>
2693#include <sys/socket.h>
2694#include <netdb.h>
2695int main(void) { gethostbyname2("", AF_INET); }
2696
2697cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lmpcdec -lxvidcore -lm -lXext -lX11 -lpthread -lXv -lGL -ldl -lfaac -lx264 -lpthread -lfaac -lx264 -lpthread -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c
2698/tmp/mplayer-conf-20438-22906.c: In function 'main':
2699/tmp/mplayer-conf-20438-22906.c:4: warning: control reaches end of non-void function
2700
2701
2702Result is: yes
2703##########################################
2704
2705============ Checking for GUI ============
2706============ Checking for automatic gdb attach ============
2707Result is: no
2708##########################################
2709
2710============ Checking for compiler support for noexecstack ============
2711
2712int main(void) { return 0; }
2713
2714cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lmpcdec -lxvidcore -lm -lXext -lX11 -lpthread -lXv -lGL -ldl -lfaac -lx264 -lpthread -lfaac -lx264 -lpthread -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -Wl,-z,noexecstack
2715
2716
2717Result is: yes
2718##########################################
2719
2720============ Checking for joystick ============
2721Result is: no
2722##########################################
2723
2724============ Checking for lirc ============
2725
2726#include <lirc/lirc_client.h>
2727int main(void) { return 0; }
2728
2729cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -Wl,-z,noexecstack -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lmpcdec -lxvidcore -lm -lpthread -ldl -rdynamic -lXext -lX11 -lpthread -lXv -lGL -ldl -lfaac -lx264 -lpthread -lfaac -lx264 -lpthread -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -llirc_client
2730/tmp/mplayer-conf-20438-22906.c:1:30: error: lirc/lirc_client.h: No such file or directory
2731
2732
2733Result is: no
2734##########################################
2735
2736============ Checking for lircc ============
2737
2738#include <lirc/lircc.h>
2739int main(void) { return 0; }
2740
2741cc -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -I/usr/include/freetype2 -Wl,-z,noexecstack -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lmpcdec -lxvidcore -lm -lpthread -ldl -rdynamic -lXext -lX11 -lpthread -lXv -lGL -ldl -lfaac -lx264 -lpthread -lfaac -lx264 -lpthread -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -llircc
2742/tmp/mplayer-conf-20438-22906.c:1:24: error: lirc/lircc.h: No such file or directory
2743
2744
2745Result is: no
2746##########################################
2747
2748
2749int main(void) { return 0; }
2750
2751cc -I. -Ilibavutil -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -D_REENTRANT -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -DHAVE_CONFIG_H -I/usr/include/freetype2 -Wl,-z,noexecstack -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lmpcdec -lxvidcore -lm -lpthread -ldl -rdynamic -lXext -lX11 -lpthread -lXv -lGL -ldl -lfaac -lx264 -lpthread -lfaac -lx264 -lpthread -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -Wdeclaration-after-statement
2752
2753
2754
2755int main(void) { return 0; }
2756
2757cc -Wdeclaration-after-statement -I. -Ilibavutil -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -D_REENTRANT -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -DHAVE_CONFIG_H -I/usr/include/freetype2 -Wl,-z,noexecstack -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lmpcdec -lxvidcore -lm -lpthread -ldl -rdynamic -lXext -lX11 -lpthread -lXv -lGL -ldl -lfaac -lx264 -lpthread -lfaac -lx264 -lpthread -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -Wno-pointer-sign
2758
2759
2760
2761int main(void) { return 0; }
2762
2763cc -Wno-pointer-sign -Wdeclaration-after-statement -I. -Ilibavutil -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -D_REENTRANT -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -DHAVE_CONFIG_H -I/usr/include/freetype2 -Wl,-z,noexecstack -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lmpcdec -lxvidcore -lm -lpthread -ldl -rdynamic -lXext -lX11 -lpthread -lXv -lGL -ldl -lfaac -lx264 -lpthread -lfaac -lx264 -lpthread -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -Wdisabled-optimization
2764
2765
2766
2767int main(void) { return 0; }
2768
2769cc -Wdisabled-optimization -Wno-pointer-sign -Wdeclaration-after-statement -I. -Ilibavutil -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 -pipe -ffast-math -fomit-frame-pointer -D_REENTRANT -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -DHAVE_CONFIG_H -I/usr/include/freetype2 -Wl,-z,noexecstack -lpng -lz -ljpeg -lasound -ldl -lpthread -lcdda_interface -lcdda_paranoia -lfreetype -lz -lfontconfig -lz -lmpcdec -lxvidcore -lm -lpthread -ldl -rdynamic -lXext -lX11 -lpthread -lXv -lGL -ldl -lfaac -lx264 -lpthread -lfaac -lx264 -lpthread -o /tmp/mplayer-conf-5615-22906 /tmp/mplayer-conf-20438-22906.c -mno-omit-leaf-frame-pointer
2770cc1: error: unrecognized command line option "-mno-omit-leaf-frame-pointer"
2771
2772
2773============ Checking for DVD support (libdvdnav) ============
2774./configure: line 7648: dvdnav-config: command not found
2775Result is: no
2776##########################################
2777