Ticket #917: configure.log

File configure.log, 142.8 KB (added by vishnudead@…, 19 years ago)

"configure.log" contents

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