Guest User

Wonslung

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