configure
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:1341k
源码类别:

midi

开发平台:

Unix_Linux

  1.   PLUGINS="${PLUGINS} i420_rgb_mmx"
  2.   LTLIBi420_rgb_mmx="libi420_rgb_mmx_plugin.la"
  3.   PLUGINS="${PLUGINS} i420_yuy2_mmx"
  4.   LTLIBi420_yuy2_mmx="libi420_yuy2_mmx_plugin.la"
  5.   PLUGINS="${PLUGINS} i422_yuy2_mmx"
  6.   LTLIBi422_yuy2_mmx="libi422_yuy2_mmx_plugin.la"
  7.   PLUGINS="${PLUGINS} i420_ymga_mmx"
  8.   LTLIBi420_ymga_mmx="libi420_ymga_mmx_plugin.la"
  9. fi
  10.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC groks MMX EXT inline assembly" >&5
  11. $as_echo_n "checking if $CC groks MMX EXT inline assembly... " >&6; }
  12. if test "${ac_cv_mmxext_inline+set}" = set; then :
  13.   $as_echo_n "(cached) " >&6
  14. else
  15.   CFLAGS="${CFLAGS_save}"
  16.      cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  17. /* end confdefs.h.  */
  18. int
  19. main ()
  20. {
  21. void *p;asm volatile("maskmovq %%mm1,%%mm2"::"r"(p));
  22.   ;
  23.   return 0;
  24. }
  25. _ACEOF
  26. if ac_fn_c_try_compile "$LINENO"; then :
  27.   ac_cv_mmxext_inline=yes
  28. else
  29.   ac_cv_mmxext_inline=no
  30. fi
  31. rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  32. fi
  33. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_mmxext_inline" >&5
  34. $as_echo "$ac_cv_mmxext_inline" >&6; }
  35.   if test "${ac_cv_mmxext_inline}" != "no"; then :
  36. $as_echo "#define CAN_COMPILE_MMXEXT 1" >>confdefs.h
  37.   PLUGINS="${PLUGINS} memcpymmxext"
  38.   LTLIBmemcpymmxext="libmemcpymmxext_plugin.la"
  39. fi
  40. fi
  41. # Check whether --enable-sse was given.
  42. if test "${enable_sse+set}" = set; then :
  43.   enableval=$enable_sse;
  44. else
  45.   case "${host_cpu}" in
  46.     i686|x86_64)
  47.       enable_sse=yes
  48.       ;;
  49.     *)
  50.       enable_sse=no
  51.       ;;
  52.   esac
  53. fi
  54. if test "${enable_sse}" != "no"; then :
  55.   ARCH="${ARCH} sse sse2"
  56.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC groks SSE2 intrinsics" >&5
  57. $as_echo_n "checking if $CC groks SSE2 intrinsics... " >&6; }
  58. if test "${ac_cv_c_sse2_intrinsics+set}" = set; then :
  59.   $as_echo_n "(cached) " >&6
  60. else
  61.   CFLAGS="${CFLAGS_save} -O -msse2"
  62.      cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  63. /* end confdefs.h.  */
  64. #include <emmintrin.h>
  65.                      #include <stdint.h>
  66.                      uint64_t frobzor;
  67. int
  68. main ()
  69. {
  70. __m128i a, b, c;
  71.                      a = b = c = _mm_set1_epi64((__m64)frobzor);
  72.                      a = _mm_slli_epi16(a, 3);
  73.                      a = _mm_adds_epi16(a, b);
  74.                      c = _mm_srli_epi16(c, 8);
  75.                      c = _mm_slli_epi16(c, 3);
  76.                      b = _mm_adds_epi16(b, c);
  77.                      a = _mm_unpacklo_epi8(a, b);
  78.                      frobzor = (uint64_t)_mm_movepi64_pi64(a);
  79.   ;
  80.   return 0;
  81. }
  82. _ACEOF
  83. if ac_fn_c_try_compile "$LINENO"; then :
  84.   ac_cv_c_sse2_intrinsics=yes
  85. else
  86.   ac_cv_c_sse2_intrinsics=no
  87. fi
  88. rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  89. fi
  90. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_sse2_intrinsics" >&5
  91. $as_echo "$ac_cv_c_sse2_intrinsics" >&6; }
  92.   if test "${ac_cv_c_sse2_intrinsics}" != "no"; then :
  93. $as_echo "#define HAVE_SSE2_INTRINSICS 1" >>confdefs.h
  94.   for element in i420_rgb_sse2 i420_yuy2_sse2 i422_yuy2_sse2; do
  95.     eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} -msse2"'"'
  96.     am_modules_with_cflags="${am_modules_with_cflags} ${element}"
  97.   done
  98. fi
  99.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC groks SSE inline assembly" >&5
  100. $as_echo_n "checking if $CC groks SSE inline assembly... " >&6; }
  101. if test "${ac_cv_sse_inline+set}" = set; then :
  102.   $as_echo_n "(cached) " >&6
  103. else
  104.   CFLAGS="${CFLAGS_save}"
  105.      cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  106. /* end confdefs.h.  */
  107. int
  108. main ()
  109. {
  110. void *p;asm volatile("xorps %%xmm1,%%xmm2"::"r"(p));
  111.   ;
  112.   return 0;
  113. }
  114. _ACEOF
  115. if ac_fn_c_try_compile "$LINENO"; then :
  116.   ac_cv_sse_inline=yes
  117. else
  118.   ac_cv_sse_inline=no
  119. fi
  120. rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  121. fi
  122. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sse_inline" >&5
  123. $as_echo "$ac_cv_sse_inline" >&6; }
  124.   if test "${ac_cv_sse_inline}" != "no" -a "${SYS}" != "solaris"; then :
  125. $as_echo "#define CAN_COMPILE_SSE 1" >>confdefs.h
  126. fi
  127.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC groks SSE2 inline assembly" >&5
  128. $as_echo_n "checking if $CC groks SSE2 inline assembly... " >&6; }
  129. if test "${ac_cv_sse2_inline+set}" = set; then :
  130.   $as_echo_n "(cached) " >&6
  131. else
  132.   CFLAGS="${CFLAGS_save}"
  133.      cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  134. /* end confdefs.h.  */
  135. int
  136. main ()
  137. {
  138. void *p;asm volatile("punpckhqdq %%xmm1,%%xmm2"::"r"(p));
  139.   ;
  140.   return 0;
  141. }
  142. _ACEOF
  143. if ac_fn_c_try_compile "$LINENO"; then :
  144.   ac_cv_sse2_inline=yes
  145. else
  146.   ac_cv_sse2_inline=no
  147. fi
  148. rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  149. fi
  150. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sse2_inline" >&5
  151. $as_echo "$ac_cv_sse2_inline" >&6; }
  152.   if test "${ac_cv_sse2_inline}" != "no" -a "${SYS}" != "solaris"; then :
  153. $as_echo "#define CAN_COMPILE_SSE2 1" >>confdefs.h
  154.   PLUGINS="${PLUGINS} i420_rgb_sse2"
  155.   LTLIBi420_rgb_sse2="libi420_rgb_sse2_plugin.la"
  156.   PLUGINS="${PLUGINS} i420_yuy2_sse2"
  157.   LTLIBi420_yuy2_sse2="libi420_yuy2_sse2_plugin.la"
  158.   PLUGINS="${PLUGINS} i422_yuy2_sse2"
  159.   LTLIBi422_yuy2_sse2="libi422_yuy2_sse2_plugin.la"
  160. fi
  161. fi
  162. { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC groks 3D Now! inline assembly" >&5
  163. $as_echo_n "checking if $CC groks 3D Now! inline assembly... " >&6; }
  164. if test "${ac_cv_3dnow_inline+set}" = set; then :
  165.   $as_echo_n "(cached) " >&6
  166. else
  167.   CFLAGS="${CFLAGS_save}"
  168.      cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  169. /* end confdefs.h.  */
  170. int
  171. main ()
  172. {
  173. void *p;asm volatile("pfadd %%mm1,%%mm2"::"r"(p));
  174.   ;
  175.   return 0;
  176. }
  177. _ACEOF
  178. if ac_fn_c_try_compile "$LINENO"; then :
  179.   ac_cv_3dnow_inline=yes
  180. else
  181.   ac_cv_3dnow_inline=no
  182. fi
  183. rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  184. fi
  185. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_3dnow_inline" >&5
  186. $as_echo "$ac_cv_3dnow_inline" >&6; }
  187. if test "${ac_cv_3dnow_inline}" != "no"; then :
  188. $as_echo "#define CAN_COMPILE_3DNOW 1" >>confdefs.h
  189.   PLUGINS="${PLUGINS} memcpy3dn"
  190.   LTLIBmemcpy3dn="libmemcpy3dn_plugin.la"
  191. fi
  192. # Check whether --enable-altivec was given.
  193. if test "${enable_altivec+set}" = set; then :
  194.   enableval=$enable_altivec;
  195. else
  196.   if test "${host_cpu}" = "powerpc"; then :
  197.   enable_altivec=yes
  198. else
  199.   enable_altivec=no
  200. fi
  201. fi
  202. if test "${enable_altivec}" = "yes"; then :
  203.   ARCH="${ARCH} altivec";
  204.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC groks AltiVec inline assembly" >&5
  205. $as_echo_n "checking if $CC groks AltiVec inline assembly... " >&6; }
  206. if test "${ac_cv_altivec_inline+set}" = set; then :
  207.   $as_echo_n "(cached) " >&6
  208. else
  209.   CFLAGS="${CFLAGS_save}"
  210.      cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  211. /* end confdefs.h.  */
  212. int
  213. main ()
  214. {
  215. asm volatile("vperm 0,1,2,3");
  216.   ;
  217.   return 0;
  218. }
  219. _ACEOF
  220. if ac_fn_c_try_compile "$LINENO"; then :
  221.   ac_cv_altivec_inline="yes"
  222. else
  223.   CFLAGS="${CFLAGS_save} -Wa,-m7400"
  224.           cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  225. /* end confdefs.h.  */
  226. int
  227. main ()
  228. {
  229. asm volatile("vperm 0,1,2,3");
  230.   ;
  231.   return 0;
  232. }
  233. _ACEOF
  234. if ac_fn_c_try_compile "$LINENO"; then :
  235.   ac_cv_altivec_inline="-Wa,-m7400"
  236. else
  237.   ac_cv_altivec_inline=no
  238. fi
  239. rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  240. fi
  241. rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  242. fi
  243. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_altivec_inline" >&5
  244. $as_echo "$ac_cv_altivec_inline" >&6; }
  245.   if test "${ac_cv_altivec_inline}" != "no"; then :
  246. $as_echo "#define CAN_COMPILE_ALTIVEC 1" >>confdefs.h
  247.     if test "${ac_cv_altivec_inline}" != "yes"; then :
  248.   for element in idctaltivec; do
  249.     eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} ${ac_cv_altivec_inline}"'"'
  250.     am_modules_with_cflags="${am_modules_with_cflags} ${element}"
  251.   done
  252.   for element in motionaltivec; do
  253.     eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} ${ac_cv_altivec_inline}"'"'
  254.     am_modules_with_cflags="${am_modules_with_cflags} ${element}"
  255.   done
  256.   for element in memcpyaltivec; do
  257.     eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} ${ac_cv_altivec_inline}"'"'
  258.     am_modules_with_cflags="${am_modules_with_cflags} ${element}"
  259.   done
  260.   for element in i420_yuy2_altivec; do
  261.     eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} ${ac_cv_altivec_inline}"'"'
  262.     am_modules_with_cflags="${am_modules_with_cflags} ${element}"
  263.   done
  264.   for element in libvlccore; do
  265.     eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} ${ac_cv_altivec_inline}"'"'
  266.     am_modules_with_cflags="${am_modules_with_cflags} ${element}"
  267.   done
  268. fi
  269.   PLUGINS="${PLUGINS} memcpyaltivec"
  270.   LTLIBmemcpyaltivec="libmemcpyaltivec_plugin.la"
  271.   PLUGINS="${PLUGINS} i420_yuy2_altivec"
  272.   LTLIBi420_yuy2_altivec="libi420_yuy2_altivec_plugin.la"
  273. fi
  274.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC groks AltiVec C extensions" >&5
  275. $as_echo_n "checking if $CC groks AltiVec C extensions... " >&6; }
  276. if test "${ac_cv_c_altivec+set}" = set; then :
  277.   $as_echo_n "(cached) " >&6
  278. else
  279.   # OS X/PPC test (gcc 4.x)
  280.    CFLAGS="${CFLAGS_save} -mpim-altivec -force_cpusubtype_ALL"
  281.    cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  282. /* end confdefs.h.  */
  283. vector unsigned char foo;
  284. int
  285. main ()
  286. {
  287. vec_ld(0, (unsigned char *)0);
  288.   ;
  289.   return 0;
  290. }
  291. _ACEOF
  292. if ac_fn_c_try_compile "$LINENO"; then :
  293.   ac_cv_c_altivec="-mpim-altivec -force_cpusubtype_ALL"
  294. else
  295.   # OS X/PPC test (gcc 3.x)
  296.       CFLAGS="${CFLAGS_save} -faltivec"
  297.       cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  298. /* end confdefs.h.  */
  299. vector unsigned char foo;
  300. int
  301. main ()
  302. {
  303. vec_ld(1 * sizeof(vector float), (unsigned char *)0);
  304.   ;
  305.   return 0;
  306. }
  307. _ACEOF
  308. if ac_fn_c_try_compile "$LINENO"; then :
  309.   ac_cv_c_altivec="-faltivec"
  310. else
  311.           # Linux/PPC test (gcc 4.x)
  312.          CFLAGS="${CFLAGS_save} -maltivec"
  313.          cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  314. /* end confdefs.h.  */
  315. #include <altivec.h>
  316. int
  317. main ()
  318. {
  319. vec_ld(0, (unsigned char *)0);
  320.   ;
  321.   return 0;
  322. }
  323. _ACEOF
  324. if ac_fn_c_try_compile "$LINENO"; then :
  325.   ac_cv_c_altivec="-maltivec"
  326. else
  327.   # Linux/PPC test (gcc 3.3)
  328.             CFLAGS="${CFLAGS_save} -maltivec -mabi=altivec"
  329.             cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  330. /* end confdefs.h.  */
  331. #include <altivec.h>
  332. int
  333. main ()
  334. {
  335. vec_ld(0, (unsigned char *)0);
  336.   ;
  337.   return 0;
  338. }
  339. _ACEOF
  340. if ac_fn_c_try_compile "$LINENO"; then :
  341.   ac_cv_c_altivec=""
  342.                ac_cv_c_altivec_abi="-maltivec -mabi=altivec"
  343. else
  344.   # Linux/PPC test (gcc 3.3)
  345.                CFLAGS="${CFLAGS_save} -fvec"
  346.                cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  347. /* end confdefs.h.  */
  348. #include <altivec.h>
  349. int
  350. main ()
  351. {
  352. vec_ld(0, (unsigned char *)0);
  353.   ;
  354.   return 0;
  355. }
  356. _ACEOF
  357. if ac_fn_c_try_compile "$LINENO"; then :
  358.   ac_cv_c_altivec="-fvec"
  359. else
  360.   ac_cv_c_altivec=no
  361. fi
  362. rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  363. fi
  364. rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  365. fi
  366. rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  367. fi
  368. rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  369. fi
  370. rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  371.    CFLAGS="${CFLAGS_save}"
  372. fi
  373. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_altivec" >&5
  374. $as_echo "$ac_cv_c_altivec" >&6; }
  375.   if test "${ac_cv_c_altivec}" != "no"; then :
  376.     CPPFLAGS="${CPPFLAGS_save} ${ac_cv_c_altivec}"
  377. fi
  378.   for ac_header in altivec.h
  379. do :
  380.   ac_fn_c_check_header_mongrel "$LINENO" "altivec.h" "ac_cv_header_altivec_h" "$ac_includes_default"
  381. if test "x$ac_cv_header_altivec_h" = x""yes; then :
  382.   cat >>confdefs.h <<_ACEOF
  383. #define HAVE_ALTIVEC_H 1
  384. _ACEOF
  385. fi
  386. done
  387.   CPPFLAGS="${CPPFLAGS_save}"
  388.   if test "${ac_cv_c_altivec}" != "no"; then :
  389. $as_echo "#define CAN_COMPILE_C_ALTIVEC 1" >>confdefs.h
  390.   for element in libvlccore; do
  391.     eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} ${ac_cv_c_altivec}"'"'
  392.     am_modules_with_cflags="${am_modules_with_cflags} ${element}"
  393.   done
  394.   for element in idctaltivec motionaltivec; do
  395.     eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} ${ac_cv_c_altivec}"'"'
  396.     am_modules_with_cflags="${am_modules_with_cflags} ${element}"
  397.   done
  398.   for element in i420_yuy2_altivec memcpyaltivec deinterlace; do
  399.     eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} ${ac_cv_c_altivec} ${ac_cv_c_altivec_abi}"'"'
  400.     am_modules_with_cflags="${am_modules_with_cflags} ${element}"
  401.   done
  402.   PLUGINS="${PLUGINS} memcpyaltivec"
  403.   LTLIBmemcpyaltivec="libmemcpyaltivec_plugin.la"
  404.   PLUGINS="${PLUGINS} i420_yuy2_altivec"
  405.   LTLIBi420_yuy2_altivec="libi420_yuy2_altivec_plugin.la"
  406. fi
  407.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking if linker needs -framework vecLib" >&5
  408. $as_echo_n "checking if linker needs -framework vecLib... " >&6; }
  409. if test "${ac_cv_ld_altivec+set}" = set; then :
  410.   $as_echo_n "(cached) " >&6
  411. else
  412.   LDFLAGS="${LDFLAGS_vlc} -Wl,-framework,vecLib"
  413.      cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  414. /* end confdefs.h.  */
  415. int
  416. main ()
  417. {
  418.   ;
  419.   return 0;
  420. }
  421. _ACEOF
  422. if ac_fn_c_try_link "$LINENO"; then :
  423.   ac_cv_ld_altivec=yes
  424. else
  425.   ac_cv_ld_altivec=no
  426. fi
  427. rm -f core conftest.err conftest.$ac_objext 
  428.     conftest$ac_exeext conftest.$ac_ext
  429.      LDFLAGS="${LDFLAGS_save}"
  430. fi
  431. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_ld_altivec" >&5
  432. $as_echo "$ac_cv_ld_altivec" >&6; }
  433.   if test "${ac_cv_ld_altivec}" != "no"; then :
  434.   for element in libvlccore idctaltivec motionaltivec memcpyaltivec; do
  435.     eval "LDFLAGS_${element}="'"'"-Wl,-framework,vecLib "'$'"{LDFLAGS_${element}} "'"'
  436.     am_modules_with_ldflags="${am_modules_with_ldflags} ${element}"
  437.   done
  438. fi
  439. fi
  440. # Check whether --with-tuning was given.
  441. if test "${with_tuning+set}" = set; then :
  442.   withval=$with_tuning;
  443. fi
  444. if test -n "${with_tuning}"; then
  445.     if test "${with_tuning}" != "no"; then
  446.         CFLAGS_TUNING="-mtune=${with_tuning}"
  447.     fi
  448. else
  449.     if test "${SYS}" = "darwin" -a "${host_cpu}" != "powerpc"; then
  450.         CFLAGS_TUNING="-march=pentium-m -mtune=prescott"
  451.     elif test "${host_cpu}" = "i686" -o "${host_cpu}" = "i586" -o "${host_cpu}" = "i486" -o "${host_cpu}" = "i386"; then
  452.         CFLAGS_TUNING="-mtune=pentium2"
  453.     elif test "${host_cpu}" = "x86_64"; then
  454.         CFLAGS_TUNING="-mtune=athlon64"
  455.     elif test "${host_cpu}" = "powerpc"; then
  456.         CFLAGS_TUNING="-mtune=G4";
  457.     fi
  458. fi
  459. if test "${CFLAGS_TUNING}"; then :
  460.   CFLAGS_save="${CFLAGS}"
  461.     CFLAGS="${CFLAGS} ${CFLAGS_TUNING}"
  462.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts ${CFLAGS_TUNING}" >&5
  463. $as_echo_n "checking whether $CC accepts ${CFLAGS_TUNING}... " >&6; }
  464.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  465. /* end confdefs.h.  */
  466. _ACEOF
  467. if ac_fn_c_try_compile "$LINENO"; then :
  468.   tuning="yes"
  469. else
  470.   CFLAGS_TUNING=""; tuning="no"
  471.                        if test "${with_tuning}"; then :
  472.   as_fn_error "requested tuning not supported" "$LINENO" 5
  473. fi
  474. fi
  475. rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  476.     { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tuning" >&5
  477. $as_echo "$tuning" >&6; }
  478.     CFLAGS="${CFLAGS_save}"
  479. fi
  480. # Check whether --enable-optimize-memory was given.
  481. if test "${enable_optimize_memory+set}" = set; then :
  482.   enableval=$enable_optimize_memory;
  483. fi
  484. if test "${enable_optimize_memory}" = "yes"; then
  485. $as_echo "#define OPTIMIZE_MEMORY 1" >>confdefs.h
  486. fi
  487. # Check whether --enable-optimizations was given.
  488. if test "${enable_optimizations+set}" = set; then :
  489.   enableval=$enable_optimizations;
  490. fi
  491. if test "${enable_optimizations}" != "no"; then
  492.    if test "${enable_optimize_memory}" = "yes"; then
  493.       enable_optimizations="size"
  494.    else
  495.       enable_optimizations="speed"
  496.    fi
  497. fi
  498. # Check whether --enable-debug was given.
  499. if test "${enable_debug+set}" = set; then :
  500.   enableval=$enable_debug;
  501. fi
  502. test "${enable_debug}" != "yes" && enable_debug="no"
  503. if test "x${enable_debug}" = "xno"; then :
  504.   $as_echo "#define NDEBUG 1" >>confdefs.h
  505. else
  506.   for ac_header in valgrind/valgrind.h
  507. do :
  508.   ac_fn_c_check_header_mongrel "$LINENO" "valgrind/valgrind.h" "ac_cv_header_valgrind_valgrind_h" "$ac_includes_default"
  509. if test "x$ac_cv_header_valgrind_valgrind_h" = x""yes; then :
  510.   cat >>confdefs.h <<_ACEOF
  511. #define HAVE_VALGRIND_VALGRIND_H 1
  512. _ACEOF
  513. fi
  514. done
  515. fi
  516. # Check whether --enable-run-as-root was given.
  517. if test "${enable_run_as_root+set}" = set; then :
  518.   enableval=$enable_run_as_root;
  519. fi
  520. if test "${enable_run_as_root}" = "yes"; then :
  521. $as_echo "#define ALLOW_RUN_AS_ROOT 1" >>confdefs.h
  522. fi
  523. # Check whether --enable-coverage was given.
  524. if test "${enable_coverage+set}" = set; then :
  525.   enableval=$enable_coverage;
  526. else
  527.   enable_coverage="no"
  528. fi
  529. if test "${enable_coverage}" != "no"; then :
  530. CFLAGS="-fprofile-arcs -ftest-coverage ${CFLAGS}"
  531. CXXFLAGS="-fprofile-arcs -ftest-coverage ${CXXFLAGS}"
  532. LDFLAGS="-lgcov ${LDFLAGS}"
  533. CFLAGS_save="${CFLAGS}"
  534. CXXFLAGS_save="${CXXFLAGS}"
  535. LDFLAGS_save="${LDFLAGS}"
  536. fi
  537. # Check whether --enable-release was given.
  538. if test "${enable_release+set}" = set; then :
  539.   enableval=$enable_release;
  540. fi
  541. test "${enable_release}" != "yes" && enable_release="no"
  542. # Check whether --enable-sout was given.
  543. if test "${enable_sout+set}" = set; then :
  544.   enableval=$enable_sout;
  545. fi
  546. if test "${enable_sout}" != "no"; then :
  547. $as_echo "#define ENABLE_SOUT 1" >>confdefs.h
  548. fi
  549.  if test "${enable_sout}" != "no"; then
  550.   ENABLE_SOUT_TRUE=
  551.   ENABLE_SOUT_FALSE='#'
  552. else
  553.   ENABLE_SOUT_TRUE='#'
  554.   ENABLE_SOUT_FALSE=
  555. fi
  556. # Check whether --enable-switcher was given.
  557. if test "${enable_switcher+set}" = set; then :
  558.   enableval=$enable_switcher;
  559. fi
  560. # Check whether --enable-shout was given.
  561. if test "${enable_shout+set}" = set; then :
  562.   enableval=$enable_shout;
  563. fi
  564. if test "${enable_shout}" = "yes"; then
  565. pkg_failed=no
  566. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SHOUT" >&5
  567. $as_echo_n "checking for SHOUT... " >&6; }
  568. if test -n "$PKG_CONFIG"; then
  569.     if test -n "$SHOUT_CFLAGS"; then
  570.         pkg_cv_SHOUT_CFLAGS="$SHOUT_CFLAGS"
  571.     else
  572.         if test -n "$PKG_CONFIG" && 
  573.     { { $as_echo "$as_me:${as_lineno-$LINENO}: $PKG_CONFIG --exists --print-errors "shout >= 2.1""; } >&5
  574.   ($PKG_CONFIG --exists --print-errors "shout >= 2.1") 2>&5
  575.   ac_status=$?
  576.   $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
  577.   test $ac_status = 0; }; then
  578.   pkg_cv_SHOUT_CFLAGS=`$PKG_CONFIG --cflags "shout >= 2.1" 2>/dev/null`
  579. else
  580.   pkg_failed=yes
  581. fi
  582.     fi
  583. else
  584. pkg_failed=untried
  585. fi
  586. if test -n "$PKG_CONFIG"; then
  587.     if test -n "$SHOUT_LIBS"; then
  588.         pkg_cv_SHOUT_LIBS="$SHOUT_LIBS"
  589.     else
  590.         if test -n "$PKG_CONFIG" && 
  591.     { { $as_echo "$as_me:${as_lineno-$LINENO}: $PKG_CONFIG --exists --print-errors "shout >= 2.1""; } >&5
  592.   ($PKG_CONFIG --exists --print-errors "shout >= 2.1") 2>&5
  593.   ac_status=$?
  594.   $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
  595.   test $ac_status = 0; }; then
  596.   pkg_cv_SHOUT_LIBS=`$PKG_CONFIG --libs "shout >= 2.1" 2>/dev/null`
  597. else
  598.   pkg_failed=yes
  599. fi
  600.     fi
  601. else
  602. pkg_failed=untried
  603. fi
  604. if test $pkg_failed = yes; then
  605. if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
  606.         _pkg_short_errors_supported=yes
  607. else
  608.         _pkg_short_errors_supported=no
  609. fi
  610.         if test $_pkg_short_errors_supported = yes; then
  611.         SHOUT_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "shout >= 2.1"`
  612.         else
  613.         SHOUT_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "shout >= 2.1"`
  614.         fi
  615. # Put the nasty error message in config.log where it belongs
  616. echo "$SHOUT_PKG_ERRORS" >&5
  617. { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  618. $as_echo "no" >&6; }
  619.                 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: libshout library not found" >&5
  620. $as_echo "$as_me: WARNING: libshout library not found" >&2;}
  621. elif test $pkg_failed = untried; then
  622. { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: libshout library not found" >&5
  623. $as_echo "$as_me: WARNING: libshout library not found" >&2;}
  624. else
  625. SHOUT_CFLAGS=$pkg_cv_SHOUT_CFLAGS
  626. SHOUT_LIBS=$pkg_cv_SHOUT_LIBS
  627.         { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
  628. $as_echo "yes" >&6; }
  629. $as_echo "#define HAVE_SHOUT 1" >>confdefs.h
  630.   PLUGINS="${PLUGINS} access_output_shout"
  631.   LTLIBaccess_output_shout="libaccess_output_shout_plugin.la"
  632.   for element in access_output_shout; do
  633.     eval "LIBS_${element}="'"'"$SHOUT_LIBS "'$'"{LIBS_${element}} "'"'
  634.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  635.   done
  636.   for element in access_output_shout; do
  637.     eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} $SHOUT_CFLAGS"'"'
  638.     am_modules_with_cflags="${am_modules_with_cflags} ${element}"
  639.   done
  640. fi
  641. fi
  642. # Check whether --enable-lua was given.
  643. if test "${enable_lua+set}" = set; then :
  644.   enableval=$enable_lua;
  645. fi
  646. if test "${enable_lua}" != "no"
  647. then
  648. pkg_failed=no
  649. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LUA" >&5
  650. $as_echo_n "checking for LUA... " >&6; }
  651. if test -n "$PKG_CONFIG"; then
  652.     if test -n "$LUA_CFLAGS"; then
  653.         pkg_cv_LUA_CFLAGS="$LUA_CFLAGS"
  654.     else
  655.         if test -n "$PKG_CONFIG" && 
  656.     { { $as_echo "$as_me:${as_lineno-$LINENO}: $PKG_CONFIG --exists --print-errors "lua5.1""; } >&5
  657.   ($PKG_CONFIG --exists --print-errors "lua5.1") 2>&5
  658.   ac_status=$?
  659.   $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
  660.   test $ac_status = 0; }; then
  661.   pkg_cv_LUA_CFLAGS=`$PKG_CONFIG --cflags "lua5.1" 2>/dev/null`
  662. else
  663.   pkg_failed=yes
  664. fi
  665.     fi
  666. else
  667. pkg_failed=untried
  668. fi
  669. if test -n "$PKG_CONFIG"; then
  670.     if test -n "$LUA_LIBS"; then
  671.         pkg_cv_LUA_LIBS="$LUA_LIBS"
  672.     else
  673.         if test -n "$PKG_CONFIG" && 
  674.     { { $as_echo "$as_me:${as_lineno-$LINENO}: $PKG_CONFIG --exists --print-errors "lua5.1""; } >&5
  675.   ($PKG_CONFIG --exists --print-errors "lua5.1") 2>&5
  676.   ac_status=$?
  677.   $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
  678.   test $ac_status = 0; }; then
  679.   pkg_cv_LUA_LIBS=`$PKG_CONFIG --libs "lua5.1" 2>/dev/null`
  680. else
  681.   pkg_failed=yes
  682. fi
  683.     fi
  684. else
  685. pkg_failed=untried
  686. fi
  687. if test $pkg_failed = yes; then
  688. if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
  689.         _pkg_short_errors_supported=yes
  690. else
  691.         _pkg_short_errors_supported=no
  692. fi
  693.         if test $_pkg_short_errors_supported = yes; then
  694.         LUA_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "lua5.1"`
  695.         else
  696.         LUA_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "lua5.1"`
  697.         fi
  698. # Put the nasty error message in config.log where it belongs
  699. echo "$LUA_PKG_ERRORS" >&5
  700. { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  701. $as_echo "no" >&6; }
  702.     { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: lua5.1 not found, trying lua >= 5.1 instead" >&5
  703. $as_echo "$as_me: WARNING: lua5.1 not found, trying lua >= 5.1 instead" >&2;}
  704. pkg_failed=no
  705. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LUA" >&5
  706. $as_echo_n "checking for LUA... " >&6; }
  707. if test -n "$PKG_CONFIG"; then
  708.     if test -n "$LUA_CFLAGS"; then
  709.         pkg_cv_LUA_CFLAGS="$LUA_CFLAGS"
  710.     else
  711.         if test -n "$PKG_CONFIG" && 
  712.     { { $as_echo "$as_me:${as_lineno-$LINENO}: $PKG_CONFIG --exists --print-errors "lua >= 5.1""; } >&5
  713.   ($PKG_CONFIG --exists --print-errors "lua >= 5.1") 2>&5
  714.   ac_status=$?
  715.   $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
  716.   test $ac_status = 0; }; then
  717.   pkg_cv_LUA_CFLAGS=`$PKG_CONFIG --cflags "lua >= 5.1" 2>/dev/null`
  718. else
  719.   pkg_failed=yes
  720. fi
  721.     fi
  722. else
  723. pkg_failed=untried
  724. fi
  725. if test -n "$PKG_CONFIG"; then
  726.     if test -n "$LUA_LIBS"; then
  727.         pkg_cv_LUA_LIBS="$LUA_LIBS"
  728.     else
  729.         if test -n "$PKG_CONFIG" && 
  730.     { { $as_echo "$as_me:${as_lineno-$LINENO}: $PKG_CONFIG --exists --print-errors "lua >= 5.1""; } >&5
  731.   ($PKG_CONFIG --exists --print-errors "lua >= 5.1") 2>&5
  732.   ac_status=$?
  733.   $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
  734.   test $ac_status = 0; }; then
  735.   pkg_cv_LUA_LIBS=`$PKG_CONFIG --libs "lua >= 5.1" 2>/dev/null`
  736. else
  737.   pkg_failed=yes
  738. fi
  739.     fi
  740. else
  741. pkg_failed=untried
  742. fi
  743. if test $pkg_failed = yes; then
  744. if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
  745.         _pkg_short_errors_supported=yes
  746. else
  747.         _pkg_short_errors_supported=no
  748. fi
  749.         if test $_pkg_short_errors_supported = yes; then
  750.         LUA_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "lua >= 5.1"`
  751.         else
  752.         LUA_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "lua >= 5.1"`
  753.         fi
  754. # Put the nasty error message in config.log where it belongs
  755. echo "$LUA_PKG_ERRORS" >&5
  756. { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  757. $as_echo "no" >&6; }
  758.         have_lua=yes
  759.         for ac_header in lua.h lauxlib.h lualib.h
  760. do :
  761.   as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
  762. ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
  763. eval as_val=$$as_ac_Header
  764.    if test "x$as_val" = x""yes; then :
  765.   cat >>confdefs.h <<_ACEOF
  766. #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
  767. _ACEOF
  768. else
  769.    have_lua=no
  770. fi
  771. done
  772.         { $as_echo "$as_me:${as_lineno-$LINENO}: checking for luaL_newstate in -llua5.1 " >&5
  773. $as_echo_n "checking for luaL_newstate in -llua5.1 ... " >&6; }
  774. if test "${ac_cv_lib_lua5_1__luaL_newstate+set}" = set; then :
  775.   $as_echo_n "(cached) " >&6
  776. else
  777.   ac_check_lib_save_LIBS=$LIBS
  778. LIBS="-llua5.1   $LIBS"
  779. cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  780. /* end confdefs.h.  */
  781. /* Override any GCC internal prototype to avoid an error.
  782.    Use char because int might match the return type of a GCC
  783.    builtin and then its argument prototype would still apply.  */
  784. #ifdef __cplusplus
  785. extern "C"
  786. #endif
  787. char luaL_newstate ();
  788. int
  789. main ()
  790. {
  791. return luaL_newstate ();
  792.   ;
  793.   return 0;
  794. }
  795. _ACEOF
  796. if ac_fn_c_try_link "$LINENO"; then :
  797.   ac_cv_lib_lua5_1__luaL_newstate=yes
  798. else
  799.   ac_cv_lib_lua5_1__luaL_newstate=no
  800. fi
  801. rm -f core conftest.err conftest.$ac_objext 
  802.     conftest$ac_exeext conftest.$ac_ext
  803. LIBS=$ac_check_lib_save_LIBS
  804. fi
  805. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lua5_1__luaL_newstate" >&5
  806. $as_echo "$ac_cv_lib_lua5_1__luaL_newstate" >&6; }
  807. if test "x$ac_cv_lib_lua5_1__luaL_newstate" = x""yes; then :
  808.   LUA_LIBS="-llua5.1"
  809. else
  810.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for luaL_newstate in -llua51 " >&5
  811. $as_echo_n "checking for luaL_newstate in -llua51 ... " >&6; }
  812. if test "${ac_cv_lib_lua51__luaL_newstate+set}" = set; then :
  813.   $as_echo_n "(cached) " >&6
  814. else
  815.   ac_check_lib_save_LIBS=$LIBS
  816. LIBS="-llua51   $LIBS"
  817. cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  818. /* end confdefs.h.  */
  819. /* Override any GCC internal prototype to avoid an error.
  820.    Use char because int might match the return type of a GCC
  821.    builtin and then its argument prototype would still apply.  */
  822. #ifdef __cplusplus
  823. extern "C"
  824. #endif
  825. char luaL_newstate ();
  826. int
  827. main ()
  828. {
  829. return luaL_newstate ();
  830.   ;
  831.   return 0;
  832. }
  833. _ACEOF
  834. if ac_fn_c_try_link "$LINENO"; then :
  835.   ac_cv_lib_lua51__luaL_newstate=yes
  836. else
  837.   ac_cv_lib_lua51__luaL_newstate=no
  838. fi
  839. rm -f core conftest.err conftest.$ac_objext 
  840.     conftest$ac_exeext conftest.$ac_ext
  841. LIBS=$ac_check_lib_save_LIBS
  842. fi
  843. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lua51__luaL_newstate" >&5
  844. $as_echo "$ac_cv_lib_lua51__luaL_newstate" >&6; }
  845. if test "x$ac_cv_lib_lua51__luaL_newstate" = x""yes; then :
  846.   LUA_LIBS="-llua51"
  847. else
  848.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for luaL_newstate in -llua " >&5
  849. $as_echo_n "checking for luaL_newstate in -llua ... " >&6; }
  850. if test "${ac_cv_lib_lua__luaL_newstate+set}" = set; then :
  851.   $as_echo_n "(cached) " >&6
  852. else
  853.   ac_check_lib_save_LIBS=$LIBS
  854. LIBS="-llua  -lm $LIBS"
  855. cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  856. /* end confdefs.h.  */
  857. /* Override any GCC internal prototype to avoid an error.
  858.    Use char because int might match the return type of a GCC
  859.    builtin and then its argument prototype would still apply.  */
  860. #ifdef __cplusplus
  861. extern "C"
  862. #endif
  863. char luaL_newstate ();
  864. int
  865. main ()
  866. {
  867. return luaL_newstate ();
  868.   ;
  869.   return 0;
  870. }
  871. _ACEOF
  872. if ac_fn_c_try_link "$LINENO"; then :
  873.   ac_cv_lib_lua__luaL_newstate=yes
  874. else
  875.   ac_cv_lib_lua__luaL_newstate=no
  876. fi
  877. rm -f core conftest.err conftest.$ac_objext 
  878.     conftest$ac_exeext conftest.$ac_ext
  879. LIBS=$ac_check_lib_save_LIBS
  880. fi
  881. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lua__luaL_newstate" >&5
  882. $as_echo "$ac_cv_lib_lua__luaL_newstate" >&6; }
  883. if test "x$ac_cv_lib_lua__luaL_newstate" = x""yes; then :
  884.   LUA_LIBS="-llua"
  885. else
  886.    have_lua=no
  887.                 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: lua >= 5.1 not found!" >&5
  888. $as_echo "$as_me: WARNING: lua >= 5.1 not found!" >&2;}
  889. fi
  890. fi
  891. fi
  892. elif test $pkg_failed = untried; then
  893.         have_lua=yes
  894.         for ac_header in lua.h lauxlib.h lualib.h
  895. do :
  896.   as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
  897. ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
  898. eval as_val=$$as_ac_Header
  899.    if test "x$as_val" = x""yes; then :
  900.   cat >>confdefs.h <<_ACEOF
  901. #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
  902. _ACEOF
  903. else
  904.    have_lua=no
  905. fi
  906. done
  907.         { $as_echo "$as_me:${as_lineno-$LINENO}: checking for luaL_newstate in -llua5.1 " >&5
  908. $as_echo_n "checking for luaL_newstate in -llua5.1 ... " >&6; }
  909. if test "${ac_cv_lib_lua5_1__luaL_newstate+set}" = set; then :
  910.   $as_echo_n "(cached) " >&6
  911. else
  912.   ac_check_lib_save_LIBS=$LIBS
  913. LIBS="-llua5.1   $LIBS"
  914. cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  915. /* end confdefs.h.  */
  916. /* Override any GCC internal prototype to avoid an error.
  917.    Use char because int might match the return type of a GCC
  918.    builtin and then its argument prototype would still apply.  */
  919. #ifdef __cplusplus
  920. extern "C"
  921. #endif
  922. char luaL_newstate ();
  923. int
  924. main ()
  925. {
  926. return luaL_newstate ();
  927.   ;
  928.   return 0;
  929. }
  930. _ACEOF
  931. if ac_fn_c_try_link "$LINENO"; then :
  932.   ac_cv_lib_lua5_1__luaL_newstate=yes
  933. else
  934.   ac_cv_lib_lua5_1__luaL_newstate=no
  935. fi
  936. rm -f core conftest.err conftest.$ac_objext 
  937.     conftest$ac_exeext conftest.$ac_ext
  938. LIBS=$ac_check_lib_save_LIBS
  939. fi
  940. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lua5_1__luaL_newstate" >&5
  941. $as_echo "$ac_cv_lib_lua5_1__luaL_newstate" >&6; }
  942. if test "x$ac_cv_lib_lua5_1__luaL_newstate" = x""yes; then :
  943.   LUA_LIBS="-llua5.1"
  944. else
  945.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for luaL_newstate in -llua51 " >&5
  946. $as_echo_n "checking for luaL_newstate in -llua51 ... " >&6; }
  947. if test "${ac_cv_lib_lua51__luaL_newstate+set}" = set; then :
  948.   $as_echo_n "(cached) " >&6
  949. else
  950.   ac_check_lib_save_LIBS=$LIBS
  951. LIBS="-llua51   $LIBS"
  952. cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  953. /* end confdefs.h.  */
  954. /* Override any GCC internal prototype to avoid an error.
  955.    Use char because int might match the return type of a GCC
  956.    builtin and then its argument prototype would still apply.  */
  957. #ifdef __cplusplus
  958. extern "C"
  959. #endif
  960. char luaL_newstate ();
  961. int
  962. main ()
  963. {
  964. return luaL_newstate ();
  965.   ;
  966.   return 0;
  967. }
  968. _ACEOF
  969. if ac_fn_c_try_link "$LINENO"; then :
  970.   ac_cv_lib_lua51__luaL_newstate=yes
  971. else
  972.   ac_cv_lib_lua51__luaL_newstate=no
  973. fi
  974. rm -f core conftest.err conftest.$ac_objext 
  975.     conftest$ac_exeext conftest.$ac_ext
  976. LIBS=$ac_check_lib_save_LIBS
  977. fi
  978. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lua51__luaL_newstate" >&5
  979. $as_echo "$ac_cv_lib_lua51__luaL_newstate" >&6; }
  980. if test "x$ac_cv_lib_lua51__luaL_newstate" = x""yes; then :
  981.   LUA_LIBS="-llua51"
  982. else
  983.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for luaL_newstate in -llua " >&5
  984. $as_echo_n "checking for luaL_newstate in -llua ... " >&6; }
  985. if test "${ac_cv_lib_lua__luaL_newstate+set}" = set; then :
  986.   $as_echo_n "(cached) " >&6
  987. else
  988.   ac_check_lib_save_LIBS=$LIBS
  989. LIBS="-llua  -lm $LIBS"
  990. cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  991. /* end confdefs.h.  */
  992. /* Override any GCC internal prototype to avoid an error.
  993.    Use char because int might match the return type of a GCC
  994.    builtin and then its argument prototype would still apply.  */
  995. #ifdef __cplusplus
  996. extern "C"
  997. #endif
  998. char luaL_newstate ();
  999. int
  1000. main ()
  1001. {
  1002. return luaL_newstate ();
  1003.   ;
  1004.   return 0;
  1005. }
  1006. _ACEOF
  1007. if ac_fn_c_try_link "$LINENO"; then :
  1008.   ac_cv_lib_lua__luaL_newstate=yes
  1009. else
  1010.   ac_cv_lib_lua__luaL_newstate=no
  1011. fi
  1012. rm -f core conftest.err conftest.$ac_objext 
  1013.     conftest$ac_exeext conftest.$ac_ext
  1014. LIBS=$ac_check_lib_save_LIBS
  1015. fi
  1016. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lua__luaL_newstate" >&5
  1017. $as_echo "$ac_cv_lib_lua__luaL_newstate" >&6; }
  1018. if test "x$ac_cv_lib_lua__luaL_newstate" = x""yes; then :
  1019.   LUA_LIBS="-llua"
  1020. else
  1021.    have_lua=no
  1022.                 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: lua >= 5.1 not found!" >&5
  1023. $as_echo "$as_me: WARNING: lua >= 5.1 not found!" >&2;}
  1024. fi
  1025. fi
  1026. fi
  1027. else
  1028. LUA_CFLAGS=$pkg_cv_LUA_CFLAGS
  1029. LUA_LIBS=$pkg_cv_LUA_LIBS
  1030.         { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
  1031. $as_echo "yes" >&6; }
  1032.  have_lua=yes
  1033. fi
  1034. elif test $pkg_failed = untried; then
  1035.     { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: lua5.1 not found, trying lua >= 5.1 instead" >&5
  1036. $as_echo "$as_me: WARNING: lua5.1 not found, trying lua >= 5.1 instead" >&2;}
  1037. pkg_failed=no
  1038. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LUA" >&5
  1039. $as_echo_n "checking for LUA... " >&6; }
  1040. if test -n "$PKG_CONFIG"; then
  1041.     if test -n "$LUA_CFLAGS"; then
  1042.         pkg_cv_LUA_CFLAGS="$LUA_CFLAGS"
  1043.     else
  1044.         if test -n "$PKG_CONFIG" && 
  1045.     { { $as_echo "$as_me:${as_lineno-$LINENO}: $PKG_CONFIG --exists --print-errors "lua >= 5.1""; } >&5
  1046.   ($PKG_CONFIG --exists --print-errors "lua >= 5.1") 2>&5
  1047.   ac_status=$?
  1048.   $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
  1049.   test $ac_status = 0; }; then
  1050.   pkg_cv_LUA_CFLAGS=`$PKG_CONFIG --cflags "lua >= 5.1" 2>/dev/null`
  1051. else
  1052.   pkg_failed=yes
  1053. fi
  1054.     fi
  1055. else
  1056. pkg_failed=untried
  1057. fi
  1058. if test -n "$PKG_CONFIG"; then
  1059.     if test -n "$LUA_LIBS"; then
  1060.         pkg_cv_LUA_LIBS="$LUA_LIBS"
  1061.     else
  1062.         if test -n "$PKG_CONFIG" && 
  1063.     { { $as_echo "$as_me:${as_lineno-$LINENO}: $PKG_CONFIG --exists --print-errors "lua >= 5.1""; } >&5
  1064.   ($PKG_CONFIG --exists --print-errors "lua >= 5.1") 2>&5
  1065.   ac_status=$?
  1066.   $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
  1067.   test $ac_status = 0; }; then
  1068.   pkg_cv_LUA_LIBS=`$PKG_CONFIG --libs "lua >= 5.1" 2>/dev/null`
  1069. else
  1070.   pkg_failed=yes
  1071. fi
  1072.     fi
  1073. else
  1074. pkg_failed=untried
  1075. fi
  1076. if test $pkg_failed = yes; then
  1077. if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
  1078.         _pkg_short_errors_supported=yes
  1079. else
  1080.         _pkg_short_errors_supported=no
  1081. fi
  1082.         if test $_pkg_short_errors_supported = yes; then
  1083.         LUA_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "lua >= 5.1"`
  1084.         else
  1085.         LUA_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "lua >= 5.1"`
  1086.         fi
  1087. # Put the nasty error message in config.log where it belongs
  1088. echo "$LUA_PKG_ERRORS" >&5
  1089. { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  1090. $as_echo "no" >&6; }
  1091.         have_lua=yes
  1092.         for ac_header in lua.h lauxlib.h lualib.h
  1093. do :
  1094.   as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
  1095. ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
  1096. eval as_val=$$as_ac_Header
  1097.    if test "x$as_val" = x""yes; then :
  1098.   cat >>confdefs.h <<_ACEOF
  1099. #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
  1100. _ACEOF
  1101. else
  1102.    have_lua=no
  1103. fi
  1104. done
  1105.         { $as_echo "$as_me:${as_lineno-$LINENO}: checking for luaL_newstate in -llua5.1 " >&5
  1106. $as_echo_n "checking for luaL_newstate in -llua5.1 ... " >&6; }
  1107. if test "${ac_cv_lib_lua5_1__luaL_newstate+set}" = set; then :
  1108.   $as_echo_n "(cached) " >&6
  1109. else
  1110.   ac_check_lib_save_LIBS=$LIBS
  1111. LIBS="-llua5.1   $LIBS"
  1112. cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  1113. /* end confdefs.h.  */
  1114. /* Override any GCC internal prototype to avoid an error.
  1115.    Use char because int might match the return type of a GCC
  1116.    builtin and then its argument prototype would still apply.  */
  1117. #ifdef __cplusplus
  1118. extern "C"
  1119. #endif
  1120. char luaL_newstate ();
  1121. int
  1122. main ()
  1123. {
  1124. return luaL_newstate ();
  1125.   ;
  1126.   return 0;
  1127. }
  1128. _ACEOF
  1129. if ac_fn_c_try_link "$LINENO"; then :
  1130.   ac_cv_lib_lua5_1__luaL_newstate=yes
  1131. else
  1132.   ac_cv_lib_lua5_1__luaL_newstate=no
  1133. fi
  1134. rm -f core conftest.err conftest.$ac_objext 
  1135.     conftest$ac_exeext conftest.$ac_ext
  1136. LIBS=$ac_check_lib_save_LIBS
  1137. fi
  1138. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lua5_1__luaL_newstate" >&5
  1139. $as_echo "$ac_cv_lib_lua5_1__luaL_newstate" >&6; }
  1140. if test "x$ac_cv_lib_lua5_1__luaL_newstate" = x""yes; then :
  1141.   LUA_LIBS="-llua5.1"
  1142. else
  1143.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for luaL_newstate in -llua51 " >&5
  1144. $as_echo_n "checking for luaL_newstate in -llua51 ... " >&6; }
  1145. if test "${ac_cv_lib_lua51__luaL_newstate+set}" = set; then :
  1146.   $as_echo_n "(cached) " >&6
  1147. else
  1148.   ac_check_lib_save_LIBS=$LIBS
  1149. LIBS="-llua51   $LIBS"
  1150. cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  1151. /* end confdefs.h.  */
  1152. /* Override any GCC internal prototype to avoid an error.
  1153.    Use char because int might match the return type of a GCC
  1154.    builtin and then its argument prototype would still apply.  */
  1155. #ifdef __cplusplus
  1156. extern "C"
  1157. #endif
  1158. char luaL_newstate ();
  1159. int
  1160. main ()
  1161. {
  1162. return luaL_newstate ();
  1163.   ;
  1164.   return 0;
  1165. }
  1166. _ACEOF
  1167. if ac_fn_c_try_link "$LINENO"; then :
  1168.   ac_cv_lib_lua51__luaL_newstate=yes
  1169. else
  1170.   ac_cv_lib_lua51__luaL_newstate=no
  1171. fi
  1172. rm -f core conftest.err conftest.$ac_objext 
  1173.     conftest$ac_exeext conftest.$ac_ext
  1174. LIBS=$ac_check_lib_save_LIBS
  1175. fi
  1176. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lua51__luaL_newstate" >&5
  1177. $as_echo "$ac_cv_lib_lua51__luaL_newstate" >&6; }
  1178. if test "x$ac_cv_lib_lua51__luaL_newstate" = x""yes; then :
  1179.   LUA_LIBS="-llua51"
  1180. else
  1181.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for luaL_newstate in -llua " >&5
  1182. $as_echo_n "checking for luaL_newstate in -llua ... " >&6; }
  1183. if test "${ac_cv_lib_lua__luaL_newstate+set}" = set; then :
  1184.   $as_echo_n "(cached) " >&6
  1185. else
  1186.   ac_check_lib_save_LIBS=$LIBS
  1187. LIBS="-llua  -lm $LIBS"
  1188. cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  1189. /* end confdefs.h.  */
  1190. /* Override any GCC internal prototype to avoid an error.
  1191.    Use char because int might match the return type of a GCC
  1192.    builtin and then its argument prototype would still apply.  */
  1193. #ifdef __cplusplus
  1194. extern "C"
  1195. #endif
  1196. char luaL_newstate ();
  1197. int
  1198. main ()
  1199. {
  1200. return luaL_newstate ();
  1201.   ;
  1202.   return 0;
  1203. }
  1204. _ACEOF
  1205. if ac_fn_c_try_link "$LINENO"; then :
  1206.   ac_cv_lib_lua__luaL_newstate=yes
  1207. else
  1208.   ac_cv_lib_lua__luaL_newstate=no
  1209. fi
  1210. rm -f core conftest.err conftest.$ac_objext 
  1211.     conftest$ac_exeext conftest.$ac_ext
  1212. LIBS=$ac_check_lib_save_LIBS
  1213. fi
  1214. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lua__luaL_newstate" >&5
  1215. $as_echo "$ac_cv_lib_lua__luaL_newstate" >&6; }
  1216. if test "x$ac_cv_lib_lua__luaL_newstate" = x""yes; then :
  1217.   LUA_LIBS="-llua"
  1218. else
  1219.    have_lua=no
  1220.                 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: lua >= 5.1 not found!" >&5
  1221. $as_echo "$as_me: WARNING: lua >= 5.1 not found!" >&2;}
  1222. fi
  1223. fi
  1224. fi
  1225. elif test $pkg_failed = untried; then
  1226.         have_lua=yes
  1227.         for ac_header in lua.h lauxlib.h lualib.h
  1228. do :
  1229.   as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
  1230. ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
  1231. eval as_val=$$as_ac_Header
  1232.    if test "x$as_val" = x""yes; then :
  1233.   cat >>confdefs.h <<_ACEOF
  1234. #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
  1235. _ACEOF
  1236. else
  1237.    have_lua=no
  1238. fi
  1239. done
  1240.         { $as_echo "$as_me:${as_lineno-$LINENO}: checking for luaL_newstate in -llua5.1 " >&5
  1241. $as_echo_n "checking for luaL_newstate in -llua5.1 ... " >&6; }
  1242. if test "${ac_cv_lib_lua5_1__luaL_newstate+set}" = set; then :
  1243.   $as_echo_n "(cached) " >&6
  1244. else
  1245.   ac_check_lib_save_LIBS=$LIBS
  1246. LIBS="-llua5.1   $LIBS"
  1247. cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  1248. /* end confdefs.h.  */
  1249. /* Override any GCC internal prototype to avoid an error.
  1250.    Use char because int might match the return type of a GCC
  1251.    builtin and then its argument prototype would still apply.  */
  1252. #ifdef __cplusplus
  1253. extern "C"
  1254. #endif
  1255. char luaL_newstate ();
  1256. int
  1257. main ()
  1258. {
  1259. return luaL_newstate ();
  1260.   ;
  1261.   return 0;
  1262. }
  1263. _ACEOF
  1264. if ac_fn_c_try_link "$LINENO"; then :
  1265.   ac_cv_lib_lua5_1__luaL_newstate=yes
  1266. else
  1267.   ac_cv_lib_lua5_1__luaL_newstate=no
  1268. fi
  1269. rm -f core conftest.err conftest.$ac_objext 
  1270.     conftest$ac_exeext conftest.$ac_ext
  1271. LIBS=$ac_check_lib_save_LIBS
  1272. fi
  1273. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lua5_1__luaL_newstate" >&5
  1274. $as_echo "$ac_cv_lib_lua5_1__luaL_newstate" >&6; }
  1275. if test "x$ac_cv_lib_lua5_1__luaL_newstate" = x""yes; then :
  1276.   LUA_LIBS="-llua5.1"
  1277. else
  1278.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for luaL_newstate in -llua51 " >&5
  1279. $as_echo_n "checking for luaL_newstate in -llua51 ... " >&6; }
  1280. if test "${ac_cv_lib_lua51__luaL_newstate+set}" = set; then :
  1281.   $as_echo_n "(cached) " >&6
  1282. else
  1283.   ac_check_lib_save_LIBS=$LIBS
  1284. LIBS="-llua51   $LIBS"
  1285. cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  1286. /* end confdefs.h.  */
  1287. /* Override any GCC internal prototype to avoid an error.
  1288.    Use char because int might match the return type of a GCC
  1289.    builtin and then its argument prototype would still apply.  */
  1290. #ifdef __cplusplus
  1291. extern "C"
  1292. #endif
  1293. char luaL_newstate ();
  1294. int
  1295. main ()
  1296. {
  1297. return luaL_newstate ();
  1298.   ;
  1299.   return 0;
  1300. }
  1301. _ACEOF
  1302. if ac_fn_c_try_link "$LINENO"; then :
  1303.   ac_cv_lib_lua51__luaL_newstate=yes
  1304. else
  1305.   ac_cv_lib_lua51__luaL_newstate=no
  1306. fi
  1307. rm -f core conftest.err conftest.$ac_objext 
  1308.     conftest$ac_exeext conftest.$ac_ext
  1309. LIBS=$ac_check_lib_save_LIBS
  1310. fi
  1311. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lua51__luaL_newstate" >&5
  1312. $as_echo "$ac_cv_lib_lua51__luaL_newstate" >&6; }
  1313. if test "x$ac_cv_lib_lua51__luaL_newstate" = x""yes; then :
  1314.   LUA_LIBS="-llua51"
  1315. else
  1316.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for luaL_newstate in -llua " >&5
  1317. $as_echo_n "checking for luaL_newstate in -llua ... " >&6; }
  1318. if test "${ac_cv_lib_lua__luaL_newstate+set}" = set; then :
  1319.   $as_echo_n "(cached) " >&6
  1320. else
  1321.   ac_check_lib_save_LIBS=$LIBS
  1322. LIBS="-llua  -lm $LIBS"
  1323. cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  1324. /* end confdefs.h.  */
  1325. /* Override any GCC internal prototype to avoid an error.
  1326.    Use char because int might match the return type of a GCC
  1327.    builtin and then its argument prototype would still apply.  */
  1328. #ifdef __cplusplus
  1329. extern "C"
  1330. #endif
  1331. char luaL_newstate ();
  1332. int
  1333. main ()
  1334. {
  1335. return luaL_newstate ();
  1336.   ;
  1337.   return 0;
  1338. }
  1339. _ACEOF
  1340. if ac_fn_c_try_link "$LINENO"; then :
  1341.   ac_cv_lib_lua__luaL_newstate=yes
  1342. else
  1343.   ac_cv_lib_lua__luaL_newstate=no
  1344. fi
  1345. rm -f core conftest.err conftest.$ac_objext 
  1346.     conftest$ac_exeext conftest.$ac_ext
  1347. LIBS=$ac_check_lib_save_LIBS
  1348. fi
  1349. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lua__luaL_newstate" >&5
  1350. $as_echo "$ac_cv_lib_lua__luaL_newstate" >&6; }
  1351. if test "x$ac_cv_lib_lua__luaL_newstate" = x""yes; then :
  1352.   LUA_LIBS="-llua"
  1353. else
  1354.    have_lua=no
  1355.                 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: lua >= 5.1 not found!" >&5
  1356. $as_echo "$as_me: WARNING: lua >= 5.1 not found!" >&2;}
  1357. fi
  1358. fi
  1359. fi
  1360. else
  1361. LUA_CFLAGS=$pkg_cv_LUA_CFLAGS
  1362. LUA_LIBS=$pkg_cv_LUA_LIBS
  1363.         { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
  1364. $as_echo "yes" >&6; }
  1365.  have_lua=yes
  1366. fi
  1367. else
  1368. LUA_CFLAGS=$pkg_cv_LUA_CFLAGS
  1369. LUA_LIBS=$pkg_cv_LUA_LIBS
  1370.         { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
  1371. $as_echo "yes" >&6; }
  1372.  have_lua=yes
  1373. fi
  1374.   if test "x${have_lua}" = "xyes" ;  then
  1375. $as_echo "#define HAVE_LUA 1" >>confdefs.h
  1376.   for element in lua; do
  1377.     eval "LIBS_${element}="'"'"$LUA_LIBS "'$'"{LIBS_${element}} "'"'
  1378.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  1379.   done
  1380.   for element in lua; do
  1381.     eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} $LUA_CFLAGS"'"'
  1382.     am_modules_with_cflags="${am_modules_with_cflags} ${element}"
  1383.   done
  1384.   fi
  1385. fi
  1386.  if test "${have_lua}" = "yes"; then
  1387.   BUILD_LUA_TRUE=
  1388.   BUILD_LUA_FALSE='#'
  1389. else
  1390.   BUILD_LUA_TRUE='#'
  1391.   BUILD_LUA_FALSE=
  1392. fi
  1393. # Check whether --enable-httpd was given.
  1394. if test "${enable_httpd+set}" = set; then :
  1395.   enableval=$enable_httpd;
  1396. fi
  1397. if test "${enable_httpd}" != "no"
  1398. then
  1399.   PLUGINS="${PLUGINS} http"
  1400.   LTLIBhttp="libhttp_plugin.la"
  1401. $as_echo "#define ENABLE_HTTPD 1" >>confdefs.h
  1402. fi
  1403.  if test "${enable_httpd}" != "no"; then
  1404.   BUILD_HTTPD_TRUE=
  1405.   BUILD_HTTPD_FALSE='#'
  1406. else
  1407.   BUILD_HTTPD_TRUE='#'
  1408.   BUILD_HTTPD_FALSE=
  1409. fi
  1410. # Check whether --enable-libproxy was given.
  1411. if test "${enable_libproxy+set}" = set; then :
  1412.   enableval=$enable_libproxy;
  1413. fi
  1414. if test "${enable_libproxy}" != "no"; then :
  1415. pkg_failed=no
  1416. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBPROXY" >&5
  1417. $as_echo_n "checking for LIBPROXY... " >&6; }
  1418. if test -n "$PKG_CONFIG"; then
  1419.     if test -n "$LIBPROXY_CFLAGS"; then
  1420.         pkg_cv_LIBPROXY_CFLAGS="$LIBPROXY_CFLAGS"
  1421.     else
  1422.         if test -n "$PKG_CONFIG" && 
  1423.     { { $as_echo "$as_me:${as_lineno-$LINENO}: $PKG_CONFIG --exists --print-errors "libproxy-1.0""; } >&5
  1424.   ($PKG_CONFIG --exists --print-errors "libproxy-1.0") 2>&5
  1425.   ac_status=$?
  1426.   $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
  1427.   test $ac_status = 0; }; then
  1428.   pkg_cv_LIBPROXY_CFLAGS=`$PKG_CONFIG --cflags "libproxy-1.0" 2>/dev/null`
  1429. else
  1430.   pkg_failed=yes
  1431. fi
  1432.     fi
  1433. else
  1434. pkg_failed=untried
  1435. fi
  1436. if test -n "$PKG_CONFIG"; then
  1437.     if test -n "$LIBPROXY_LIBS"; then
  1438.         pkg_cv_LIBPROXY_LIBS="$LIBPROXY_LIBS"
  1439.     else
  1440.         if test -n "$PKG_CONFIG" && 
  1441.     { { $as_echo "$as_me:${as_lineno-$LINENO}: $PKG_CONFIG --exists --print-errors "libproxy-1.0""; } >&5
  1442.   ($PKG_CONFIG --exists --print-errors "libproxy-1.0") 2>&5
  1443.   ac_status=$?
  1444.   $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
  1445.   test $ac_status = 0; }; then
  1446.   pkg_cv_LIBPROXY_LIBS=`$PKG_CONFIG --libs "libproxy-1.0" 2>/dev/null`
  1447. else
  1448.   pkg_failed=yes
  1449. fi
  1450.     fi
  1451. else
  1452. pkg_failed=untried
  1453. fi
  1454. if test $pkg_failed = yes; then
  1455. if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
  1456.         _pkg_short_errors_supported=yes
  1457. else
  1458.         _pkg_short_errors_supported=no
  1459. fi
  1460.         if test $_pkg_short_errors_supported = yes; then
  1461.         LIBPROXY_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libproxy-1.0"`
  1462.         else
  1463.         LIBPROXY_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libproxy-1.0"`
  1464.         fi
  1465. # Put the nasty error message in config.log where it belongs
  1466. echo "$LIBPROXY_PKG_ERRORS" >&5
  1467. { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  1468. $as_echo "no" >&6; }
  1469.     if test "x${enable_libproxy}" != "x"; then :
  1470.       as_fn_error "libproxy could not be found on your system" "$LINENO" 5
  1471. fi
  1472. elif test $pkg_failed = untried; then
  1473.     if test "x${enable_libproxy}" != "x"; then :
  1474.       as_fn_error "libproxy could not be found on your system" "$LINENO" 5
  1475. fi
  1476. else
  1477. LIBPROXY_CFLAGS=$pkg_cv_LIBPROXY_CFLAGS
  1478. LIBPROXY_LIBS=$pkg_cv_LIBPROXY_LIBS
  1479.         { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
  1480. $as_echo "yes" >&6; }
  1481. $as_echo "#define HAVE_LIBPROXY 1" >>confdefs.h
  1482.   for element in access_http; do
  1483.     eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} $LIBPROXY_CFLAGS"'"'
  1484.     am_modules_with_cflags="${am_modules_with_cflags} ${element}"
  1485.   done
  1486.   for element in access_http; do
  1487.     eval "LIBS_${element}="'"'"$LIBPROXY_LIBS "'$'"{LIBS_${element}} "'"'
  1488.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  1489.   done
  1490. fi
  1491. fi
  1492. # Check whether --enable-vlm was given.
  1493. if test "${enable_vlm+set}" = set; then :
  1494.   enableval=$enable_vlm;
  1495. else
  1496.   enable_vlm="${enable_sout}"
  1497. fi
  1498. if test "${enable_vlm}" != "no"; then :
  1499.   if test "${enable_sout}" = "no"; then :
  1500.     as_fn_error "VLM requires the stream output. Do not use --disable-sout." "$LINENO" 5
  1501. fi
  1502. $as_echo "#define ENABLE_VLM 1" >>confdefs.h
  1503.   PLUGINS="${PLUGINS} telnet"
  1504.   LTLIBtelnet="libtelnet_plugin.la"
  1505. fi
  1506.  if test "${enable_vlm}" != "no"; then
  1507.   ENABLE_VLM_TRUE=
  1508.   ENABLE_VLM_FALSE='#'
  1509. else
  1510.   ENABLE_VLM_TRUE='#'
  1511.   ENABLE_VLM_FALSE=
  1512. fi
  1513. # Check whether --enable-growl was given.
  1514. if test "${enable_growl+set}" = set; then :
  1515.   enableval=$enable_growl;
  1516. else
  1517.   enable_growl=no
  1518. fi
  1519. if test "${enable_growl}" != "no"; then :
  1520.   PLUGINS="${PLUGINS} growl_udp"
  1521.   LTLIBgrowl_udp="libgrowl_udp_plugin.la"
  1522.     for ac_header in Growl/GrowlDefines.h
  1523. do :
  1524.   ac_fn_c_check_header_mongrel "$LINENO" "Growl/GrowlDefines.h" "ac_cv_header_Growl_GrowlDefines_h" "$ac_includes_default"
  1525. if test "x$ac_cv_header_Growl_GrowlDefines_h" = x""yes; then :
  1526.   cat >>confdefs.h <<_ACEOF
  1527. #define HAVE_GROWL_GROWLDEFINES_H 1
  1528. _ACEOF
  1529.   PLUGINS="${PLUGINS} growl"
  1530.   LTLIBgrowl="libgrowl_plugin.la"
  1531.   for element in growl; do
  1532.     eval "LDFLAGS_${element}="'"'"-Wl,-framework,Growl,-framework,AppKit "'$'"{LDFLAGS_${element}} "'"'
  1533.     am_modules_with_ldflags="${am_modules_with_ldflags} ${element}"
  1534.   done
  1535. fi
  1536. done
  1537. fi
  1538. # Check whether --enable-notify was given.
  1539. if test "${enable_notify+set}" = set; then :
  1540.   enableval=$enable_notify;
  1541. fi
  1542. if test "${enable_notify}" != "no" -a "${SYS}" != "mingw32"; then :
  1543. pkg_failed=no
  1544. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for NOTIFY" >&5
  1545. $as_echo_n "checking for NOTIFY... " >&6; }
  1546. if test -n "$PKG_CONFIG"; then
  1547.     if test -n "$NOTIFY_CFLAGS"; then
  1548.         pkg_cv_NOTIFY_CFLAGS="$NOTIFY_CFLAGS"
  1549.     else
  1550.         if test -n "$PKG_CONFIG" && 
  1551.     { { $as_echo "$as_me:${as_lineno-$LINENO}: $PKG_CONFIG --exists --print-errors "libnotify""; } >&5
  1552.   ($PKG_CONFIG --exists --print-errors "libnotify") 2>&5
  1553.   ac_status=$?
  1554.   $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
  1555.   test $ac_status = 0; }; then
  1556.   pkg_cv_NOTIFY_CFLAGS=`$PKG_CONFIG --cflags "libnotify" 2>/dev/null`
  1557. else
  1558.   pkg_failed=yes
  1559. fi
  1560.     fi
  1561. else
  1562. pkg_failed=untried
  1563. fi
  1564. if test -n "$PKG_CONFIG"; then
  1565.     if test -n "$NOTIFY_LIBS"; then
  1566.         pkg_cv_NOTIFY_LIBS="$NOTIFY_LIBS"
  1567.     else
  1568.         if test -n "$PKG_CONFIG" && 
  1569.     { { $as_echo "$as_me:${as_lineno-$LINENO}: $PKG_CONFIG --exists --print-errors "libnotify""; } >&5
  1570.   ($PKG_CONFIG --exists --print-errors "libnotify") 2>&5
  1571.   ac_status=$?
  1572.   $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
  1573.   test $ac_status = 0; }; then
  1574.   pkg_cv_NOTIFY_LIBS=`$PKG_CONFIG --libs "libnotify" 2>/dev/null`
  1575. else
  1576.   pkg_failed=yes
  1577. fi
  1578.     fi
  1579. else
  1580. pkg_failed=untried
  1581. fi
  1582. if test $pkg_failed = yes; then
  1583. if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
  1584.         _pkg_short_errors_supported=yes
  1585. else
  1586.         _pkg_short_errors_supported=no
  1587. fi
  1588.         if test $_pkg_short_errors_supported = yes; then
  1589.         NOTIFY_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libnotify"`
  1590.         else
  1591.         NOTIFY_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libnotify"`
  1592.         fi
  1593. # Put the nasty error message in config.log where it belongs
  1594. echo "$NOTIFY_PKG_ERRORS" >&5
  1595. { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  1596. $as_echo "no" >&6; }
  1597.     if test "${enable_notify}" = "yes"; then :
  1598.         { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: libnotify not found" >&5
  1599. $as_echo "$as_me: WARNING: libnotify not found" >&2;}
  1600. fi
  1601. elif test $pkg_failed = untried; then
  1602.     if test "${enable_notify}" = "yes"; then :
  1603.         { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: libnotify not found" >&5
  1604. $as_echo "$as_me: WARNING: libnotify not found" >&2;}
  1605. fi
  1606. else
  1607. NOTIFY_CFLAGS=$pkg_cv_NOTIFY_CFLAGS
  1608. NOTIFY_LIBS=$pkg_cv_NOTIFY_LIBS
  1609.         { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
  1610. $as_echo "yes" >&6; }
  1611.   PLUGINS="${PLUGINS} notify"
  1612.   LTLIBnotify="libnotify_plugin.la"
  1613.   for element in notify; do
  1614.     eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} $NOTIFY_CFLAGS"'"'
  1615.     am_modules_with_cflags="${am_modules_with_cflags} ${element}"
  1616.   done
  1617.   for element in notify; do
  1618.     eval "LIBS_${element}="'"'"$NOTIFY_LIBS "'$'"{LIBS_${element}} "'"'
  1619.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  1620.   done
  1621. fi
  1622. fi
  1623. # Check whether --enable-audioscrobbler was given.
  1624. if test "${enable_audioscrobbler+set}" = set; then :
  1625.   enableval=$enable_audioscrobbler;
  1626. fi
  1627. if test "${enable_audioscrobbler}" != "no"; then :
  1628.   PLUGINS="${PLUGINS} audioscrobbler"
  1629.   LTLIBaudioscrobbler="libaudioscrobbler_plugin.la"
  1630. fi
  1631. # Check whether --enable-taglib was given.
  1632. if test "${enable_taglib+set}" = set; then :
  1633.   enableval=$enable_taglib;
  1634. fi
  1635.   if test "${enable_taglib}" != "no"; then :
  1636. pkg_failed=no
  1637. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for TAGLIB" >&5
  1638. $as_echo_n "checking for TAGLIB... " >&6; }
  1639. if test -n "$PKG_CONFIG"; then
  1640.     if test -n "$TAGLIB_CFLAGS"; then
  1641.         pkg_cv_TAGLIB_CFLAGS="$TAGLIB_CFLAGS"
  1642.     else
  1643.         if test -n "$PKG_CONFIG" && 
  1644.     { { $as_echo "$as_me:${as_lineno-$LINENO}: $PKG_CONFIG --exists --print-errors "taglib >= 1.5""; } >&5
  1645.   ($PKG_CONFIG --exists --print-errors "taglib >= 1.5") 2>&5
  1646.   ac_status=$?
  1647.   $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
  1648.   test $ac_status = 0; }; then
  1649.   pkg_cv_TAGLIB_CFLAGS=`$PKG_CONFIG --cflags "taglib >= 1.5" 2>/dev/null`
  1650. else
  1651.   pkg_failed=yes
  1652. fi
  1653.     fi
  1654. else
  1655. pkg_failed=untried
  1656. fi
  1657. if test -n "$PKG_CONFIG"; then
  1658.     if test -n "$TAGLIB_LIBS"; then
  1659.         pkg_cv_TAGLIB_LIBS="$TAGLIB_LIBS"
  1660.     else
  1661.         if test -n "$PKG_CONFIG" && 
  1662.     { { $as_echo "$as_me:${as_lineno-$LINENO}: $PKG_CONFIG --exists --print-errors "taglib >= 1.5""; } >&5
  1663.   ($PKG_CONFIG --exists --print-errors "taglib >= 1.5") 2>&5
  1664.   ac_status=$?
  1665.   $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
  1666.   test $ac_status = 0; }; then
  1667.   pkg_cv_TAGLIB_LIBS=`$PKG_CONFIG --libs "taglib >= 1.5" 2>/dev/null`
  1668. else
  1669.   pkg_failed=yes
  1670. fi
  1671.     fi
  1672. else
  1673. pkg_failed=untried
  1674. fi
  1675. if test $pkg_failed = yes; then
  1676. if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
  1677.         _pkg_short_errors_supported=yes
  1678. else
  1679.         _pkg_short_errors_supported=no
  1680. fi
  1681.         if test $_pkg_short_errors_supported = yes; then
  1682.         TAGLIB_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "taglib >= 1.5"`
  1683.         else
  1684.         TAGLIB_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "taglib >= 1.5"`
  1685.         fi
  1686. # Put the nasty error message in config.log where it belongs
  1687. echo "$TAGLIB_PKG_ERRORS" >&5
  1688. { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  1689. $as_echo "no" >&6; }
  1690.                 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: TagLib library not found" >&5
  1691. $as_echo "$as_me: WARNING: TagLib library not found" >&2;}
  1692. elif test $pkg_failed = untried; then
  1693. { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: TagLib library not found" >&5
  1694. $as_echo "$as_me: WARNING: TagLib library not found" >&2;}
  1695. else
  1696. TAGLIB_CFLAGS=$pkg_cv_TAGLIB_CFLAGS
  1697. TAGLIB_LIBS=$pkg_cv_TAGLIB_LIBS
  1698.         { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
  1699. $as_echo "yes" >&6; }
  1700. $as_echo "#define HAVE_TAGLIB 1" >>confdefs.h
  1701.   PLUGINS="${PLUGINS} taglib"
  1702.   LTLIBtaglib="libtaglib_plugin.la"
  1703.   for element in taglib; do
  1704.     eval "LIBS_${element}="'"'"$TAGLIB_LIBS -lz "'$'"{LIBS_${element}} "'"'
  1705.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  1706.   done
  1707.   for element in taglib; do
  1708.     eval "CXXFLAGS_${element}="'"$'"{CXXFLAGS_${element}} $TAGLIB_CFLAGS"'"'
  1709.     am_modules_with_cxxflags="${am_modules_with_cxxflags} ${element}"
  1710.   done
  1711. fi
  1712. fi
  1713. # Check whether --with- was given.
  1714. if test "${with_+set}" = set; then :
  1715.   withval=$with_;
  1716. fi
  1717. if test "${enable_livedotcom}"
  1718. then
  1719.   { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: --{en|dis}able-livedotcom is deprecated. Use --{en|dis}able-live555 instead." >&5
  1720. $as_echo "$as_me: WARNING: --{en|dis}able-livedotcom is deprecated. Use --{en|dis}able-live555 instead." >&2;}
  1721. fi
  1722. if test "${enable_livedotcom}" = "no"
  1723. then
  1724.   enable_live555="no"
  1725. fi
  1726. # Check whether --enable-live555 was given.
  1727. if test "${enable_live555+set}" = set; then :
  1728.   enableval=$enable_live555;
  1729. fi
  1730. if test "${enable_live555}" != "no"; then
  1731. # Check whether --with-live555-tree was given.
  1732. if test "${with_live555_tree+set}" = set; then :
  1733.   withval=$with_live555_tree;
  1734. fi
  1735.         if test "${with_livedotcom_tree}"
  1736.   then
  1737.     { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: --with-livedotcom-tree is deprecated. Use --with-live555-tree instead." >&5
  1738. $as_echo "$as_me: WARNING: --with-livedotcom-tree is deprecated. Use --with-live555-tree instead." >&2;}
  1739.   with_live555_tree="${with_livedotcom_tree}"
  1740.   fi
  1741.   if test -z "${with_live555_tree}" -a "${CXX}" != ""; then
  1742.     ac_ext=cpp
  1743. ac_cpp='$CXXCPP $CPPFLAGS'
  1744. ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
  1745. ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
  1746. ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
  1747.     CPPFLAGS_save="${CPPFLAGS}"
  1748.     CPPFLAGS_live555="-I/usr/include/liveMedia -I/usr/include/groupsock -I/usr/include/BasicUsageEnvironment -I/usr/include/UsageEnvironment"
  1749.     if test "${SYS}" = "solaris"; then
  1750.       CPPFLAGS_live555="${CPPFLAGS_live555} -DSOLARIS"
  1751.     fi
  1752.     CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_live555}"
  1753. for ac_header in liveMedia_version.hh
  1754. do :
  1755.   ac_fn_cxx_check_header_mongrel "$LINENO" "liveMedia_version.hh" "ac_cv_header_liveMedia_version_hh" "$ac_includes_default"
  1756. if test "x$ac_cv_header_liveMedia_version_hh" = x""yes; then :
  1757.   cat >>confdefs.h <<_ACEOF
  1758. #define HAVE_LIVEMEDIA_VERSION_HH 1
  1759. _ACEOF
  1760.       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for liveMedia version >= 1214895600 " >&5
  1761. $as_echo_n "checking for liveMedia version >= 1214895600 ... " >&6; }
  1762.       cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  1763. /* end confdefs.h.  */
  1764. #include <liveMedia_version.hh>
  1765.          #ifdef LIVEMEDIA_LIBRARY_VERSION_INT
  1766.          #if LIVEMEDIA_LIBRARY_VERSION_INT < 1214895600
  1767.          yes
  1768.          #endif
  1769.          #endif
  1770. _ACEOF
  1771. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  1772.   $EGREP "yes" >/dev/null 2>&1; then :
  1773.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  1774. $as_echo "no" >&6; }
  1775.          as_fn_error "Your version of liveMedia is too old: you may get a more recent one from http://www.live555.com/liveMedia.
  1776. lternatively you can use --disable-live555 to disable the liveMedia plugin." "$LINENO" 5
  1777. else
  1778.  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
  1779. $as_echo "yes" >&6; }
  1780. fi
  1781. rm -f conftest*
  1782. fi
  1783. done
  1784.      other_libs="-lgroupsock -lBasicUsageEnvironment -lUsageEnvironment"
  1785.      other_libs_pic="-lgroupsock_pic -lBasicUsageEnvironment_pic -lUsageEnvironment_pic"
  1786.       if test "${SYS}" = "mingw32"; then
  1787.         # add ws2_32 for closesocket, select, recv
  1788.         other_libs="$other_libs -lws2_32"
  1789.       elif test "${SYS}" = "mingwce"; then
  1790.         # add ws2 for closesocket, select, recv
  1791.         other_libs="$other_libs -lws2"
  1792.       fi
  1793.             for ac_header in liveMedia.hh
  1794. do :
  1795.   ac_fn_cxx_check_header_mongrel "$LINENO" "liveMedia.hh" "ac_cv_header_liveMedia_hh" "$ac_includes_default"
  1796. if test "x$ac_cv_header_liveMedia_hh" = x""yes; then :
  1797.   cat >>confdefs.h <<_ACEOF
  1798. #define HAVE_LIVEMEDIA_HH 1
  1799. _ACEOF
  1800.   for element in live555; do
  1801.     eval "CXXFLAGS_${element}="'"$'"{CXXFLAGS_${element}} ${CPPFLAGS_live555}"'"'
  1802.     am_modules_with_cxxflags="${am_modules_with_cxxflags} ${element}"
  1803.   done
  1804.         { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lliveMedia_pic" >&5
  1805. $as_echo_n "checking for main in -lliveMedia_pic... " >&6; }
  1806. if test "${ac_cv_lib_liveMedia_pic_main+set}" = set; then :
  1807.   $as_echo_n "(cached) " >&6
  1808. else
  1809.   ac_check_lib_save_LIBS=$LIBS
  1810. LIBS="-lliveMedia_pic ${other_libs_pic} $LIBS"
  1811. cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  1812. /* end confdefs.h.  */
  1813. int
  1814. main ()
  1815. {
  1816. return main ();
  1817.   ;
  1818.   return 0;
  1819. }
  1820. _ACEOF
  1821. if ac_fn_cxx_try_link "$LINENO"; then :
  1822.   ac_cv_lib_liveMedia_pic_main=yes
  1823. else
  1824.   ac_cv_lib_liveMedia_pic_main=no
  1825. fi
  1826. rm -f core conftest.err conftest.$ac_objext 
  1827.     conftest$ac_exeext conftest.$ac_ext
  1828. LIBS=$ac_check_lib_save_LIBS
  1829. fi
  1830. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_liveMedia_pic_main" >&5
  1831. $as_echo "$ac_cv_lib_liveMedia_pic_main" >&6; }
  1832. if test "x$ac_cv_lib_liveMedia_pic_main" = x""yes; then :
  1833.   PLUGINS="${PLUGINS} live555"
  1834.   LTLIBlive555="liblive555_plugin.la"
  1835.   for element in live555; do
  1836.     eval "LIBS_${element}="'"'"-lliveMedia_pic ${other_libs_pic} "'$'"{LIBS_${element}} "'"'
  1837.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  1838.   done
  1839. else
  1840.         { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lliveMedia" >&5
  1841. $as_echo_n "checking for main in -lliveMedia... " >&6; }
  1842. if test "${ac_cv_lib_liveMedia_main+set}" = set; then :
  1843.   $as_echo_n "(cached) " >&6
  1844. else
  1845.   ac_check_lib_save_LIBS=$LIBS
  1846. LIBS="-lliveMedia ${other_libs} $LIBS"
  1847. cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  1848. /* end confdefs.h.  */
  1849. int
  1850. main ()
  1851. {
  1852. return main ();
  1853.   ;
  1854.   return 0;
  1855. }
  1856. _ACEOF
  1857. if ac_fn_cxx_try_link "$LINENO"; then :
  1858.   ac_cv_lib_liveMedia_main=yes
  1859. else
  1860.   ac_cv_lib_liveMedia_main=no
  1861. fi
  1862. rm -f core conftest.err conftest.$ac_objext 
  1863.     conftest$ac_exeext conftest.$ac_ext
  1864. LIBS=$ac_check_lib_save_LIBS
  1865. fi
  1866. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_liveMedia_main" >&5
  1867. $as_echo "$ac_cv_lib_liveMedia_main" >&6; }
  1868. if test "x$ac_cv_lib_liveMedia_main" = x""yes; then :
  1869.   PLUGINS="${PLUGINS} live555"
  1870.   LTLIBlive555="liblive555_plugin.la"
  1871.   for element in live555; do
  1872.     eval "LIBS_${element}="'"'"-lliveMedia ${other_libs} "'$'"{LIBS_${element}} "'"'
  1873.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  1874.   done
  1875. fi
  1876. fi
  1877. else
  1878.        { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: The development files for liveMedia (live555) can't be found" >&5
  1879. $as_echo "$as_me: WARNING: The development files for liveMedia (live555) can't be found" >&2;}
  1880. fi
  1881. done
  1882.     CPPFLAGS="${CPPFLAGS_save}"
  1883.     ac_ext=c
  1884. ac_cpp='$CPP $CPPFLAGS'
  1885. ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
  1886. ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
  1887. ac_compiler_gnu=$ac_cv_c_compiler_gnu
  1888.   else
  1889.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for liveMedia/libliveMedia.a in ${with_live555_tree}" >&5
  1890. $as_echo_n "checking for liveMedia/libliveMedia.a in ${with_live555_tree}... " >&6; }
  1891.     real_live555_tree="`cd ${with_live555_tree} 2>/dev/null && pwd`"
  1892.     if test -z "${real_live555_tree}"; then
  1893.             { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  1894. $as_echo "no" >&6; }
  1895.       as_fn_error "cannot cd to ${with_live555_tree}" "$LINENO" 5
  1896.     fi
  1897.     if test -f "${real_live555_tree}/liveMedia/libliveMedia.a"; then
  1898.       { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${real_live555_tree}/liveMedia/libliveMedia.a" >&5
  1899. $as_echo "${real_live555_tree}/liveMedia/libliveMedia.a" >&6; }
  1900.       for ac_header in ${real_live555_tree}/liveMedia/include/liveMedia_version.hh
  1901. do :
  1902.   as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
  1903. ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
  1904. eval as_val=$$as_ac_Header
  1905.    if test "x$as_val" = x""yes; then :
  1906.   cat >>confdefs.h <<_ACEOF
  1907. #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
  1908. _ACEOF
  1909.         { $as_echo "$as_me:${as_lineno-$LINENO}: checking for liveMedia version >= 1214895600 " >&5
  1910. $as_echo_n "checking for liveMedia version >= 1214895600 ... " >&6; }
  1911.         cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  1912. /* end confdefs.h.  */
  1913. #include "${real_live555_tree}/liveMedia/include/liveMedia_version.hh"
  1914.            #ifdef LIVEMEDIA_LIBRARY_VERSION_INT
  1915.            #if LIVEMEDIA_LIBRARY_VERSION_INT < 1214895600
  1916.            yes
  1917.            #endif
  1918.            #endif
  1919. _ACEOF
  1920. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  1921.   $EGREP "yes" >/dev/null 2>&1; then :
  1922.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  1923. $as_echo "no" >&6; }
  1924.            as_fn_error "Your version of liveMedia is too old: you may get a more recent one from http://www.live555.com/liveMedia.
  1925. lternatively you can use --disable-live555 to disable the liveMedia plugin." "$LINENO" 5
  1926. else
  1927.    { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
  1928. $as_echo "yes" >&6; }
  1929. fi
  1930. rm -f conftest*
  1931. fi
  1932. done
  1933.   PLUGINS="${PLUGINS} live555"
  1934.   LTLIBlive555="liblive555_plugin.la"
  1935.       if test "${SYS}" = "mingw32"; then
  1936.         # add ws2_32 for closesocket, select, recv
  1937.   for element in live555; do
  1938.     eval "LIBS_${element}="'"'"-lws2_32 "'$'"{LIBS_${element}} "'"'
  1939.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  1940.   done
  1941.       fi
  1942.   for element in live555; do
  1943.     eval "LIBS_${element}="'"'"-L${real_live555_tree}/UsageEnvironment -lUsageEnvironment "'$'"{LIBS_${element}} "'"'
  1944.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  1945.   done
  1946.   for element in live555; do
  1947.     eval "LIBS_${element}="'"'"-L${real_live555_tree}/BasicUsageEnvironment -lBasicUsageEnvironment "'$'"{LIBS_${element}} "'"'
  1948.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  1949.   done
  1950.   for element in live555; do
  1951.     eval "LIBS_${element}="'"'"-L${real_live555_tree}/groupsock -lgroupsock "'$'"{LIBS_${element}} "'"'
  1952.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  1953.   done
  1954.   for element in live555; do
  1955.     eval "LIBS_${element}="'"'"-L${real_live555_tree}/liveMedia -lliveMedia "'$'"{LIBS_${element}} "'"'
  1956.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  1957.   done
  1958.   for element in live555; do
  1959.     eval "CXXFLAGS_${element}="'"$'"{CXXFLAGS_${element}} -I${real_live555_tree}/BasicUsageEnvironment/include"'"'
  1960.     am_modules_with_cxxflags="${am_modules_with_cxxflags} ${element}"
  1961.   done
  1962.   for element in live555; do
  1963.     eval "CXXFLAGS_${element}="'"$'"{CXXFLAGS_${element}} -I${real_live555_tree}/groupsock/include"'"'
  1964.     am_modules_with_cxxflags="${am_modules_with_cxxflags} ${element}"
  1965.   done
  1966.   for element in live555; do
  1967.     eval "CXXFLAGS_${element}="'"$'"{CXXFLAGS_${element}} -I${real_live555_tree}/liveMedia/include"'"'
  1968.     am_modules_with_cxxflags="${am_modules_with_cxxflags} ${element}"
  1969.   done
  1970.   for element in live555; do
  1971.     eval "CXXFLAGS_${element}="'"$'"{CXXFLAGS_${element}} -I${real_live555_tree}/UsageEnvironment/include "'"'
  1972.     am_modules_with_cxxflags="${am_modules_with_cxxflags} ${element}"
  1973.   done
  1974.       if test "${SYS}" = "solaris"; then
  1975.   for element in live555; do
  1976.     eval "CXXFLAGS_${element}="'"$'"{CXXFLAGS_${element}} -DSOLARIS"'"'
  1977.     am_modules_with_cxxflags="${am_modules_with_cxxflags} ${element}"
  1978.   done
  1979.       fi
  1980.     else
  1981.               { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  1982. $as_echo "no" >&6; }
  1983.       if test "${enable_live555}" = "yes"; then
  1984.         as_fn_error "cannot find ${real_live555_tree}/liveMedia/libliveMedia.a, make sure you compiled live555 in ${with_live555_tree}" "$LINENO" 5
  1985.       fi
  1986.     fi
  1987.   fi
  1988. fi
  1989. # Check whether --enable-dc1394 was given.
  1990. if test "${enable_dc1394+set}" = set; then :
  1991.   enableval=$enable_dc1394;
  1992. fi
  1993. if test "${enable_dc1394}" = "yes"
  1994. then
  1995.   for ac_header in libraw1394/raw1394.h
  1996. do :
  1997.   ac_fn_c_check_header_mongrel "$LINENO" "libraw1394/raw1394.h" "ac_cv_header_libraw1394_raw1394_h" "$ac_includes_default"
  1998. if test "x$ac_cv_header_libraw1394_raw1394_h" = x""yes; then :
  1999.   cat >>confdefs.h <<_ACEOF
  2000. #define HAVE_LIBRAW1394_RAW1394_H 1
  2001. _ACEOF
  2002.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for raw1394_get_nodecount in -lraw1394" >&5
  2003. $as_echo_n "checking for raw1394_get_nodecount in -lraw1394... " >&6; }
  2004. if test "${ac_cv_lib_raw1394_raw1394_get_nodecount+set}" = set; then :
  2005.   $as_echo_n "(cached) " >&6
  2006. else
  2007.   ac_check_lib_save_LIBS=$LIBS
  2008. LIBS="-lraw1394  $LIBS"
  2009. cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  2010. /* end confdefs.h.  */
  2011. /* Override any GCC internal prototype to avoid an error.
  2012.    Use char because int might match the return type of a GCC
  2013.    builtin and then its argument prototype would still apply.  */
  2014. #ifdef __cplusplus
  2015. extern "C"
  2016. #endif
  2017. char raw1394_get_nodecount ();
  2018. int
  2019. main ()
  2020. {
  2021. return raw1394_get_nodecount ();
  2022.   ;
  2023.   return 0;
  2024. }
  2025. _ACEOF
  2026. if ac_fn_c_try_link "$LINENO"; then :
  2027.   ac_cv_lib_raw1394_raw1394_get_nodecount=yes
  2028. else
  2029.   ac_cv_lib_raw1394_raw1394_get_nodecount=no
  2030. fi
  2031. rm -f core conftest.err conftest.$ac_objext 
  2032.     conftest$ac_exeext conftest.$ac_ext
  2033. LIBS=$ac_check_lib_save_LIBS
  2034. fi
  2035. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_raw1394_raw1394_get_nodecount" >&5
  2036. $as_echo "$ac_cv_lib_raw1394_raw1394_get_nodecount" >&6; }
  2037. if test "x$ac_cv_lib_raw1394_raw1394_get_nodecount" = x""yes; then :
  2038.         for ac_header in libdc1394/dc1394_control.h
  2039. do :
  2040.   as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
  2041. ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
  2042. eval as_val=$$as_ac_Header
  2043.    if test "x$as_val" = x""yes; then :
  2044.   cat >>confdefs.h <<_ACEOF
  2045. #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
  2046. _ACEOF
  2047.   PLUGINS="${PLUGINS} dc1394"
  2048.   LTLIBdc1394="libdc1394_plugin.la"
  2049.   for element in dc1394; do
  2050.     eval "LIBS_${element}="'"'"-ldc1394_control -lraw1394 "'$'"{LIBS_${element}} "'"'
  2051.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  2052.   done
  2053. else
  2054.         as_fn_error "libdc1394 is mandatory for the dc1394 input module. try --disable-dc1394 or install this library" "$LINENO" 5
  2055. fi
  2056. done
  2057. else
  2058.       as_fn_error "libraw1394 is mandatory for the dc1394 input module. try --disable-dc1394 or install this library" "$LINENO" 5
  2059. fi
  2060. else
  2061.     as_fn_error "libraw1394 is mandatory for the dc1394 input module. try --disable-dc1394 or install this library" "$LINENO" 5
  2062. fi
  2063. done
  2064. fi
  2065. # Check whether --enable-dv was given.
  2066. if test "${enable_dv+set}" = set; then :
  2067.   enableval=$enable_dv;
  2068. fi
  2069. if test "${enable_dv}" = "yes"
  2070. then
  2071. # Check whether --with-dv-raw1394 was given.
  2072. if test "${with_dv_raw1394+set}" = set; then :
  2073.   withval=$with_dv_raw1394;
  2074. fi
  2075. # Check whether --with-dv-raw1394-tree was given.
  2076. if test "${with_dv_raw1394_tree+set}" = set; then :
  2077.   withval=$with_dv_raw1394_tree;
  2078. fi
  2079.   if test -z "${with_dv_raw1394}" -a "${with_dv_raw1394}" != ""
  2080.   then
  2081.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for raw1394 headers in ${with_dv_raw1394}" >&5
  2082. $as_echo_n "checking for raw1394 headers in ${with_dv_raw1394}... " >&6; }
  2083.     if test -f ${with_dv_raw1394}/include/libraw1394/raw1394.h
  2084.     then
  2085.             { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
  2086. $as_echo "yes" >&6; }
  2087.   PLUGINS="${PLUGINS} access_dv"
  2088.   LTLIBaccess_dv="libaccess_dv_plugin.la"
  2089.   for element in access_dv; do
  2090.     eval "LIBS_${element}="'"'"-L${with_dv_raw1394}/lib -lraw1394 -lpthread "'$'"{LIBS_${element}} "'"'
  2091.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  2092.   done
  2093.   for element in access_dv; do
  2094.     eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${with_dv_raw1394}/include"'"'
  2095.     am_modules_with_cppflags="${am_modules_with_cppflags} ${element}"
  2096.   done
  2097.     else
  2098.             { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  2099. $as_echo "no" >&6; }
  2100.       as_fn_error "cannot find ${with_dv_raw1394}/include/libraw1394/raw1394.h" "$LINENO" 5
  2101.     fi
  2102.   else
  2103.     for ac_header in libraw1394/raw1394.h
  2104. do :
  2105.   ac_fn_c_check_header_mongrel "$LINENO" "libraw1394/raw1394.h" "ac_cv_header_libraw1394_raw1394_h" "$ac_includes_default"
  2106. if test "x$ac_cv_header_libraw1394_raw1394_h" = x""yes; then :
  2107.   cat >>confdefs.h <<_ACEOF
  2108. #define HAVE_LIBRAW1394_RAW1394_H 1
  2109. _ACEOF
  2110.   PLUGINS="${PLUGINS} access_dv"
  2111.   LTLIBaccess_dv="libaccess_dv_plugin.la"
  2112.   for element in access_dv; do
  2113.     eval "LIBS_${element}="'"'"-lraw1394 -lavc1394 "'$'"{LIBS_${element}} "'"'
  2114.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  2115.   done
  2116. else
  2117.         if test -n "${enable_dv}"
  2118.         then
  2119.           as_fn_error "cannot find libraw1394 headers" "$LINENO" 5
  2120.         fi
  2121. fi
  2122. done
  2123.   fi
  2124.     if test -z "${with_dv_raw1394_tree}" -a "${with_dv_raw1394_tree}" != ""
  2125.   then
  2126.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libraw1394.a in ${with_dv_raw1394_tree}" >&5
  2127. $as_echo_n "checking for libraw1394.a in ${with_dv_raw1394_tree}... " >&6; }
  2128.     real_dv_raw1394_tree="`cd ${with_dv_raw1394_tree} 2>/dev/null && pwd`"
  2129.     if test -z "${real_dv_raw1394_tree}"
  2130.     then
  2131.             { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  2132. $as_echo "no" >&6; }
  2133.       as_fn_error "cannot cd to ${real_dv_raw1394_tree}" "$LINENO" 5
  2134.     fi
  2135.     if test -f "${real_dv_raw1394_tree}/src/.libs/libraw1394.a"
  2136.     then
  2137.             { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${real_dv_raw1394_tree}/src/.libs/libraw1394.a" >&5
  2138. $as_echo "${real_dv_raw1394_tree}/src/.libs/libraw1394.a" >&6; }
  2139.   PLUGINS="${PLUGINS} access_dv"
  2140.   LTLIBaccess_dv="libaccess_dv_plugin.la"
  2141.   for element in access_dv; do
  2142.     eval "LIBS_${element}="'"'"-L${real_dv_raw1394_tree}/src/.libs -lraw1394 "'$'"{LIBS_${element}} "'"'
  2143.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  2144.   done
  2145.   for element in access_dv; do
  2146.     eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${real_dv_raw1394_tree}"'"'
  2147.     am_modules_with_cppflags="${am_modules_with_cppflags} ${element}"
  2148.   done
  2149.     else
  2150.             { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  2151. $as_echo "no" >&6; }
  2152.       as_fn_error "cannot find ${real_dv_raw1394_tree}/src/.libs/libraw1394.a, make sure you compiled libraw1394 in ${with_dv_raw1394_tree}" "$LINENO" 5
  2153.     fi
  2154.   fi
  2155. # Check whether --with-dv-avc1394 was given.
  2156. if test "${with_dv_avc1394+set}" = set; then :
  2157.   withval=$with_dv_avc1394;
  2158. fi
  2159. # Check whether --with-dv-avc1394-tree was given.
  2160. if test "${with_dv_avc1394_tree+set}" = set; then :
  2161.   withval=$with_dv_avc1394_tree;
  2162. fi
  2163.   if test -z "${with_dv_avc1394}" -a "${with_dv_avc1394}" != ""
  2164.   then
  2165.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for avc1394 headers in ${with_dv_avc1394}" >&5
  2166. $as_echo_n "checking for avc1394 headers in ${with_dv_avc1394}... " >&6; }
  2167.     if test -f ${with_dv_avc1394}/include/libavc1394/avc1394.h
  2168.     then
  2169.             { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
  2170. $as_echo "yes" >&6; }
  2171.   for element in access_dv; do
  2172.     eval "LIBS_${element}="'"'"-L${with_dv_avc1394}/lib -lavc1394 -lrom1394 -lpthread "'$'"{LIBS_${element}} "'"'
  2173.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  2174.   done
  2175.   for element in access_dv; do
  2176.     eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${with_avc1394}/include"'"'
  2177.     am_modules_with_cppflags="${am_modules_with_cppflags} ${element}"
  2178.   done
  2179.     else
  2180.             { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  2181. $as_echo "no" >&6; }
  2182.       as_fn_error "cannot find ${with_dv_avc1394}/include/libavc1394/avc1394.h" "$LINENO" 5
  2183.     fi
  2184.   else
  2185.     for ac_header in libavc1394/avc1394.h
  2186. do :
  2187.   ac_fn_c_check_header_mongrel "$LINENO" "libavc1394/avc1394.h" "ac_cv_header_libavc1394_avc1394_h" "$ac_includes_default"
  2188. if test "x$ac_cv_header_libavc1394_avc1394_h" = x""yes; then :
  2189.   cat >>confdefs.h <<_ACEOF
  2190. #define HAVE_LIBAVC1394_AVC1394_H 1
  2191. _ACEOF
  2192.   for element in access_dv; do
  2193.     eval "LIBS_${element}="'"'"-lavc1394 -lrom1394 -lpthread "'$'"{LIBS_${element}} "'"'
  2194.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  2195.   done
  2196. else
  2197.         if test -n "${enable_dv}"
  2198.         then
  2199.           as_fn_error "cannot find libavc1394 headers" "$LINENO" 5
  2200.         fi
  2201. fi
  2202. done
  2203.   fi
  2204.     if test -z "${with_dv_avc1394_tree}" -a "${with_dv_avc1394_tree}" != ""
  2205.   then
  2206.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libavc1394.a in ${with_dv_avc1394_tree}" >&5
  2207. $as_echo_n "checking for libavc1394.a in ${with_dv_avc1394_tree}... " >&6; }
  2208.     real_dv_avc1394_tree="`cd ${with_dv_avc1394_tree} 2>/dev/null && pwd`"
  2209.     if test -z "${real_dv_avc1394_tree}"
  2210.     then
  2211.             { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  2212. $as_echo "no" >&6; }
  2213.       as_fn_error "cannot cd to ${real_dv_avc1394_tree}" "$LINENO" 5
  2214.     fi
  2215.     if test -f "${real_dv_avc1394_tree}/src/.libs/libavc1394.a"
  2216.     then
  2217.             { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${real_dv_avc1394_tree}/src/.libs/libavc1394.a" >&5
  2218. $as_echo "${real_dv_avc1394_tree}/src/.libs/libavc1394.a" >&6; }
  2219.   for element in access_dv; do
  2220.     eval "LIBS_${element}="'"'"-L${real_dv_avc1394_tree}/src/.libs -lavc1394 -lrom1394 -lpthread "'$'"{LIBS_${element}} "'"'
  2221.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  2222.   done
  2223.   for element in access_dv; do
  2224.     eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${real_dv_avc1394_tree}"'"'
  2225.     am_modules_with_cppflags="${am_modules_with_cppflags} ${element}"
  2226.   done
  2227.     else
  2228.             { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  2229. $as_echo "no" >&6; }
  2230.       as_fn_error "cannot find ${real_dv_avc1394_tree}/src/.libs/libavc1394.a, make sure you compiled libavc1394 in ${with_dv_avc1394_tree}" "$LINENO" 5
  2231.     fi
  2232.   fi
  2233. fi
  2234. # Check whether --enable-dvdread was given.
  2235. if test "${enable_dvdread+set}" = set; then :
  2236.   enableval=$enable_dvdread;
  2237. fi
  2238. if test "${enable_dvdread}" != "no"
  2239. then
  2240. # Check whether --with-dvdread was given.
  2241. if test "${with_dvdread+set}" = set; then :
  2242.   withval=$with_dvdread;
  2243. fi
  2244. # Check whether --with-dvdread-tree was given.
  2245. if test "${with_dvdread_tree+set}" = set; then :
  2246.   withval=$with_dvdread_tree;
  2247. fi
  2248.     if test "${SYS}" = "mingw32" || test "${SYS}" = "darwin" || test "${SYS}" = "beos" ; then
  2249.   for element in dvdread; do
  2250.     eval "LIBS_${element}="'"'"-ldvdcss "'$'"{LIBS_${element}} "'"'
  2251.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  2252.   done
  2253.   fi
  2254.   if test -z "${with_dvdread}"
  2255.   then
  2256.     if test -z "${with_dvdread_tree}"
  2257.     then
  2258.       for ac_header in dvdread/dvd_reader.h
  2259. do :
  2260.   ac_fn_c_check_header_mongrel "$LINENO" "dvdread/dvd_reader.h" "ac_cv_header_dvdread_dvd_reader_h" "$ac_includes_default"
  2261. if test "x$ac_cv_header_dvdread_dvd_reader_h" = x""yes; then :
  2262.   cat >>confdefs.h <<_ACEOF
  2263. #define HAVE_DVDREAD_DVD_READER_H 1
  2264. _ACEOF
  2265.   PLUGINS="${PLUGINS} dvdread"
  2266.   LTLIBdvdread="libdvdread_plugin.la"
  2267.   for element in dvdread; do
  2268.     eval "LIBS_${element}="'"'"-ldvdread ${LIBS_dvdcss} "'$'"{LIBS_${element}} "'"'
  2269.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  2270.   done
  2271. else
  2272.   for ac_header in libdvdread/dvd_reader.h
  2273. do :
  2274.   ac_fn_c_check_header_mongrel "$LINENO" "libdvdread/dvd_reader.h" "ac_cv_header_libdvdread_dvd_reader_h" "$ac_includes_default"
  2275. if test "x$ac_cv_header_libdvdread_dvd_reader_h" = x""yes; then :
  2276.   cat >>confdefs.h <<_ACEOF
  2277. #define HAVE_LIBDVDREAD_DVD_READER_H 1
  2278. _ACEOF
  2279.   PLUGINS="${PLUGINS} dvdread"
  2280.   LTLIBdvdread="libdvdread_plugin.la"
  2281.   for element in dvdread; do
  2282.     eval "LIBS_${element}="'"'"-ldvdread ${LIBS_dvdcss} "'$'"{LIBS_${element}} "'"'
  2283.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  2284.   done
  2285. else
  2286.       if test -n "${enable_dvdread}"
  2287.       then
  2288.       as_fn_error "cannot find libdvdread headers" "$LINENO" 5
  2289.      fi
  2290. fi
  2291. done
  2292. fi
  2293. done
  2294.     else
  2295.       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libdvdread.a in ${with_dvdread_tree}" >&5
  2296. $as_echo_n "checking for libdvdread.a in ${with_dvdread_tree}... " >&6; }
  2297.       real_dvdread_tree="`cd ${with_dvdread_tree} 2>/dev/null && pwd`"
  2298.       if test -z "${real_dvdread_tree}"
  2299.       then
  2300.                 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  2301. $as_echo "no" >&6; }
  2302.         as_fn_error "cannot cd to ${with_dvdread_tree}" "$LINENO" 5
  2303.       fi
  2304.       if test -f "${real_dvdread_tree}/dvdread/.libs/libdvdread.a"
  2305.       then
  2306.                 { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${real_dvdread_tree}/dvdread/.libs/libdvdread.a" >&5
  2307. $as_echo "${real_dvdread_tree}/dvdread/.libs/libdvdread.a" >&6; }
  2308.   PLUGINS="${PLUGINS} dvdread"
  2309.   LTLIBdvdread="libdvdread_plugin.la"
  2310.   for element in dvdread; do
  2311.     eval "LIBS_${element}="'"'"-L${real_dvdread_tree}/dvdread/.libs -ldvdread ${LIBS_dvdcss} "'$'"{LIBS_${element}} "'"'
  2312.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  2313.   done
  2314.   for element in dvdread; do
  2315.     eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${real_dvdread_tree}"'"'
  2316.     am_modules_with_cppflags="${am_modules_with_cppflags} ${element}"
  2317.   done
  2318.       else
  2319.                 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  2320. $as_echo "no" >&6; }
  2321.         as_fn_error "cannot find ${real_dvdread_tree}/dvdread/.libs/libdvdread.a, make sure you compiled libdvdread in ${with_dvdread_tree}" "$LINENO" 5
  2322.       fi
  2323.     fi
  2324.   else
  2325.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dvdread headers in ${with_dvdread}" >&5
  2326. $as_echo_n "checking for dvdread headers in ${with_dvdread}... " >&6; }
  2327.     if test -f ${with_dvdread}/include/dvdread/dvd_reader.h
  2328.     then
  2329.             { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
  2330. $as_echo "yes" >&6; }
  2331.   PLUGINS="${PLUGINS} dvdread"
  2332.   LTLIBdvdread="libdvdread_plugin.la"
  2333.   for element in dvdread; do
  2334.     eval "LIBS_${element}="'"'"-L${with_dvdread}/lib -ldvdread ${LIBS_dvdcss} "'$'"{LIBS_${element}} "'"'
  2335.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  2336.   done
  2337.   for element in dvdread; do
  2338.     eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${with_dvdread}/include"'"'
  2339.     am_modules_with_cppflags="${am_modules_with_cppflags} ${element}"
  2340.   done
  2341.     else
  2342.             { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  2343. $as_echo "no" >&6; }
  2344.       as_fn_error "cannot find ${with_dvdread}/include/dvdread/dvd_reader.h" "$LINENO" 5
  2345.     fi
  2346.   fi
  2347. fi
  2348. # Check whether --enable-dvdnav was given.
  2349. if test "${enable_dvdnav+set}" = set; then :
  2350.   enableval=$enable_dvdnav;
  2351. fi
  2352. if test "${enable_dvdnav}" != "no"
  2353. then
  2354.     if test "${SYS}" = "mingw32" || test "${SYS}" = "darwin" || test "${SYS}" = "beos" ; then
  2355.   for element in dvdnav; do
  2356.     eval "LIBS_${element}="'"'"-ldvdcss "'$'"{LIBS_${element}} "'"'
  2357.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  2358.   done
  2359.   fi
  2360.   DVDNAV_PATH="${PATH}"
  2361. # Check whether --with-dvdnav-config-path was given.
  2362. if test "${with_dvdnav_config_path+set}" = set; then :
  2363.   withval=$with_dvdnav_config_path;  if test "${with_dvdnav_config_path}" != "no"
  2364.       then
  2365.         DVDNAV_PATH="${with_dvdnav_config_path}:${PATH}"
  2366.       fi
  2367. fi
  2368.   # Extract the first word of "dvdnav-config", so it can be a program name with args.
  2369. set dummy dvdnav-config; ac_word=$2
  2370. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  2371. $as_echo_n "checking for $ac_word... " >&6; }
  2372. if test "${ac_cv_path_DVDNAV_CONFIG+set}" = set; then :
  2373.   $as_echo_n "(cached) " >&6
  2374. else
  2375.   case $DVDNAV_CONFIG in
  2376.   [\/]* | ?:[\/]*)
  2377.   ac_cv_path_DVDNAV_CONFIG="$DVDNAV_CONFIG" # Let the user override the test with a path.
  2378.   ;;
  2379.   *)
  2380.   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  2381. for as_dir in ${DVDNAV_PATH}
  2382. do
  2383.   IFS=$as_save_IFS
  2384.   test -z "$as_dir" && as_dir=.
  2385.     for ac_exec_ext in '' $ac_executable_extensions; do
  2386.   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  2387.     ac_cv_path_DVDNAV_CONFIG="$as_dir/$ac_word$ac_exec_ext"
  2388.     $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  2389.     break 2
  2390.   fi
  2391. done
  2392.   done
  2393. IFS=$as_save_IFS
  2394.   test -z "$ac_cv_path_DVDNAV_CONFIG" && ac_cv_path_DVDNAV_CONFIG="no"
  2395.   ;;
  2396. esac
  2397. fi
  2398. DVDNAV_CONFIG=$ac_cv_path_DVDNAV_CONFIG
  2399. if test -n "$DVDNAV_CONFIG"; then
  2400.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DVDNAV_CONFIG" >&5
  2401. $as_echo "$DVDNAV_CONFIG" >&6; }
  2402. else
  2403.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  2404. $as_echo "no" >&6; }
  2405. fi
  2406.   if test "${DVDNAV_CONFIG}" != "no"
  2407.   then
  2408.   PLUGINS="${PLUGINS} dvdnav"
  2409.   LTLIBdvdnav="libdvdnav_plugin.la"
  2410.   for element in dvdnav; do
  2411.     eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} `${DVDNAV_CONFIG} --cflags`"'"'
  2412.     am_modules_with_cflags="${am_modules_with_cflags} ${element}"
  2413.   done
  2414.   for element in dvdnav; do
  2415.     eval "LIBS_${element}="'"'"`${DVDNAV_CONFIG} --libs` "'$'"{LIBS_${element}} "'"'
  2416.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  2417.   done
  2418.   fi
  2419. fi
  2420. # Check whether --enable-dshow was given.
  2421. if test "${enable_dshow+set}" = set; then :
  2422.   enableval=$enable_dshow;
  2423. fi
  2424. if test "${enable_dshow}" != "no"
  2425. then
  2426.   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"
  2427.   then
  2428.     ac_ext=cpp
  2429. ac_cpp='$CXXCPP $CPPFLAGS'
  2430. ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
  2431. ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
  2432. ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
  2433.       for ac_header in dshow.h
  2434. do :
  2435.   ac_fn_cxx_check_header_mongrel "$LINENO" "dshow.h" "ac_cv_header_dshow_h" "$ac_includes_default"
  2436. if test "x$ac_cv_header_dshow_h" = x""yes; then :
  2437.   cat >>confdefs.h <<_ACEOF
  2438. #define HAVE_DSHOW_H 1
  2439. _ACEOF
  2440.   PLUGINS="${PLUGINS} dshow"
  2441.   LTLIBdshow="libdshow_plugin.la"
  2442.   for element in dshow; do
  2443.     eval "CXXFLAGS_${element}="'"$'"{CXXFLAGS_${element}} "'"'
  2444.     am_modules_with_cxxflags="${am_modules_with_cxxflags} ${element}"
  2445.   done
  2446.   for element in dshow; do
  2447.     eval "LIBS_${element}="'"'"-lole32 -loleaut32 -luuid "'$'"{LIBS_${element}} "'"'
  2448.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  2449.   done
  2450. fi
  2451. done
  2452.     ac_ext=c
  2453. ac_cpp='$CPP $CPPFLAGS'
  2454. ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
  2455. ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
  2456. ac_compiler_gnu=$ac_cv_c_compiler_gnu
  2457.   fi
  2458. fi
  2459. # Check whether --enable-bda was given.
  2460. if test "${enable_bda+set}" = set; then :
  2461.   enableval=$enable_bda;
  2462. fi
  2463. if test "${enable_bda}" != "no"
  2464. then
  2465.   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"
  2466.   then
  2467.       for ac_header in dshow.h
  2468. do :
  2469.   ac_fn_c_check_header_mongrel "$LINENO" "dshow.h" "ac_cv_header_dshow_h" "$ac_includes_default"
  2470. if test "x$ac_cv_header_dshow_h" = x""yes; then :
  2471.   cat >>confdefs.h <<_ACEOF
  2472. #define HAVE_DSHOW_H 1
  2473. _ACEOF
  2474.   PLUGINS="${PLUGINS} bda"
  2475.   LTLIBbda="libbda_plugin.la"
  2476.   for element in bda; do
  2477.     eval "CXXFLAGS_${element}="'"$'"{CXXFLAGS_${element}} "'"'
  2478.     am_modules_with_cxxflags="${am_modules_with_cxxflags} ${element}"
  2479.   done
  2480.   for element in bda; do
  2481.     eval "LIBS_${element}="'"'"-lstrmiids -lole32 -loleaut32 -luuid "'$'"{LIBS_${element}} "'"'
  2482.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  2483.   done
  2484. fi
  2485. done
  2486.   fi
  2487. fi
  2488. # Check whether --enable-opencv was given.
  2489. if test "${enable_opencv+set}" = set; then :
  2490.   enableval=$enable_opencv;
  2491. fi
  2492. if test "${enable_opencv}" = "yes" -a "${CXX}" != "";
  2493. then
  2494. # Check whether --with-opencv-tree was given.
  2495. if test "${with_opencv_tree+set}" = set; then :
  2496.   withval=$with_opencv_tree;
  2497. fi
  2498.     if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"
  2499.     then
  2500.       test -z "${with_opencv_tree}" && as_fn_error "You have to specify --with-opencv-tree" "$LINENO" 5
  2501.       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for opencv in ${with_opencv_tree}" >&5
  2502. $as_echo_n "checking for opencv in ${with_opencv_tree}... " >&6; }
  2503.       if test -f ${with_opencv_tree}/cv/include/cv.h -a -f ${with_opencv_tree}/cxcore/include/cxcore.h 
  2504.         -a -f ${with_opencv_tree}/cvaux/include/cvaux.h -a -f ${with_opencv_tree}/otherlibs/highgui/highgui.h
  2505.       then
  2506.         { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
  2507. $as_echo "yes" >&6; }
  2508.   PLUGINS="${PLUGINS} opencv_wrapper"
  2509.   LTLIBopencv_wrapper="libopencv_wrapper_plugin.la"
  2510.   for element in opencv_wrapper; do
  2511.     eval "LIBS_${element}="'"'"-L${with_opencv_tree}/lib -lcv -lcxcore -lcvaux -lhighgui "'$'"{LIBS_${element}} "'"'
  2512.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  2513.   done
  2514.   for element in opencv_wrapper; do
  2515.     eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} -I${with_opencv_tree}/cv/include -I${with_opencv_tree}/cxcore/include -I${with_opencv_tree}/cvaux/include -I${with_opencv_tree}/otherlibs/highgui"'"'
  2516.     am_modules_with_cflags="${am_modules_with_cflags} ${element}"
  2517.   done
  2518.         ac_ext=cpp
  2519. ac_cpp='$CXXCPP $CPPFLAGS'
  2520. ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
  2521. ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
  2522. ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
  2523.   PLUGINS="${PLUGINS} opencv_example"
  2524.   LTLIBopencv_example="libopencv_example_plugin.la"
  2525.   for element in opencv_example; do
  2526.     eval "LIBS_${element}="'"'"-L${with_opencv_tree}/lib -lcv -lcxcore -lcvaux -lhighgui "'$'"{LIBS_${element}} "'"'
  2527.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  2528.   done
  2529.   for element in opencv_example; do
  2530.     eval "CXXFLAGS_${element}="'"$'"{CXXFLAGS_${element}} -I${with_opencv_tree}/cv/include -I${with_opencv_tree}/cxcore/include -I${with_opencv_tree}/cvaux/include -I${with_opencv_tree}/otherlibs/highgui"'"'
  2531.     am_modules_with_cxxflags="${am_modules_with_cxxflags} ${element}"
  2532.   done
  2533.         ac_ext=c
  2534. ac_cpp='$CPP $CPPFLAGS'
  2535. ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
  2536. ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
  2537. ac_compiler_gnu=$ac_cv_c_compiler_gnu
  2538.   else
  2539.                 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  2540. $as_echo "no" >&6; }
  2541.         as_fn_error "cannot find opencv in ${with_opencv_tree}" "$LINENO" 5
  2542.   fi
  2543.     else
  2544. pkg_failed=no
  2545. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for OPENCV" >&5
  2546. $as_echo_n "checking for OPENCV... " >&6; }
  2547. if test -n "$PKG_CONFIG"; then
  2548.     if test -n "$OPENCV_CFLAGS"; then
  2549.         pkg_cv_OPENCV_CFLAGS="$OPENCV_CFLAGS"
  2550.     else
  2551.         if test -n "$PKG_CONFIG" && 
  2552.     { { $as_echo "$as_me:${as_lineno-$LINENO}: $PKG_CONFIG --exists --print-errors "opencv""; } >&5
  2553.   ($PKG_CONFIG --exists --print-errors "opencv") 2>&5
  2554.   ac_status=$?
  2555.   $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
  2556.   test $ac_status = 0; }; then
  2557.   pkg_cv_OPENCV_CFLAGS=`$PKG_CONFIG --cflags "opencv" 2>/dev/null`
  2558. else
  2559.   pkg_failed=yes
  2560. fi
  2561.     fi
  2562. else
  2563. pkg_failed=untried
  2564. fi
  2565. if test -n "$PKG_CONFIG"; then
  2566.     if test -n "$OPENCV_LIBS"; then
  2567.         pkg_cv_OPENCV_LIBS="$OPENCV_LIBS"
  2568.     else
  2569.         if test -n "$PKG_CONFIG" && 
  2570.     { { $as_echo "$as_me:${as_lineno-$LINENO}: $PKG_CONFIG --exists --print-errors "opencv""; } >&5
  2571.   ($PKG_CONFIG --exists --print-errors "opencv") 2>&5
  2572.   ac_status=$?
  2573.   $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
  2574.   test $ac_status = 0; }; then
  2575.   pkg_cv_OPENCV_LIBS=`$PKG_CONFIG --libs "opencv" 2>/dev/null`
  2576. else
  2577.   pkg_failed=yes
  2578. fi
  2579.     fi
  2580. else
  2581. pkg_failed=untried
  2582. fi
  2583. if test $pkg_failed = yes; then
  2584. if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
  2585.         _pkg_short_errors_supported=yes
  2586. else
  2587.         _pkg_short_errors_supported=no
  2588. fi
  2589.         if test $_pkg_short_errors_supported = yes; then
  2590.         OPENCV_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "opencv"`
  2591.         else
  2592.         OPENCV_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "opencv"`
  2593.         fi
  2594. # Put the nasty error message in config.log where it belongs
  2595. echo "$OPENCV_PKG_ERRORS" >&5
  2596. { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  2597. $as_echo "no" >&6; }
  2598.                 as_fn_error "libopencv not found!" "$LINENO" 5
  2599. elif test $pkg_failed = untried; then
  2600. as_fn_error "libopencv not found!" "$LINENO" 5
  2601. else
  2602. OPENCV_CFLAGS=$pkg_cv_OPENCV_CFLAGS
  2603. OPENCV_LIBS=$pkg_cv_OPENCV_LIBS
  2604.         { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
  2605. $as_echo "yes" >&6; }
  2606.   PLUGINS="${PLUGINS} opencv_example"
  2607.   LTLIBopencv_example="libopencv_example_plugin.la"
  2608.   PLUGINS="${PLUGINS} opencv_wrapper"
  2609.   LTLIBopencv_wrapper="libopencv_wrapper_plugin.la"
  2610.   for element in opencv_example opencv_wrapper; do
  2611.     eval "LIBS_${element}="'"'"${OPENCV_LIBS} "'$'"{LIBS_${element}} "'"'
  2612.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  2613.   done
  2614.   for element in opencv_wrapper; do
  2615.     eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} ${OPENCV_CFLAGS}"'"'
  2616.     am_modules_with_cflags="${am_modules_with_cflags} ${element}"
  2617.   done
  2618.   for element in opencv_example; do
  2619.     eval "CXXFLAGS_${element}="'"$'"{CXXFLAGS_${element}} ${OPENCV_CFLAGS}"'"'
  2620.     am_modules_with_cxxflags="${am_modules_with_cxxflags} ${element}"
  2621.   done
  2622. fi
  2623.     fi
  2624. fi
  2625. # Check whether --enable-smb was given.
  2626. if test "${enable_smb+set}" = set; then :
  2627.   enableval=$enable_smb;
  2628. fi
  2629. if test "${enable_smb}" != "no"; then
  2630.   for ac_header in libsmbclient.h
  2631. do :
  2632.   ac_fn_c_check_header_mongrel "$LINENO" "libsmbclient.h" "ac_cv_header_libsmbclient_h" "$ac_includes_default"
  2633. if test "x$ac_cv_header_libsmbclient_h" = x""yes; then :
  2634.   cat >>confdefs.h <<_ACEOF
  2635. #define HAVE_LIBSMBCLIENT_H 1
  2636. _ACEOF
  2637.   PLUGINS="${PLUGINS} access_smb"
  2638.   LTLIBaccess_smb="libaccess_smb_plugin.la"
  2639.   for element in access_smb; do
  2640.     eval "LIBS_${element}="'"'"-lsmbclient "'$'"{LIBS_${element}} "'"'
  2641.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  2642.   done
  2643. else
  2644.    if test -n "${enable_smb}"; then
  2645.         as_fn_error "cannot find libsmbclient headers" "$LINENO" 5
  2646.      fi
  2647. fi
  2648. done
  2649.   ac_fn_c_check_member "$LINENO" "struct _SMBCCTX" "close_fn" "ac_cv_member_struct__SMBCCTX_close_fn" "#include <libsmbclient.h>
  2650. "
  2651. if test "x$ac_cv_member_struct__SMBCCTX_close_fn" = x""yes; then :
  2652. $as_echo "#define HAVE__SMBCCTX_CLOSE_FN 1" >>confdefs.h
  2653. fi
  2654. fi
  2655. # Check whether --enable-dvbpsi was given.
  2656. if test "${enable_dvbpsi+set}" = set; then :
  2657.   enableval=$enable_dvbpsi;
  2658. fi
  2659. have_dvbpsi=no
  2660. if test "${enable_dvbpsi}" != "no"
  2661. then
  2662. # Check whether --with-dvbpsi was given.
  2663. if test "${with_dvbpsi+set}" = set; then :
  2664.   withval=$with_dvbpsi;
  2665. fi
  2666. # Check whether --with-dvbpsi was given.
  2667. if test "${with_dvbpsi+set}" = set; then :
  2668.   withval=$with_dvbpsi;
  2669. fi
  2670.   case "${with_dvbpsi}" in
  2671.   ""|yes)
  2672.     if test -z "${with_dvbpsi_tree}"
  2673.     then
  2674.       for ac_header in dvbpsi/dr.h
  2675. do :
  2676.   ac_fn_c_check_header_compile "$LINENO" "dvbpsi/dr.h" "ac_cv_header_dvbpsi_dr_h" "#if defined( HAVE_STDINT_H )
  2677. #   include <stdint.h>
  2678. #elif defined( HAVE_INTTYPES_H )
  2679. #   include <inttypes.h>
  2680. #endif
  2681. #include <dvbpsi/dvbpsi.h>
  2682. #include <dvbpsi/descriptor.h>
  2683. #include <dvbpsi/pat.h>
  2684. #include <dvbpsi/pmt.h>
  2685. "
  2686. if test "x$ac_cv_header_dvbpsi_dr_h" = x""yes; then :
  2687.   cat >>confdefs.h <<_ACEOF
  2688. #define HAVE_DVBPSI_DR_H 1
  2689. _ACEOF
  2690.   PLUGINS="${PLUGINS} ts"
  2691.   LTLIBts="libts_plugin.la"
  2692.           if test "${enable_sout}" != "no"; then
  2693.   PLUGINS="${PLUGINS} mux_ts"
  2694.   LTLIBmux_ts="libmux_ts_plugin.la"
  2695.           fi
  2696.   for element in mux_ts ts dvb; do
  2697.     eval "LIBS_${element}="'"'"-ldvbpsi "'$'"{LIBS_${element}} "'"'
  2698.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  2699.   done
  2700.   have_dvbpsi=yes
  2701. else
  2702.     { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cannot find libdvbpsi headers" >&5
  2703. $as_echo "$as_me: WARNING: cannot find libdvbpsi headers" >&2;}
  2704. fi
  2705. done
  2706.     else
  2707.       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libdvbpsi.a in ${with_dvbpsi_tree}" >&5
  2708. $as_echo_n "checking for libdvbpsi.a in ${with_dvbpsi_tree}... " >&6; }
  2709.       real_dvbpsi_tree="`cd ${with_dvbpsi_tree} 2>/dev/null && pwd`"
  2710.       if test -z "${real_dvbpsi_tree}"
  2711.       then
  2712.                 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  2713. $as_echo "no" >&6; }
  2714.         as_fn_error "cannot cd to ${with_dvbpsi_tree}" "$LINENO" 5
  2715.       fi
  2716.       if test -f "${real_dvbpsi_tree}/src/.libs/libdvbpsi.a"
  2717.       then
  2718.                 { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${real_dvbpsi_tree}/src/.libs/libdvbpsi.a" >&5
  2719. $as_echo "${real_dvbpsi_tree}/src/.libs/libdvbpsi.a" >&6; }
  2720.   PLUGINS="${PLUGINS} ts"
  2721.   LTLIBts="libts_plugin.la"
  2722.         if test "${enable_sout}" != "no"; then
  2723.   PLUGINS="${PLUGINS} mux_ts"
  2724.   LTLIBmux_ts="libmux_ts_plugin.la"
  2725.         fi
  2726.   for element in mux_ts ts dvb; do
  2727.     eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${real_dvbpsi_tree}/src"'"'
  2728.     am_modules_with_cppflags="${am_modules_with_cppflags} ${element}"
  2729.   done
  2730.   for element in mux_ts ts dvb; do
  2731.     eval "LIBS_${element}="'"'"${real_dvbpsi_tree}/src/.libs/libdvbpsi.a "'$'"{LIBS_${element}} "'"'
  2732.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  2733.   done
  2734. have_dvbpsi=yes
  2735.       else
  2736.                 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  2737. $as_echo "no" >&6; }
  2738.         as_fn_error "cannot find ${real_dvbpsi_tree}/src/.libs/libdvbpsi.a, make sure you compiled libdvbpsi in ${with_dvbpsi_tree}" "$LINENO" 5
  2739.       fi
  2740.     fi
  2741.   ;;
  2742.   no)
  2743.       ;;
  2744.   *)
  2745.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dvbpsi headers in ${with_dvbpsi}" >&5
  2746. $as_echo_n "checking for dvbpsi headers in ${with_dvbpsi}... " >&6; }
  2747.     if test -z "${with_dvbpsi}"
  2748.     then
  2749.       LDFLAGS_test=""
  2750.       CPPFLAGS_test=""
  2751.     else
  2752.       LDFLAGS_test="-L${with_dvbpsi}/lib"
  2753.       CPPFLAGS_test="-I${with_dvbpsi}/include"
  2754.     fi
  2755.     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_test}"
  2756.     for ac_header in dvbpsi/dr.h
  2757. do :
  2758.   ac_fn_c_check_header_mongrel "$LINENO" "dvbpsi/dr.h" "ac_cv_header_dvbpsi_dr_h" "$ac_includes_default"
  2759. if test "x$ac_cv_header_dvbpsi_dr_h" = x""yes; then :
  2760.   cat >>confdefs.h <<_ACEOF
  2761. #define HAVE_DVBPSI_DR_H 1
  2762. _ACEOF
  2763.   PLUGINS="${PLUGINS} ts"
  2764.   LTLIBts="libts_plugin.la"
  2765.       if test "${enable_sout}" != "no"; then
  2766.   PLUGINS="${PLUGINS} mux_ts"
  2767.   LTLIBmux_ts="libmux_ts_plugin.la"
  2768.       fi
  2769.   for element in mux_ts ts dvb; do
  2770.     eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} ${CPPFLAGS_test}"'"'
  2771.     am_modules_with_cppflags="${am_modules_with_cppflags} ${element}"
  2772.   done
  2773.   for element in mux_ts ts dvb; do
  2774.     eval "LIBS_${element}="'"'"${LDFLAGS_test} -ldvbpsi "'$'"{LIBS_${element}} "'"'
  2775.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  2776.   done
  2777.       have_dvbpsi=yes
  2778. else
  2779.       if test -n "${enable_dvbpsi}"
  2780.       then
  2781.         as_fn_error "Could not find libdvbpsi on your system: you may get it from www.videolan.org, you'll need at least version 0.1.1" "$LINENO" 5
  2782.       fi
  2783. fi
  2784. done
  2785.     CPPFLAGS="${CPPFLAGS_save}"
  2786.   ;;
  2787.   esac
  2788.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dvbpsi_GenSDTSections in -ldvbpsi" >&5
  2789. $as_echo_n "checking for dvbpsi_GenSDTSections in -ldvbpsi... " >&6; }
  2790. if test "${ac_cv_lib_dvbpsi_dvbpsi_GenSDTSections+set}" = set; then :
  2791.   $as_echo_n "(cached) " >&6
  2792. else
  2793.   ac_check_lib_save_LIBS=$LIBS
  2794. LIBS="-ldvbpsi ${LIBS_ts} $LIBS"
  2795. cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  2796. /* end confdefs.h.  */
  2797. /* Override any GCC internal prototype to avoid an error.
  2798.    Use char because int might match the return type of a GCC
  2799.    builtin and then its argument prototype would still apply.  */
  2800. #ifdef __cplusplus
  2801. extern "C"
  2802. #endif
  2803. char dvbpsi_GenSDTSections ();
  2804. int
  2805. main ()
  2806. {
  2807. return dvbpsi_GenSDTSections ();
  2808.   ;
  2809.   return 0;
  2810. }
  2811. _ACEOF
  2812. if ac_fn_c_try_link "$LINENO"; then :
  2813.   ac_cv_lib_dvbpsi_dvbpsi_GenSDTSections=yes
  2814. else
  2815.   ac_cv_lib_dvbpsi_dvbpsi_GenSDTSections=no
  2816. fi
  2817. rm -f core conftest.err conftest.$ac_objext 
  2818.     conftest$ac_exeext conftest.$ac_ext
  2819. LIBS=$ac_check_lib_save_LIBS
  2820. fi
  2821. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dvbpsi_dvbpsi_GenSDTSections" >&5
  2822. $as_echo "$ac_cv_lib_dvbpsi_dvbpsi_GenSDTSections" >&6; }
  2823. if test "x$ac_cv_lib_dvbpsi_dvbpsi_GenSDTSections" = x""yes; then :
  2824. $as_echo "#define HAVE_DVBPSI_SDT 1" >>confdefs.h
  2825. fi
  2826. fi
  2827. # Check whether --enable-v4l was given.
  2828. if test "${enable_v4l+set}" = set; then :
  2829.   enableval=$enable_v4l;
  2830. fi
  2831. if test "${enable_v4l}" = "yes"
  2832. then
  2833. # Check whether --with-v4l was given.
  2834. if test "${with_v4l+set}" = set; then :
  2835.   withval=$with_v4l;
  2836. fi
  2837.   if test "${with_v4l}" != "no" -a -n "${with_v4l}"
  2838.   then
  2839.   for element in v4l; do
  2840.     eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${with_v4l}/include"'"'
  2841.     am_modules_with_cppflags="${am_modules_with_cppflags} ${element}"
  2842.   done
  2843.   fi
  2844.   CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_v4l}"
  2845.   for ac_header in linux/videodev.h
  2846. do :
  2847.   ac_fn_c_check_header_mongrel "$LINENO" "linux/videodev.h" "ac_cv_header_linux_videodev_h" "$ac_includes_default"
  2848. if test "x$ac_cv_header_linux_videodev_h" = x""yes; then :
  2849.   cat >>confdefs.h <<_ACEOF
  2850. #define HAVE_LINUX_VIDEODEV_H 1
  2851. _ACEOF
  2852.   PLUGINS="${PLUGINS} v4l"
  2853.   LTLIBv4l="libv4l_plugin.la"
  2854. fi
  2855. done
  2856.   CPPFLAGS="${CPPFLAGS_save}"
  2857. fi
  2858. # Check whether --enable-v4l2 was given.
  2859. if test "${enable_v4l2+set}" = set; then :
  2860.   enableval=$enable_v4l2;
  2861. fi
  2862. if test "${enable_v4l2}" != "no"
  2863. then
  2864. # Check whether --with-v4l2 was given.
  2865. if test "${with_v4l2+set}" = set; then :
  2866.   withval=$with_v4l2;
  2867. fi
  2868.   if test "${with_v4l2}" != "no" -a -n "${with_v4l2}"
  2869.   then
  2870.   for element in v4l2; do
  2871.     eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${with_v4l2}/include"'"'
  2872.     am_modules_with_cppflags="${am_modules_with_cppflags} ${element}"
  2873.   done
  2874.   fi
  2875.   CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_v4l2}"
  2876.   for ac_header in linux/videodev2.h
  2877. do :
  2878.   ac_fn_c_check_header_mongrel "$LINENO" "linux/videodev2.h" "ac_cv_header_linux_videodev2_h" "$ac_includes_default"
  2879. if test "x$ac_cv_header_linux_videodev2_h" = x""yes; then :
  2880.   cat >>confdefs.h <<_ACEOF
  2881. #define HAVE_LINUX_VIDEODEV2_H 1
  2882. _ACEOF
  2883.   PLUGINS="${PLUGINS} v4l2"
  2884.   LTLIBv4l2="libv4l2_plugin.la"
  2885. fi
  2886. done
  2887.   CPPFLAGS="${CPPFLAGS_save}"
  2888. fi
  2889. # Check whether --enable-libv4l2 was given.
  2890. if test "${enable_libv4l2+set}" = set; then :
  2891.   enableval=$enable_libv4l2;
  2892. fi
  2893. if test "${enable_libv4l2}" != "no" -a "${enable_v4l2}" != "no"
  2894. then
  2895. pkg_failed=no
  2896. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBV4L2" >&5
  2897. $as_echo_n "checking for LIBV4L2... " >&6; }
  2898. if test -n "$PKG_CONFIG"; then
  2899.     if test -n "$LIBV4L2_CFLAGS"; then
  2900.         pkg_cv_LIBV4L2_CFLAGS="$LIBV4L2_CFLAGS"
  2901.     else
  2902.         if test -n "$PKG_CONFIG" && 
  2903.     { { $as_echo "$as_me:${as_lineno-$LINENO}: $PKG_CONFIG --exists --print-errors "libv4l2""; } >&5
  2904.   ($PKG_CONFIG --exists --print-errors "libv4l2") 2>&5
  2905.   ac_status=$?
  2906.   $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
  2907.   test $ac_status = 0; }; then
  2908.   pkg_cv_LIBV4L2_CFLAGS=`$PKG_CONFIG --cflags "libv4l2" 2>/dev/null`
  2909. else
  2910.   pkg_failed=yes
  2911. fi
  2912.     fi
  2913. else
  2914. pkg_failed=untried
  2915. fi
  2916. if test -n "$PKG_CONFIG"; then
  2917.     if test -n "$LIBV4L2_LIBS"; then
  2918.         pkg_cv_LIBV4L2_LIBS="$LIBV4L2_LIBS"
  2919.     else
  2920.         if test -n "$PKG_CONFIG" && 
  2921.     { { $as_echo "$as_me:${as_lineno-$LINENO}: $PKG_CONFIG --exists --print-errors "libv4l2""; } >&5
  2922.   ($PKG_CONFIG --exists --print-errors "libv4l2") 2>&5
  2923.   ac_status=$?
  2924.   $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
  2925.   test $ac_status = 0; }; then
  2926.   pkg_cv_LIBV4L2_LIBS=`$PKG_CONFIG --libs "libv4l2" 2>/dev/null`
  2927. else
  2928.   pkg_failed=yes
  2929. fi
  2930.     fi
  2931. else
  2932. pkg_failed=untried
  2933. fi
  2934. if test $pkg_failed = yes; then
  2935. if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
  2936.         _pkg_short_errors_supported=yes
  2937. else
  2938.         _pkg_short_errors_supported=no
  2939. fi
  2940.         if test $_pkg_short_errors_supported = yes; then
  2941.         LIBV4L2_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libv4l2"`
  2942.         else
  2943.         LIBV4L2_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libv4l2"`
  2944.         fi
  2945. # Put the nasty error message in config.log where it belongs
  2946. echo "$LIBV4L2_PKG_ERRORS" >&5
  2947. { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  2948. $as_echo "no" >&6; }
  2949.                 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: LibV4L2 support disabled because libv4l2 development headers were not found" >&5
  2950. $as_echo "$as_me: WARNING: LibV4L2 support disabled because libv4l2 development headers were not found" >&2;}
  2951. elif test $pkg_failed = untried; then
  2952. { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: LibV4L2 support disabled because libv4l2 development headers were not found" >&5
  2953. $as_echo "$as_me: WARNING: LibV4L2 support disabled because libv4l2 development headers were not found" >&2;}
  2954. else
  2955. LIBV4L2_CFLAGS=$pkg_cv_LIBV4L2_CFLAGS
  2956. LIBV4L2_LIBS=$pkg_cv_LIBV4L2_LIBS
  2957.         { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
  2958. $as_echo "yes" >&6; }
  2959.   for element in v4l2; do
  2960.     eval "LDFLAGS_${element}="'"'"${LIBV4L2_LIBS} "'$'"{LDFLAGS_${element}} "'"'
  2961.     am_modules_with_ldflags="${am_modules_with_ldflags} ${element}"
  2962.   done
  2963.   for element in v4l2; do
  2964.     eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} ${LIBV4L2_CFLAGS}"'"'
  2965.     am_modules_with_cflags="${am_modules_with_cflags} ${element}"
  2966.   done
  2967. $as_echo "#define HAVE_LIBV4L2 1" >>confdefs.h
  2968. fi
  2969. fi
  2970. # Check whether --enable-pvr was given.
  2971. if test "${enable_pvr+set}" = set; then :
  2972.   enableval=$enable_pvr;
  2973. fi
  2974. if test "${enable_pvr}" = "yes"
  2975. then
  2976.   PLUGINS="${PLUGINS} pvr"
  2977.   LTLIBpvr="libpvr_plugin.la"
  2978. # Check whether --with-videodev2 was given.
  2979. if test "${with_videodev2+set}" = set; then :
  2980.   withval=$with_videodev2;
  2981. fi
  2982.   if test "${with_videodev2}" != "no" -a -n "${with_videodev2}"
  2983.   then
  2984. cat >>confdefs.h <<_ACEOF
  2985. #define VIDEODEV2_H_FILE "${with_videodev2}"
  2986. _ACEOF
  2987.   fi
  2988.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for new linux/videodev2.h" >&5
  2989. $as_echo_n "checking for new linux/videodev2.h... " >&6; }
  2990. if test "${ac_cv_new_linux_videodev2_h+set}" = set; then :
  2991.   $as_echo_n "(cached) " >&6
  2992. else
  2993.   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  2994. /* end confdefs.h.  */
  2995.           #include <sys/types.h>
  2996.           #   ifdef VIDEODEV2_H_FILE
  2997.   #   include VIDEODEV2_H_FILE
  2998.   #   else
  2999.   #   include <linux/videodev2.h>
  3000.   #   endif
  3001. int
  3002. main ()
  3003. {
  3004. struct v4l2_ext_controls ctrls; ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
  3005.   ;
  3006.   return 0;
  3007. }
  3008. _ACEOF
  3009. if ac_fn_c_try_compile "$LINENO"; then :
  3010.   ac_cv_new_linux_videodev2_h=yes
  3011. else
  3012.   ac_cv_new_linux_videodev2_h=no
  3013. fi
  3014. rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  3015. fi
  3016. { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_new_linux_videodev2_h" >&5
  3017. $as_echo "$ac_cv_new_linux_videodev2_h" >&6; }
  3018.   if test "${ac_cv_new_linux_videodev2_h}" != "no"; then
  3019. $as_echo "#define HAVE_NEW_LINUX_VIDEODEV2_H 1" >>confdefs.h
  3020.   fi
  3021. fi
  3022. # Check whether --enable-gnomevfs was given.
  3023. if test "${enable_gnomevfs+set}" = set; then :
  3024.   enableval=$enable_gnomevfs;
  3025. fi
  3026. if test "${enable_gnomevfs}" = "yes"
  3027. then
  3028. pkg_failed=no
  3029. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNOMEVFS" >&5
  3030. $as_echo_n "checking for GNOMEVFS... " >&6; }
  3031. if test -n "$PKG_CONFIG"; then
  3032.     if test -n "$GNOMEVFS_CFLAGS"; then
  3033.         pkg_cv_GNOMEVFS_CFLAGS="$GNOMEVFS_CFLAGS"
  3034.     else
  3035.         if test -n "$PKG_CONFIG" && 
  3036.     { { $as_echo "$as_me:${as_lineno-$LINENO}: $PKG_CONFIG --exists --print-errors "gnome-vfs-2.0""; } >&5
  3037.   ($PKG_CONFIG --exists --print-errors "gnome-vfs-2.0") 2>&5
  3038.   ac_status=$?
  3039.   $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
  3040.   test $ac_status = 0; }; then
  3041.   pkg_cv_GNOMEVFS_CFLAGS=`$PKG_CONFIG --cflags "gnome-vfs-2.0" 2>/dev/null`
  3042. else
  3043.   pkg_failed=yes
  3044. fi
  3045.     fi
  3046. else
  3047. pkg_failed=untried
  3048. fi
  3049. if test -n "$PKG_CONFIG"; then
  3050.     if test -n "$GNOMEVFS_LIBS"; then
  3051.         pkg_cv_GNOMEVFS_LIBS="$GNOMEVFS_LIBS"
  3052.     else
  3053.         if test -n "$PKG_CONFIG" && 
  3054.     { { $as_echo "$as_me:${as_lineno-$LINENO}: $PKG_CONFIG --exists --print-errors "gnome-vfs-2.0""; } >&5
  3055.   ($PKG_CONFIG --exists --print-errors "gnome-vfs-2.0") 2>&5
  3056.   ac_status=$?
  3057.   $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
  3058.   test $ac_status = 0; }; then
  3059.   pkg_cv_GNOMEVFS_LIBS=`$PKG_CONFIG --libs "gnome-vfs-2.0" 2>/dev/null`
  3060. else
  3061.   pkg_failed=yes
  3062. fi
  3063.     fi
  3064. else
  3065. pkg_failed=untried
  3066. fi
  3067. if test $pkg_failed = yes; then
  3068. if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
  3069.         _pkg_short_errors_supported=yes
  3070. else
  3071.         _pkg_short_errors_supported=no
  3072. fi
  3073.         if test $_pkg_short_errors_supported = yes; then
  3074.         GNOMEVFS_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gnome-vfs-2.0"`
  3075.         else
  3076.         GNOMEVFS_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gnome-vfs-2.0"`
  3077.         fi
  3078. # Put the nasty error message in config.log where it belongs
  3079. echo "$GNOMEVFS_PKG_ERRORS" >&5
  3080. { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  3081. $as_echo "no" >&6; }
  3082.                 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: GnomeVFS support disabled because GnomeVFS development headers not found" >&5
  3083. $as_echo "$as_me: WARNING: GnomeVFS support disabled because GnomeVFS development headers not found" >&2;}
  3084. elif test $pkg_failed = untried; then
  3085. { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: GnomeVFS support disabled because GnomeVFS development headers not found" >&5
  3086. $as_echo "$as_me: WARNING: GnomeVFS support disabled because GnomeVFS development headers not found" >&2;}
  3087. else
  3088. GNOMEVFS_CFLAGS=$pkg_cv_GNOMEVFS_CFLAGS
  3089. GNOMEVFS_LIBS=$pkg_cv_GNOMEVFS_LIBS
  3090.         { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
  3091. $as_echo "yes" >&6; }
  3092.   for element in access_gnomevfs; do
  3093.     eval "LIBS_${element}="'"'"$GNOMEVFS_LIBS "'$'"{LIBS_${element}} "'"'
  3094.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  3095.   done
  3096.   for element in access_gnomevfs; do
  3097.     eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} $GNOMEVFS_CPPFLAGS"'"'
  3098.     am_modules_with_cppflags="${am_modules_with_cppflags} ${element}"
  3099.   done
  3100.   for element in access_gnomevfs; do
  3101.     eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} $GNOMEVFS_CFLAGS"'"'
  3102.     am_modules_with_cflags="${am_modules_with_cflags} ${element}"
  3103.   done
  3104.   PLUGINS="${PLUGINS} access_gnomevfs"
  3105.   LTLIBaccess_gnomevfs="libaccess_gnomevfs_plugin.la"
  3106. fi
  3107. fi
  3108. # Check whether --enable-libcdio was given.
  3109. if test "${enable_libcdio+set}" = set; then :
  3110.   enableval=$enable_libcdio;
  3111. fi
  3112. # Check whether --enable-vcdinfo was given.
  3113. if test "${enable_vcdinfo+set}" = set; then :
  3114.   enableval=$enable_vcdinfo;
  3115. fi
  3116. have_libcdio=no
  3117. have_libvcdinfo=no
  3118. if test "${enable_libcdio}" != "no"
  3119. then
  3120. pkg_failed=no
  3121. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBCDIO" >&5
  3122. $as_echo_n "checking for LIBCDIO... " >&6; }
  3123. if test -n "$PKG_CONFIG"; then
  3124.     if test -n "$LIBCDIO_CFLAGS"; then
  3125.         pkg_cv_LIBCDIO_CFLAGS="$LIBCDIO_CFLAGS"
  3126.     else
  3127.         if test -n "$PKG_CONFIG" && 
  3128.     { { $as_echo "$as_me:${as_lineno-$LINENO}: $PKG_CONFIG --exists --print-errors "libcdio >= 0.78.2""; } >&5
  3129.   ($PKG_CONFIG --exists --print-errors "libcdio >= 0.78.2") 2>&5
  3130.   ac_status=$?
  3131.   $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
  3132.   test $ac_status = 0; }; then
  3133.   pkg_cv_LIBCDIO_CFLAGS=`$PKG_CONFIG --cflags "libcdio >= 0.78.2" 2>/dev/null`
  3134. else
  3135.   pkg_failed=yes
  3136. fi
  3137.     fi
  3138. else
  3139. pkg_failed=untried
  3140. fi
  3141. if test -n "$PKG_CONFIG"; then
  3142.     if test -n "$LIBCDIO_LIBS"; then
  3143.         pkg_cv_LIBCDIO_LIBS="$LIBCDIO_LIBS"
  3144.     else
  3145.         if test -n "$PKG_CONFIG" && 
  3146.     { { $as_echo "$as_me:${as_lineno-$LINENO}: $PKG_CONFIG --exists --print-errors "libcdio >= 0.78.2""; } >&5
  3147.   ($PKG_CONFIG --exists --print-errors "libcdio >= 0.78.2") 2>&5
  3148.   ac_status=$?
  3149.   $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
  3150.   test $ac_status = 0; }; then
  3151.   pkg_cv_LIBCDIO_LIBS=`$PKG_CONFIG --libs "libcdio >= 0.78.2" 2>/dev/null`
  3152. else
  3153.   pkg_failed=yes
  3154. fi
  3155.     fi
  3156. else
  3157. pkg_failed=untried
  3158. fi
  3159. if test $pkg_failed = yes; then
  3160. if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
  3161.         _pkg_short_errors_supported=yes
  3162. else
  3163.         _pkg_short_errors_supported=no
  3164. fi
  3165.         if test $_pkg_short_errors_supported = yes; then
  3166.         LIBCDIO_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libcdio >= 0.78.2"`
  3167.         else
  3168.         LIBCDIO_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libcdio >= 0.78.2"`
  3169.         fi
  3170. # Put the nasty error message in config.log where it belongs
  3171. echo "$LIBCDIO_PKG_ERRORS" >&5
  3172. { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  3173. $as_echo "no" >&6; }
  3174.                 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: CD Reading and information library not found" >&5
  3175. $as_echo "$as_me: WARNING: CD Reading and information library not found" >&2;}
  3176. elif test $pkg_failed = untried; then
  3177. { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: CD Reading and information library not found" >&5
  3178. $as_echo "$as_me: WARNING: CD Reading and information library not found" >&2;}
  3179. else
  3180. LIBCDIO_CFLAGS=$pkg_cv_LIBCDIO_CFLAGS
  3181. LIBCDIO_LIBS=$pkg_cv_LIBCDIO_LIBS
  3182.         { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
  3183. $as_echo "yes" >&6; }
  3184. have_libcdio=yes
  3185. $as_echo "#define HAVE_LIBCDIO 1" >>confdefs.h
  3186. fi
  3187.   if test "${enable_vcdinfo}" != "no"
  3188.   then
  3189. pkg_failed=no
  3190. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for VCDINFO" >&5
  3191. $as_echo_n "checking for VCDINFO... " >&6; }
  3192. if test -n "$PKG_CONFIG"; then
  3193.     if test -n "$VCDINFO_CFLAGS"; then
  3194.         pkg_cv_VCDINFO_CFLAGS="$VCDINFO_CFLAGS"
  3195.     else
  3196.         if test -n "$PKG_CONFIG" && 
  3197.     { { $as_echo "$as_me:${as_lineno-$LINENO}: $PKG_CONFIG --exists --print-errors "libvcdinfo >= 0.7.22""; } >&5
  3198.   ($PKG_CONFIG --exists --print-errors "libvcdinfo >= 0.7.22") 2>&5
  3199.   ac_status=$?
  3200.   $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
  3201.   test $ac_status = 0; }; then
  3202.   pkg_cv_VCDINFO_CFLAGS=`$PKG_CONFIG --cflags "libvcdinfo >= 0.7.22" 2>/dev/null`
  3203. else
  3204.   pkg_failed=yes
  3205. fi
  3206.     fi
  3207. else
  3208. pkg_failed=untried
  3209. fi
  3210. if test -n "$PKG_CONFIG"; then
  3211.     if test -n "$VCDINFO_LIBS"; then
  3212.         pkg_cv_VCDINFO_LIBS="$VCDINFO_LIBS"
  3213.     else
  3214.         if test -n "$PKG_CONFIG" && 
  3215.     { { $as_echo "$as_me:${as_lineno-$LINENO}: $PKG_CONFIG --exists --print-errors "libvcdinfo >= 0.7.22""; } >&5
  3216.   ($PKG_CONFIG --exists --print-errors "libvcdinfo >= 0.7.22") 2>&5
  3217.   ac_status=$?
  3218.   $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
  3219.   test $ac_status = 0; }; then
  3220.   pkg_cv_VCDINFO_LIBS=`$PKG_CONFIG --libs "libvcdinfo >= 0.7.22" 2>/dev/null`
  3221. else
  3222.   pkg_failed=yes
  3223. fi
  3224.     fi
  3225. else
  3226. pkg_failed=untried
  3227. fi
  3228. if test $pkg_failed = yes; then
  3229. if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
  3230.         _pkg_short_errors_supported=yes
  3231. else
  3232.         _pkg_short_errors_supported=no
  3233. fi
  3234.         if test $_pkg_short_errors_supported = yes; then
  3235.         VCDINFO_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libvcdinfo >= 0.7.22"`
  3236.         else
  3237.         VCDINFO_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libvcdinfo >= 0.7.22"`
  3238.         fi
  3239. # Put the nasty error message in config.log where it belongs
  3240. echo "$VCDINFO_PKG_ERRORS" >&5
  3241. { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  3242. $as_echo "no" >&6; }
  3243.                 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: VCD information library not found" >&5
  3244. $as_echo "$as_me: WARNING: VCD information library not found" >&2;}
  3245. elif test $pkg_failed = untried; then
  3246. { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: VCD information library not found" >&5
  3247. $as_echo "$as_me: WARNING: VCD information library not found" >&2;}
  3248. else
  3249. VCDINFO_CFLAGS=$pkg_cv_VCDINFO_CFLAGS
  3250. VCDINFO_LIBS=$pkg_cv_VCDINFO_LIBS
  3251.         { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
  3252. $as_echo "yes" >&6; }
  3253. have_libvcdinfo=yes
  3254. $as_echo "#define HAVE_VCDINFO 1" >>confdefs.h
  3255. fi
  3256.   fi
  3257. fi
  3258. # Check whether --enable-cddax was given.
  3259. if test "${enable_cddax+set}" = set; then :
  3260.   enableval=$enable_cddax;
  3261. fi
  3262. # Check whether --enable-libcddb was given.
  3263. if test "${enable_libcddb+set}" = set; then :
  3264.   enableval=$enable_libcddb;
  3265. fi
  3266. if test "${enable_cddax}" = "yes"
  3267. then
  3268.   if test "$have_libcdio" = "yes"
  3269.   then
  3270. $as_echo "#define HAVE_CDDAX 1" >>confdefs.h
  3271.   for element in cddax; do
  3272.     eval "LIBS_${element}="'"'"$LIBCDIO_LIBS "'$'"{LIBS_${element}} "'"'
  3273.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  3274.   done
  3275.   for element in cddax; do
  3276.     eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} $LIBCDIO_CFLAGS"'"'
  3277.     am_modules_with_cflags="${am_modules_with_cflags} ${element}"
  3278.   done
  3279.   PLUGINS="${PLUGINS} cddax"
  3280.   LTLIBcddax="libcddax_plugin.la"
  3281. pkg_failed=no
  3282. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBCDIO_PARANOIA" >&5
  3283. $as_echo_n "checking for LIBCDIO_PARANOIA... " >&6; }
  3284. if test -n "$PKG_CONFIG"; then
  3285.     if test -n "$LIBCDIO_PARANOIA_CFLAGS"; then
  3286.         pkg_cv_LIBCDIO_PARANOIA_CFLAGS="$LIBCDIO_PARANOIA_CFLAGS"
  3287.     else
  3288.         if test -n "$PKG_CONFIG" && 
  3289.     { { $as_echo "$as_me:${as_lineno-$LINENO}: $PKG_CONFIG --exists --print-errors "libcdio_paranoia >= 0.72""; } >&5
  3290.   ($PKG_CONFIG --exists --print-errors "libcdio_paranoia >= 0.72") 2>&5
  3291.   ac_status=$?
  3292.   $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
  3293.   test $ac_status = 0; }; then
  3294.   pkg_cv_LIBCDIO_PARANOIA_CFLAGS=`$PKG_CONFIG --cflags "libcdio_paranoia >= 0.72" 2>/dev/null`
  3295. else
  3296.   pkg_failed=yes
  3297. fi
  3298.     fi
  3299. else
  3300. pkg_failed=untried
  3301. fi
  3302. if test -n "$PKG_CONFIG"; then
  3303.     if test -n "$LIBCDIO_PARANOIA_LIBS"; then
  3304.         pkg_cv_LIBCDIO_PARANOIA_LIBS="$LIBCDIO_PARANOIA_LIBS"
  3305.     else
  3306.         if test -n "$PKG_CONFIG" && 
  3307.     { { $as_echo "$as_me:${as_lineno-$LINENO}: $PKG_CONFIG --exists --print-errors "libcdio_paranoia >= 0.72""; } >&5
  3308.   ($PKG_CONFIG --exists --print-errors "libcdio_paranoia >= 0.72") 2>&5
  3309.   ac_status=$?
  3310.   $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
  3311.   test $ac_status = 0; }; then
  3312.   pkg_cv_LIBCDIO_PARANOIA_LIBS=`$PKG_CONFIG --libs "libcdio_paranoia >= 0.72" 2>/dev/null`
  3313. else
  3314.   pkg_failed=yes
  3315. fi
  3316.     fi
  3317. else
  3318. pkg_failed=untried
  3319. fi
  3320. if test $pkg_failed = yes; then
  3321. if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
  3322.         _pkg_short_errors_supported=yes
  3323. else
  3324.         _pkg_short_errors_supported=no
  3325. fi
  3326.         if test $_pkg_short_errors_supported = yes; then
  3327.         LIBCDIO_PARANOIA_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libcdio_paranoia >= 0.72"`
  3328.         else
  3329.         LIBCDIO_PARANOIA_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libcdio_paranoia >= 0.72"`
  3330.         fi
  3331. # Put the nasty error message in config.log where it belongs
  3332. echo "$LIBCDIO_PARANOIA_PKG_ERRORS" >&5
  3333. { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  3334. $as_echo "no" >&6; }
  3335.                 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: CD Paranoia support disabled because no libcdio >= 0.72 found" >&5
  3336. $as_echo "$as_me: WARNING: CD Paranoia support disabled because no libcdio >= 0.72 found" >&2;}
  3337. elif test $pkg_failed = untried; then
  3338. { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: CD Paranoia support disabled because no libcdio >= 0.72 found" >&5
  3339. $as_echo "$as_me: WARNING: CD Paranoia support disabled because no libcdio >= 0.72 found" >&2;}
  3340. else
  3341. LIBCDIO_PARANOIA_CFLAGS=$pkg_cv_LIBCDIO_PARANOIA_CFLAGS
  3342. LIBCDIO_PARANOIA_LIBS=$pkg_cv_LIBCDIO_PARANOIA_LIBS
  3343.         { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
  3344. $as_echo "yes" >&6; }
  3345.   for element in cddax; do
  3346.     eval "LIBS_${element}="'"'"$LIBCDIO_CDDA_LIBS $LIBCDIO_CDDA_LIBS $LIBCDIO_PARANOIA_LIBS "'$'"{LIBS_${element}} "'"'
  3347.     am_modules_with_libs="${am_modules_with_libs} ${element}"
  3348.   done
  3349. fi
  3350.   else
  3351.     { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cddax plugin disabled because ok libcdio library not found or disabled" >&5
  3352. $as_echo "$as_me: WARNING: cddax plugin disabled because ok libcdio library not found or disabled" >&2;}
  3353.     HAVE_CDDAX=no
  3354.   fi
  3355.   if test "$enable_libcddb" != "no"; then
  3356. pkg_failed=no
  3357. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBCDDB" >&5
  3358. $as_echo_n "checking for LIBCDDB... " >&6; }
  3359. if test -n "$PKG_CONFIG"; then
  3360.     if test -n "$LIBCDDB_CFLAGS"; then
  3361.         pkg_cv_LIBCDDB_CFLAGS="$LIBCDDB_CFLAGS"
  3362.     else
  3363.         if test -n "$PKG_CONFIG" && 
  3364.     { { $as_echo "$as_me:${as_lineno-$LINENO}: $PKG_CONFIG --exists --print-errors "libcddb >= 0.9.5""; } >&5
  3365.   ($PKG_CONFIG --exists --print-errors "libcddb >= 0.9.5") 2>&5
  3366.   ac_status=$?
  3367.   $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
  3368.   test $ac_status = 0; }; then
  3369.   pkg_cv_LIBCDDB_CFLAGS=`$PKG_CONFIG --cflags "libcddb >= 0.9.5" 2>/dev/null`
  3370. else
  3371.   pkg_failed=yes
  3372. fi
  3373.     fi
  3374. else
  3375. pkg_failed=untried
  3376. fi
  3377. if test -n "$PKG_CONFIG"; then
  3378.     if test -n "$LIBCDDB_LIBS"; then
  3379.         pkg_cv_LIBCDDB_LIBS="$LIBCDDB_LIBS"
  3380.     else
  3381.         if test -n "$PKG_CONFIG" && 
  3382.     { { $as_echo "$as_me:${as_lineno-$LINENO}: $PKG_CONFIG --exists --print-errors "libcddb >= 0.9.5""; } >&5
  3383.   ($PKG_CONFIG --exists --print-errors "libcddb >= 0.9.5") 2>&5
  3384.   ac_status=$?
  3385.   $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
  3386.   test $ac_status = 0; }; then
  3387.   pkg_cv_LIBCDDB_LIBS=`$PKG_CONFIG --libs "libcddb >= 0.9.5" 2>/dev/null`
  3388. else
  3389.   pkg_failed=yes
  3390. fi
  3391.     fi
  3392. else
  3393. pkg_failed=untried
  3394. fi
  3395. if test $pkg_failed = yes; then
  3396. if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
  3397.         _pkg_short_errors_supported=yes
  3398. else
  3399.         _pkg_short_errors_supported=no
  3400. fi