Ticket #1073: configure.2.log

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

configure log file r26632

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