configure
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:1206k
源码类别:

多媒体

开发平台:

MultiPlatform

  1.   (exit $ac_status); } &&
  2.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  3.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  4.   (eval $ac_try) 2>&5
  5.   ac_status=$?
  6.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  7.   (exit $ac_status); }; } &&
  8.  { ac_try='test -s conftest.$ac_objext'
  9.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  10.   (eval $ac_try) 2>&5
  11.   ac_status=$?
  12.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  13.   (exit $ac_status); }; }; then
  14.   ac_cv_struct_sockaddr_storage=yes
  15. else
  16.   echo "$as_me: failed program was:" >&5
  17. sed 's/^/| /' conftest.$ac_ext >&5
  18. ac_cv_struct_sockaddr_storage=no
  19. fi
  20. rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
  21. fi
  22. echo "$as_me:$LINENO: result: $ac_cv_struct_sockaddr_storage" >&5
  23. echo "${ECHO_T}$ac_cv_struct_sockaddr_storage" >&6
  24. if test $ac_cv_struct_sockaddr_storage = no; then
  25.   cat >>confdefs.h <<_ACEOF
  26. #define sockaddr_storage sockaddr
  27. _ACEOF
  28.   cat >>confdefs.h <<_ACEOF
  29. #define ss_family sa_family
  30. _ACEOF
  31. fi
  32. ac_func_getnameinfo_save_LIBS=$LIBS
  33. if test "${SYS}" = "mingw32"; then
  34.   LIBS="-lws2_32 $LIBS"
  35. fi
  36.   echo "$as_me:$LINENO: checking for getnameinfo" >&5
  37. echo $ECHO_N "checking for getnameinfo... $ECHO_C" >&6
  38. if test "${ac_cv_func_getnameinfo+set}" = set; then
  39.   echo $ECHO_N "(cached) $ECHO_C" >&6
  40. else
  41.   cat >conftest.$ac_ext <<_ACEOF
  42. /* confdefs.h.  */
  43. _ACEOF
  44. cat confdefs.h >>conftest.$ac_ext
  45. cat >>conftest.$ac_ext <<_ACEOF
  46. /* end confdefs.h.  */
  47. #include <sys/types.h>
  48. #if defined( UNDER_CE )
  49. # include <winsock.h>
  50. #elif defined( WIN32 )
  51. # include <winsock2.h>
  52. #else
  53. # include <sys/socket.h>
  54. # include <netdb.h>
  55. #endif
  56. int
  57. main ()
  58. {
  59. getnameinfo(0,0,0,0,0,0,0);
  60.   ;
  61.   return 0;
  62. }
  63. _ACEOF
  64. rm -f conftest.$ac_objext conftest$ac_exeext
  65. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  66.   (eval $ac_link) 2>conftest.er1
  67.   ac_status=$?
  68.   grep -v '^ *+' conftest.er1 >conftest.err
  69.   rm -f conftest.er1
  70.   cat conftest.err >&5
  71.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  72.   (exit $ac_status); } &&
  73.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  74.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  75.   (eval $ac_try) 2>&5
  76.   ac_status=$?
  77.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  78.   (exit $ac_status); }; } &&
  79.  { ac_try='test -s conftest$ac_exeext'
  80.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  81.   (eval $ac_try) 2>&5
  82.   ac_status=$?
  83.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  84.   (exit $ac_status); }; }; then
  85.   ac_cv_func_getnameinfo=yes
  86. else
  87.   echo "$as_me: failed program was:" >&5
  88. sed 's/^/| /' conftest.$ac_ext >&5
  89. ac_cv_func_getnameinfo=no
  90. fi
  91. rm -f conftest.err conftest.$ac_objext 
  92.       conftest$ac_exeext conftest.$ac_ext
  93. fi
  94. echo "$as_me:$LINENO: result: $ac_cv_func_getnameinfo" >&5
  95. echo "${ECHO_T}$ac_cv_func_getnameinfo" >&6
  96. if test $ac_cv_func_getnameinfo = yes; then
  97.   cat >>confdefs.h <<_ACEOF
  98. #define HAVE_GETNAMEINFO 1
  99. _ACEOF
  100. fi
  101. LIBS=$ac_func_getnameinfo_save_LIBS
  102. echo "$as_me:$LINENO: checking for va_copy" >&5
  103. echo $ECHO_N "checking for va_copy... $ECHO_C" >&6
  104. if test "${ac_cv_c_va_copy+set}" = set; then
  105.   echo $ECHO_N "(cached) $ECHO_C" >&6
  106. else
  107.   cat >conftest.$ac_ext <<_ACEOF
  108. /* confdefs.h.  */
  109. _ACEOF
  110. cat confdefs.h >>conftest.$ac_ext
  111. cat >>conftest.$ac_ext <<_ACEOF
  112. /* end confdefs.h.  */
  113. #include <stdarg.h>
  114. int
  115. main ()
  116. {
  117. va_list ap1, ap2; va_copy(ap1,ap2);
  118.   ;
  119.   return 0;
  120. }
  121. _ACEOF
  122. rm -f conftest.$ac_objext conftest$ac_exeext
  123. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  124.   (eval $ac_link) 2>conftest.er1
  125.   ac_status=$?
  126.   grep -v '^ *+' conftest.er1 >conftest.err
  127.   rm -f conftest.er1
  128.   cat conftest.err >&5
  129.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  130.   (exit $ac_status); } &&
  131.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  132.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  133.   (eval $ac_try) 2>&5
  134.   ac_status=$?
  135.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  136.   (exit $ac_status); }; } &&
  137.  { ac_try='test -s conftest$ac_exeext'
  138.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  139.   (eval $ac_try) 2>&5
  140.   ac_status=$?
  141.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  142.   (exit $ac_status); }; }; then
  143.   ac_cv_c_va_copy="yes"
  144. else
  145.   echo "$as_me: failed program was:" >&5
  146. sed 's/^/| /' conftest.$ac_ext >&5
  147. ac_cv_c_va_copy="no"
  148. fi
  149. rm -f conftest.err conftest.$ac_objext 
  150.       conftest$ac_exeext conftest.$ac_ext
  151. fi
  152. echo "$as_me:$LINENO: result: $ac_cv_c_va_copy" >&5
  153. echo "${ECHO_T}$ac_cv_c_va_copy" >&6
  154. if test "${ac_cv_c_va_copy}" = "yes"; then
  155. cat >>confdefs.h <<_ACEOF
  156. #define HAVE_VA_COPY 1
  157. _ACEOF
  158. fi
  159. echo "$as_me:$LINENO: checking for __va_copy" >&5
  160. echo $ECHO_N "checking for __va_copy... $ECHO_C" >&6
  161. if test "${ac_cv_c___va_copy+set}" = set; then
  162.   echo $ECHO_N "(cached) $ECHO_C" >&6
  163. else
  164.   cat >conftest.$ac_ext <<_ACEOF
  165. /* confdefs.h.  */
  166. _ACEOF
  167. cat confdefs.h >>conftest.$ac_ext
  168. cat >>conftest.$ac_ext <<_ACEOF
  169. /* end confdefs.h.  */
  170. #include <stdarg.h>
  171. int
  172. main ()
  173. {
  174. va_list ap1, ap2; __va_copy(ap1,ap2);
  175.   ;
  176.   return 0;
  177. }
  178. _ACEOF
  179. rm -f conftest.$ac_objext conftest$ac_exeext
  180. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  181.   (eval $ac_link) 2>conftest.er1
  182.   ac_status=$?
  183.   grep -v '^ *+' conftest.er1 >conftest.err
  184.   rm -f conftest.er1
  185.   cat conftest.err >&5
  186.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  187.   (exit $ac_status); } &&
  188.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  189.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  190.   (eval $ac_try) 2>&5
  191.   ac_status=$?
  192.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  193.   (exit $ac_status); }; } &&
  194.  { ac_try='test -s conftest$ac_exeext'
  195.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  196.   (eval $ac_try) 2>&5
  197.   ac_status=$?
  198.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  199.   (exit $ac_status); }; }; then
  200.   ac_cv_c___va_copy="yes"
  201. else
  202.   echo "$as_me: failed program was:" >&5
  203. sed 's/^/| /' conftest.$ac_ext >&5
  204. ac_cv_c___va_copy="no"
  205. fi
  206. rm -f conftest.err conftest.$ac_objext 
  207.       conftest$ac_exeext conftest.$ac_ext
  208. fi
  209. echo "$as_me:$LINENO: result: $ac_cv_c___va_copy" >&5
  210. echo "${ECHO_T}$ac_cv_c___va_copy" >&6
  211. if test "${ac_cv_c___va_copy}" = "yes"; then
  212. cat >>confdefs.h <<_ACEOF
  213. #define HAVE___VA_COPY 1
  214. _ACEOF
  215. fi
  216. for ac_func in inet_aton
  217. do
  218. as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
  219. echo "$as_me:$LINENO: checking for $ac_func" >&5
  220. echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
  221. if eval "test "${$as_ac_var+set}" = set"; then
  222.   echo $ECHO_N "(cached) $ECHO_C" >&6
  223. else
  224.   cat >conftest.$ac_ext <<_ACEOF
  225. /* confdefs.h.  */
  226. _ACEOF
  227. cat confdefs.h >>conftest.$ac_ext
  228. cat >>conftest.$ac_ext <<_ACEOF
  229. /* end confdefs.h.  */
  230. /* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
  231.    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
  232. #define $ac_func innocuous_$ac_func
  233. /* System header to define __stub macros and hopefully few prototypes,
  234.     which can conflict with char $ac_func (); below.
  235.     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  236.     <limits.h> exists even on freestanding compilers.  */
  237. #ifdef __STDC__
  238. # include <limits.h>
  239. #else
  240. # include <assert.h>
  241. #endif
  242. #undef $ac_func
  243. /* Override any gcc2 internal prototype to avoid an error.  */
  244. #ifdef __cplusplus
  245. extern "C"
  246. {
  247. #endif
  248. /* We use char because int might match the return type of a gcc2
  249.    builtin and then its argument prototype would still apply.  */
  250. char $ac_func ();
  251. /* The GNU C library defines this for functions which it implements
  252.     to always fail with ENOSYS.  Some functions are actually named
  253.     something starting with __ and the normal name is an alias.  */
  254. #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
  255. choke me
  256. #else
  257. char (*f) () = $ac_func;
  258. #endif
  259. #ifdef __cplusplus
  260. }
  261. #endif
  262. int
  263. main ()
  264. {
  265. return f != $ac_func;
  266.   ;
  267.   return 0;
  268. }
  269. _ACEOF
  270. rm -f conftest.$ac_objext conftest$ac_exeext
  271. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  272.   (eval $ac_link) 2>conftest.er1
  273.   ac_status=$?
  274.   grep -v '^ *+' conftest.er1 >conftest.err
  275.   rm -f conftest.er1
  276.   cat conftest.err >&5
  277.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  278.   (exit $ac_status); } &&
  279.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  280.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  281.   (eval $ac_try) 2>&5
  282.   ac_status=$?
  283.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  284.   (exit $ac_status); }; } &&
  285.  { ac_try='test -s conftest$ac_exeext'
  286.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  287.   (eval $ac_try) 2>&5
  288.   ac_status=$?
  289.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  290.   (exit $ac_status); }; }; then
  291.   eval "$as_ac_var=yes"
  292. else
  293.   echo "$as_me: failed program was:" >&5
  294. sed 's/^/| /' conftest.$ac_ext >&5
  295. eval "$as_ac_var=no"
  296. fi
  297. rm -f conftest.err conftest.$ac_objext 
  298.       conftest$ac_exeext conftest.$ac_ext
  299. fi
  300. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
  301. echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
  302. if test `eval echo '${'$as_ac_var'}'` = yes; then
  303.   cat >>confdefs.h <<_ACEOF
  304. #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
  305. _ACEOF
  306. else
  307.   echo "$as_me:$LINENO: checking for inet_aton in -lresolv" >&5
  308. echo $ECHO_N "checking for inet_aton in -lresolv... $ECHO_C" >&6
  309. if test "${ac_cv_lib_resolv_inet_aton+set}" = set; then
  310.   echo $ECHO_N "(cached) $ECHO_C" >&6
  311. else
  312.   ac_check_lib_save_LIBS=$LIBS
  313. LIBS="-lresolv  $LIBS"
  314. cat >conftest.$ac_ext <<_ACEOF
  315. /* confdefs.h.  */
  316. _ACEOF
  317. cat confdefs.h >>conftest.$ac_ext
  318. cat >>conftest.$ac_ext <<_ACEOF
  319. /* end confdefs.h.  */
  320. /* Override any gcc2 internal prototype to avoid an error.  */
  321. #ifdef __cplusplus
  322. extern "C"
  323. #endif
  324. /* We use char because int might match the return type of a gcc2
  325.    builtin and then its argument prototype would still apply.  */
  326. char inet_aton ();
  327. int
  328. main ()
  329. {
  330. inet_aton ();
  331.   ;
  332.   return 0;
  333. }
  334. _ACEOF
  335. rm -f conftest.$ac_objext conftest$ac_exeext
  336. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  337.   (eval $ac_link) 2>conftest.er1
  338.   ac_status=$?
  339.   grep -v '^ *+' conftest.er1 >conftest.err
  340.   rm -f conftest.er1
  341.   cat conftest.err >&5
  342.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  343.   (exit $ac_status); } &&
  344.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  345.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  346.   (eval $ac_try) 2>&5
  347.   ac_status=$?
  348.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  349.   (exit $ac_status); }; } &&
  350.  { ac_try='test -s conftest$ac_exeext'
  351.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  352.   (eval $ac_try) 2>&5
  353.   ac_status=$?
  354.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  355.   (exit $ac_status); }; }; then
  356.   ac_cv_lib_resolv_inet_aton=yes
  357. else
  358.   echo "$as_me: failed program was:" >&5
  359. sed 's/^/| /' conftest.$ac_ext >&5
  360. ac_cv_lib_resolv_inet_aton=no
  361. fi
  362. rm -f conftest.err conftest.$ac_objext 
  363.       conftest$ac_exeext conftest.$ac_ext
  364. LIBS=$ac_check_lib_save_LIBS
  365. fi
  366. echo "$as_me:$LINENO: result: $ac_cv_lib_resolv_inet_aton" >&5
  367. echo "${ECHO_T}$ac_cv_lib_resolv_inet_aton" >&6
  368. if test $ac_cv_lib_resolv_inet_aton = yes; then
  369.   for element in ipv4 vlc; do
  370.     eval "LDFLAGS_${element}="'"'"-lresolv "'$'"{LDFLAGS_${element}} "'"'
  371.     am_modules_with_ldflags="${am_modules_with_ldflags} ${element}"
  372.   done
  373. fi
  374. fi
  375. done
  376. if test "${SYS}" = "mingw32"; then
  377. need_getopt=:
  378. else
  379. need_getopt=false
  380. for ac_func in getopt_long
  381. do
  382. as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
  383. echo "$as_me:$LINENO: checking for $ac_func" >&5
  384. echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
  385. if eval "test "${$as_ac_var+set}" = set"; then
  386.   echo $ECHO_N "(cached) $ECHO_C" >&6
  387. else
  388.   cat >conftest.$ac_ext <<_ACEOF
  389. /* confdefs.h.  */
  390. _ACEOF
  391. cat confdefs.h >>conftest.$ac_ext
  392. cat >>conftest.$ac_ext <<_ACEOF
  393. /* end confdefs.h.  */
  394. /* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
  395.    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
  396. #define $ac_func innocuous_$ac_func
  397. /* System header to define __stub macros and hopefully few prototypes,
  398.     which can conflict with char $ac_func (); below.
  399.     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  400.     <limits.h> exists even on freestanding compilers.  */
  401. #ifdef __STDC__
  402. # include <limits.h>
  403. #else
  404. # include <assert.h>
  405. #endif
  406. #undef $ac_func
  407. /* Override any gcc2 internal prototype to avoid an error.  */
  408. #ifdef __cplusplus
  409. extern "C"
  410. {
  411. #endif
  412. /* We use char because int might match the return type of a gcc2
  413.    builtin and then its argument prototype would still apply.  */
  414. char $ac_func ();
  415. /* The GNU C library defines this for functions which it implements
  416.     to always fail with ENOSYS.  Some functions are actually named
  417.     something starting with __ and the normal name is an alias.  */
  418. #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
  419. choke me
  420. #else
  421. char (*f) () = $ac_func;
  422. #endif
  423. #ifdef __cplusplus
  424. }
  425. #endif
  426. int
  427. main ()
  428. {
  429. return f != $ac_func;
  430.   ;
  431.   return 0;
  432. }
  433. _ACEOF
  434. rm -f conftest.$ac_objext conftest$ac_exeext
  435. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  436.   (eval $ac_link) 2>conftest.er1
  437.   ac_status=$?
  438.   grep -v '^ *+' conftest.er1 >conftest.err
  439.   rm -f conftest.er1
  440.   cat conftest.err >&5
  441.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  442.   (exit $ac_status); } &&
  443.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  444.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  445.   (eval $ac_try) 2>&5
  446.   ac_status=$?
  447.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  448.   (exit $ac_status); }; } &&
  449.  { ac_try='test -s conftest$ac_exeext'
  450.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  451.   (eval $ac_try) 2>&5
  452.   ac_status=$?
  453.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  454.   (exit $ac_status); }; }; then
  455.   eval "$as_ac_var=yes"
  456. else
  457.   echo "$as_me: failed program was:" >&5
  458. sed 's/^/| /' conftest.$ac_ext >&5
  459. eval "$as_ac_var=no"
  460. fi
  461. rm -f conftest.err conftest.$ac_objext 
  462.       conftest$ac_exeext conftest.$ac_ext
  463. fi
  464. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
  465. echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
  466. if test `eval echo '${'$as_ac_var'}'` = yes; then
  467.   cat >>confdefs.h <<_ACEOF
  468. #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
  469. _ACEOF
  470. cat >>confdefs.h <<_ACEOF
  471. #define HAVE_GETOPT_LONG 1
  472. _ACEOF
  473. else
  474.    # FreeBSD has a gnugetopt library for this:
  475.   echo "$as_me:$LINENO: checking for getopt_long in -lgnugetopt" >&5
  476. echo $ECHO_N "checking for getopt_long in -lgnugetopt... $ECHO_C" >&6
  477. if test "${ac_cv_lib_gnugetopt_getopt_long+set}" = set; then
  478.   echo $ECHO_N "(cached) $ECHO_C" >&6
  479. else
  480.   ac_check_lib_save_LIBS=$LIBS
  481. LIBS="-lgnugetopt  $LIBS"
  482. cat >conftest.$ac_ext <<_ACEOF
  483. /* confdefs.h.  */
  484. _ACEOF
  485. cat confdefs.h >>conftest.$ac_ext
  486. cat >>conftest.$ac_ext <<_ACEOF
  487. /* end confdefs.h.  */
  488. /* Override any gcc2 internal prototype to avoid an error.  */
  489. #ifdef __cplusplus
  490. extern "C"
  491. #endif
  492. /* We use char because int might match the return type of a gcc2
  493.    builtin and then its argument prototype would still apply.  */
  494. char getopt_long ();
  495. int
  496. main ()
  497. {
  498. getopt_long ();
  499.   ;
  500.   return 0;
  501. }
  502. _ACEOF
  503. rm -f conftest.$ac_objext conftest$ac_exeext
  504. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  505.   (eval $ac_link) 2>conftest.er1
  506.   ac_status=$?
  507.   grep -v '^ *+' conftest.er1 >conftest.err
  508.   rm -f conftest.er1
  509.   cat conftest.err >&5
  510.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  511.   (exit $ac_status); } &&
  512.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  513.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  514.   (eval $ac_try) 2>&5
  515.   ac_status=$?
  516.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  517.   (exit $ac_status); }; } &&
  518.  { ac_try='test -s conftest$ac_exeext'
  519.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  520.   (eval $ac_try) 2>&5
  521.   ac_status=$?
  522.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  523.   (exit $ac_status); }; }; then
  524.   ac_cv_lib_gnugetopt_getopt_long=yes
  525. else
  526.   echo "$as_me: failed program was:" >&5
  527. sed 's/^/| /' conftest.$ac_ext >&5
  528. ac_cv_lib_gnugetopt_getopt_long=no
  529. fi
  530. rm -f conftest.err conftest.$ac_objext 
  531.       conftest$ac_exeext conftest.$ac_ext
  532. LIBS=$ac_check_lib_save_LIBS
  533. fi
  534. echo "$as_me:$LINENO: result: $ac_cv_lib_gnugetopt_getopt_long" >&5
  535. echo "${ECHO_T}$ac_cv_lib_gnugetopt_getopt_long" >&6
  536. if test $ac_cv_lib_gnugetopt_getopt_long = yes; then
  537. cat >>confdefs.h <<_ACEOF
  538. #define HAVE_GETOPT_LONG 1
  539. _ACEOF
  540.   for element in vlc; do
  541.     eval "LDFLAGS_${element}="'"'"-lgnugetopt "'$'"{LDFLAGS_${element}} "'"'
  542.     am_modules_with_ldflags="${am_modules_with_ldflags} ${element}"
  543.   done
  544. else
  545.   need_getopt=:
  546. fi
  547. fi
  548. done
  549. fi
  550. if ${need_getopt}; then
  551.   BUILD_GETOPT_TRUE=
  552.   BUILD_GETOPT_FALSE='#'
  553. else
  554.   BUILD_GETOPT_TRUE='#'
  555.   BUILD_GETOPT_FALSE=
  556. fi
  557. if test "${SYS}" != "mingw32"; then
  558. echo "$as_me:$LINENO: checking return type of signal handlers" >&5
  559. echo $ECHO_N "checking return type of signal handlers... $ECHO_C" >&6
  560. if test "${ac_cv_type_signal+set}" = set; then
  561.   echo $ECHO_N "(cached) $ECHO_C" >&6
  562. else
  563.   cat >conftest.$ac_ext <<_ACEOF
  564. /* confdefs.h.  */
  565. _ACEOF
  566. cat confdefs.h >>conftest.$ac_ext
  567. cat >>conftest.$ac_ext <<_ACEOF
  568. /* end confdefs.h.  */
  569. #include <sys/types.h>
  570. #include <signal.h>
  571. #ifdef signal
  572. # undef signal
  573. #endif
  574. #ifdef __cplusplus
  575. extern "C" void (*signal (int, void (*)(int)))(int);
  576. #else
  577. void (*signal ()) ();
  578. #endif
  579. int
  580. main ()
  581. {
  582. int i;
  583.   ;
  584.   return 0;
  585. }
  586. _ACEOF
  587. rm -f conftest.$ac_objext
  588. if { (eval echo "$as_me:$LINENO: "$ac_compile"") >&5
  589.   (eval $ac_compile) 2>conftest.er1
  590.   ac_status=$?
  591.   grep -v '^ *+' conftest.er1 >conftest.err
  592.   rm -f conftest.er1
  593.   cat conftest.err >&5
  594.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  595.   (exit $ac_status); } &&
  596.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  597.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  598.   (eval $ac_try) 2>&5
  599.   ac_status=$?
  600.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  601.   (exit $ac_status); }; } &&
  602.  { ac_try='test -s conftest.$ac_objext'
  603.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  604.   (eval $ac_try) 2>&5
  605.   ac_status=$?
  606.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  607.   (exit $ac_status); }; }; then
  608.   ac_cv_type_signal=void
  609. else
  610.   echo "$as_me: failed program was:" >&5
  611. sed 's/^/| /' conftest.$ac_ext >&5
  612. ac_cv_type_signal=int
  613. fi
  614. rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
  615. fi
  616. echo "$as_me:$LINENO: result: $ac_cv_type_signal" >&5
  617. echo "${ECHO_T}$ac_cv_type_signal" >&6
  618. cat >>confdefs.h <<_ACEOF
  619. #define RETSIGTYPE $ac_cv_type_signal
  620. _ACEOF
  621. echo "$as_me:$LINENO: checking for cos in -lm" >&5
  622. echo $ECHO_N "checking for cos in -lm... $ECHO_C" >&6
  623. if test "${ac_cv_lib_m_cos+set}" = set; then
  624.   echo $ECHO_N "(cached) $ECHO_C" >&6
  625. else
  626.   ac_check_lib_save_LIBS=$LIBS
  627. LIBS="-lm  $LIBS"
  628. cat >conftest.$ac_ext <<_ACEOF
  629. /* confdefs.h.  */
  630. _ACEOF
  631. cat confdefs.h >>conftest.$ac_ext
  632. cat >>conftest.$ac_ext <<_ACEOF
  633. /* end confdefs.h.  */
  634. /* Override any gcc2 internal prototype to avoid an error.  */
  635. #ifdef __cplusplus
  636. extern "C"
  637. #endif
  638. /* We use char because int might match the return type of a gcc2
  639.    builtin and then its argument prototype would still apply.  */
  640. char cos ();
  641. int
  642. main ()
  643. {
  644. cos ();
  645.   ;
  646.   return 0;
  647. }
  648. _ACEOF
  649. rm -f conftest.$ac_objext conftest$ac_exeext
  650. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  651.   (eval $ac_link) 2>conftest.er1
  652.   ac_status=$?
  653.   grep -v '^ *+' conftest.er1 >conftest.err
  654.   rm -f conftest.er1
  655.   cat conftest.err >&5
  656.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  657.   (exit $ac_status); } &&
  658.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  659.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  660.   (eval $ac_try) 2>&5
  661.   ac_status=$?
  662.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  663.   (exit $ac_status); }; } &&
  664.  { ac_try='test -s conftest$ac_exeext'
  665.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  666.   (eval $ac_try) 2>&5
  667.   ac_status=$?
  668.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  669.   (exit $ac_status); }; }; then
  670.   ac_cv_lib_m_cos=yes
  671. else
  672.   echo "$as_me: failed program was:" >&5
  673. sed 's/^/| /' conftest.$ac_ext >&5
  674. ac_cv_lib_m_cos=no
  675. fi
  676. rm -f conftest.err conftest.$ac_objext 
  677.       conftest$ac_exeext conftest.$ac_ext
  678. LIBS=$ac_check_lib_save_LIBS
  679. fi
  680. echo "$as_me:$LINENO: result: $ac_cv_lib_m_cos" >&5
  681. echo "${ECHO_T}$ac_cv_lib_m_cos" >&6
  682. if test $ac_cv_lib_m_cos = yes; then
  683.   for element in adjust distort a52tofloat32 dtstofloat32 x264; do
  684.     eval "LDFLAGS_${element}="'"'"-lm "'$'"{LDFLAGS_${element}} "'"'
  685.     am_modules_with_ldflags="${am_modules_with_ldflags} ${element}"
  686.   done
  687. fi
  688. echo "$as_me:$LINENO: checking for pow in -lm" >&5
  689. echo $ECHO_N "checking for pow in -lm... $ECHO_C" >&6
  690. if test "${ac_cv_lib_m_pow+set}" = set; then
  691.   echo $ECHO_N "(cached) $ECHO_C" >&6
  692. else
  693.   ac_check_lib_save_LIBS=$LIBS
  694. LIBS="-lm  $LIBS"
  695. cat >conftest.$ac_ext <<_ACEOF
  696. /* confdefs.h.  */
  697. _ACEOF
  698. cat confdefs.h >>conftest.$ac_ext
  699. cat >>conftest.$ac_ext <<_ACEOF
  700. /* end confdefs.h.  */
  701. /* Override any gcc2 internal prototype to avoid an error.  */
  702. #ifdef __cplusplus
  703. extern "C"
  704. #endif
  705. /* We use char because int might match the return type of a gcc2
  706.    builtin and then its argument prototype would still apply.  */
  707. char pow ();
  708. int
  709. main ()
  710. {
  711. pow ();
  712.   ;
  713.   return 0;
  714. }
  715. _ACEOF
  716. rm -f conftest.$ac_objext conftest$ac_exeext
  717. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  718.   (eval $ac_link) 2>conftest.er1
  719.   ac_status=$?
  720.   grep -v '^ *+' conftest.er1 >conftest.err
  721.   rm -f conftest.er1
  722.   cat conftest.err >&5
  723.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  724.   (exit $ac_status); } &&
  725.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  726.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  727.   (eval $ac_try) 2>&5
  728.   ac_status=$?
  729.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  730.   (exit $ac_status); }; } &&
  731.  { ac_try='test -s conftest$ac_exeext'
  732.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  733.   (eval $ac_try) 2>&5
  734.   ac_status=$?
  735.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  736.   (exit $ac_status); }; }; then
  737.   ac_cv_lib_m_pow=yes
  738. else
  739.   echo "$as_me: failed program was:" >&5
  740. sed 's/^/| /' conftest.$ac_ext >&5
  741. ac_cv_lib_m_pow=no
  742. fi
  743. rm -f conftest.err conftest.$ac_objext 
  744.       conftest$ac_exeext conftest.$ac_ext
  745. LIBS=$ac_check_lib_save_LIBS
  746. fi
  747. echo "$as_me:$LINENO: result: $ac_cv_lib_m_pow" >&5
  748. echo "${ECHO_T}$ac_cv_lib_m_pow" >&6
  749. if test $ac_cv_lib_m_pow = yes; then
  750.   for element in ffmpeg ffmpegaltivec stream_out_transrate i420_rgb faad toolame equalizer vlc; do
  751.     eval "LDFLAGS_${element}="'"'"-lm "'$'"{LDFLAGS_${element}} "'"'
  752.     am_modules_with_ldflags="${am_modules_with_ldflags} ${element}"
  753.   done
  754. fi
  755. echo "$as_me:$LINENO: checking for sqrt in -lm" >&5
  756. echo $ECHO_N "checking for sqrt in -lm... $ECHO_C" >&6
  757. if test "${ac_cv_lib_m_sqrt+set}" = set; then
  758.   echo $ECHO_N "(cached) $ECHO_C" >&6
  759. else
  760.   ac_check_lib_save_LIBS=$LIBS
  761. LIBS="-lm  $LIBS"
  762. cat >conftest.$ac_ext <<_ACEOF
  763. /* confdefs.h.  */
  764. _ACEOF
  765. cat confdefs.h >>conftest.$ac_ext
  766. cat >>conftest.$ac_ext <<_ACEOF
  767. /* end confdefs.h.  */
  768. /* Override any gcc2 internal prototype to avoid an error.  */
  769. #ifdef __cplusplus
  770. extern "C"
  771. #endif
  772. /* We use char because int might match the return type of a gcc2
  773.    builtin and then its argument prototype would still apply.  */
  774. char sqrt ();
  775. int
  776. main ()
  777. {
  778. sqrt ();
  779.   ;
  780.   return 0;
  781. }
  782. _ACEOF
  783. rm -f conftest.$ac_objext conftest$ac_exeext
  784. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  785.   (eval $ac_link) 2>conftest.er1
  786.   ac_status=$?
  787.   grep -v '^ *+' conftest.er1 >conftest.err
  788.   rm -f conftest.er1
  789.   cat conftest.err >&5
  790.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  791.   (exit $ac_status); } &&
  792.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  793.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  794.   (eval $ac_try) 2>&5
  795.   ac_status=$?
  796.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  797.   (exit $ac_status); }; } &&
  798.  { ac_try='test -s conftest$ac_exeext'
  799.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  800.   (eval $ac_try) 2>&5
  801.   ac_status=$?
  802.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  803.   (exit $ac_status); }; }; then
  804.   ac_cv_lib_m_sqrt=yes
  805. else
  806.   echo "$as_me: failed program was:" >&5
  807. sed 's/^/| /' conftest.$ac_ext >&5
  808. ac_cv_lib_m_sqrt=no
  809. fi
  810. rm -f conftest.err conftest.$ac_objext 
  811.       conftest$ac_exeext conftest.$ac_ext
  812. LIBS=$ac_check_lib_save_LIBS
  813. fi
  814. echo "$as_me:$LINENO: result: $ac_cv_lib_m_sqrt" >&5
  815. echo "${ECHO_T}$ac_cv_lib_m_sqrt" >&6
  816. if test $ac_cv_lib_m_sqrt = yes; then
  817.   for element in headphone_channel_mixer normvol; do
  818.     eval "LDFLAGS_${element}="'"'"-lm "'$'"{LDFLAGS_${element}} "'"'
  819.     am_modules_with_ldflags="${am_modules_with_ldflags} ${element}"
  820.   done
  821. fi
  822. fi # end "${SYS}" != "mingw32"
  823. ac_cv_have_plugins=no
  824. # OS X style
  825. for ac_header in mach-o/dyld.h
  826. do
  827. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  828. if eval "test "${$as_ac_Header+set}" = set"; then
  829.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  830. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  831. if eval "test "${$as_ac_Header+set}" = set"; then
  832.   echo $ECHO_N "(cached) $ECHO_C" >&6
  833. fi
  834. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  835. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  836. else
  837.   # Is the header compilable?
  838. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  839. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  840. cat >conftest.$ac_ext <<_ACEOF
  841. /* confdefs.h.  */
  842. _ACEOF
  843. cat confdefs.h >>conftest.$ac_ext
  844. cat >>conftest.$ac_ext <<_ACEOF
  845. /* end confdefs.h.  */
  846. $ac_includes_default
  847. #include <$ac_header>
  848. _ACEOF
  849. rm -f conftest.$ac_objext
  850. if { (eval echo "$as_me:$LINENO: "$ac_compile"") >&5
  851.   (eval $ac_compile) 2>conftest.er1
  852.   ac_status=$?
  853.   grep -v '^ *+' conftest.er1 >conftest.err
  854.   rm -f conftest.er1
  855.   cat conftest.err >&5
  856.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  857.   (exit $ac_status); } &&
  858.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  859.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  860.   (eval $ac_try) 2>&5
  861.   ac_status=$?
  862.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  863.   (exit $ac_status); }; } &&
  864.  { ac_try='test -s conftest.$ac_objext'
  865.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  866.   (eval $ac_try) 2>&5
  867.   ac_status=$?
  868.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  869.   (exit $ac_status); }; }; then
  870.   ac_header_compiler=yes
  871. else
  872.   echo "$as_me: failed program was:" >&5
  873. sed 's/^/| /' conftest.$ac_ext >&5
  874. ac_header_compiler=no
  875. fi
  876. rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
  877. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  878. echo "${ECHO_T}$ac_header_compiler" >&6
  879. # Is the header present?
  880. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  881. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  882. cat >conftest.$ac_ext <<_ACEOF
  883. /* confdefs.h.  */
  884. _ACEOF
  885. cat confdefs.h >>conftest.$ac_ext
  886. cat >>conftest.$ac_ext <<_ACEOF
  887. /* end confdefs.h.  */
  888. #include <$ac_header>
  889. _ACEOF
  890. if { (eval echo "$as_me:$LINENO: "$ac_cpp conftest.$ac_ext"") >&5
  891.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  892.   ac_status=$?
  893.   grep -v '^ *+' conftest.er1 >conftest.err
  894.   rm -f conftest.er1
  895.   cat conftest.err >&5
  896.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  897.   (exit $ac_status); } >/dev/null; then
  898.   if test -s conftest.err; then
  899.     ac_cpp_err=$ac_c_preproc_warn_flag
  900.     ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
  901.   else
  902.     ac_cpp_err=
  903.   fi
  904. else
  905.   ac_cpp_err=yes
  906. fi
  907. if test -z "$ac_cpp_err"; then
  908.   ac_header_preproc=yes
  909. else
  910.   echo "$as_me: failed program was:" >&5
  911. sed 's/^/| /' conftest.$ac_ext >&5
  912.   ac_header_preproc=no
  913. fi
  914. rm -f conftest.err conftest.$ac_ext
  915. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  916. echo "${ECHO_T}$ac_header_preproc" >&6
  917. # So?  What about this header?
  918. case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
  919.   yes:no: )
  920.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  921. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  922.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
  923. echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
  924.     ac_header_preproc=yes
  925.     ;;
  926.   no:yes:* )
  927.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  928. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  929.     { echo "$as_me:$LINENO: WARNING: $ac_header:     check for missing prerequisite headers?" >&5
  930. echo "$as_me: WARNING: $ac_header:     check for missing prerequisite headers?" >&2;}
  931.     { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
  932. echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
  933.     { echo "$as_me:$LINENO: WARNING: $ac_header:     section "Present But Cannot Be Compiled"" >&5
  934. echo "$as_me: WARNING: $ac_header:     section "Present But Cannot Be Compiled"" >&2;}
  935.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  936. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  937.     { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
  938. echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
  939.     (
  940.       cat <<_ASBOX
  941. ## ------------------------------ ##
  942. ## Report this to the vlc lists.  ##
  943. ## ------------------------------ ##
  944. _ASBOX
  945.     ) |
  946.       sed "s/^/$as_me: WARNING:     /" >&2
  947.     ;;
  948. esac
  949. echo "$as_me:$LINENO: checking for $ac_header" >&5
  950. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  951. if eval "test "${$as_ac_Header+set}" = set"; then
  952.   echo $ECHO_N "(cached) $ECHO_C" >&6
  953. else
  954.   eval "$as_ac_Header=$ac_header_preproc"
  955. fi
  956. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  957. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  958. fi
  959. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  960.   cat >>confdefs.h <<_ACEOF
  961. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  962. _ACEOF
  963. for ac_func in NSLinkModule
  964. do
  965. as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
  966. echo "$as_me:$LINENO: checking for $ac_func" >&5
  967. echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
  968. if eval "test "${$as_ac_var+set}" = set"; then
  969.   echo $ECHO_N "(cached) $ECHO_C" >&6
  970. else
  971.   cat >conftest.$ac_ext <<_ACEOF
  972. /* confdefs.h.  */
  973. _ACEOF
  974. cat confdefs.h >>conftest.$ac_ext
  975. cat >>conftest.$ac_ext <<_ACEOF
  976. /* end confdefs.h.  */
  977. /* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
  978.    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
  979. #define $ac_func innocuous_$ac_func
  980. /* System header to define __stub macros and hopefully few prototypes,
  981.     which can conflict with char $ac_func (); below.
  982.     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  983.     <limits.h> exists even on freestanding compilers.  */
  984. #ifdef __STDC__
  985. # include <limits.h>
  986. #else
  987. # include <assert.h>
  988. #endif
  989. #undef $ac_func
  990. /* Override any gcc2 internal prototype to avoid an error.  */
  991. #ifdef __cplusplus
  992. extern "C"
  993. {
  994. #endif
  995. /* We use char because int might match the return type of a gcc2
  996.    builtin and then its argument prototype would still apply.  */
  997. char $ac_func ();
  998. /* The GNU C library defines this for functions which it implements
  999.     to always fail with ENOSYS.  Some functions are actually named
  1000.     something starting with __ and the normal name is an alias.  */
  1001. #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
  1002. choke me
  1003. #else
  1004. char (*f) () = $ac_func;
  1005. #endif
  1006. #ifdef __cplusplus
  1007. }
  1008. #endif
  1009. int
  1010. main ()
  1011. {
  1012. return f != $ac_func;
  1013.   ;
  1014.   return 0;
  1015. }
  1016. _ACEOF
  1017. rm -f conftest.$ac_objext conftest$ac_exeext
  1018. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  1019.   (eval $ac_link) 2>conftest.er1
  1020.   ac_status=$?
  1021.   grep -v '^ *+' conftest.er1 >conftest.err
  1022.   rm -f conftest.er1
  1023.   cat conftest.err >&5
  1024.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1025.   (exit $ac_status); } &&
  1026.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  1027.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1028.   (eval $ac_try) 2>&5
  1029.   ac_status=$?
  1030.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1031.   (exit $ac_status); }; } &&
  1032.  { ac_try='test -s conftest$ac_exeext'
  1033.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1034.   (eval $ac_try) 2>&5
  1035.   ac_status=$?
  1036.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1037.   (exit $ac_status); }; }; then
  1038.   eval "$as_ac_var=yes"
  1039. else
  1040.   echo "$as_me: failed program was:" >&5
  1041. sed 's/^/| /' conftest.$ac_ext >&5
  1042. eval "$as_ac_var=no"
  1043. fi
  1044. rm -f conftest.err conftest.$ac_objext 
  1045.       conftest$ac_exeext conftest.$ac_ext
  1046. fi
  1047. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
  1048. echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
  1049. if test `eval echo '${'$as_ac_var'}'` = yes; then
  1050.   cat >>confdefs.h <<_ACEOF
  1051. #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
  1052. _ACEOF
  1053. cat >>confdefs.h <<_ACEOF
  1054. #define HAVE_DL_DYLD 1
  1055. _ACEOF
  1056.      ac_cv_have_plugins=yes
  1057. fi
  1058. done
  1059. fi
  1060. done
  1061. # HP-UX style
  1062. if test "${ac_cv_have_plugins}" = "no"; then
  1063. for ac_header in dl.h
  1064. do
  1065. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  1066. if eval "test "${$as_ac_Header+set}" = set"; then
  1067.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  1068. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  1069. if eval "test "${$as_ac_Header+set}" = set"; then
  1070.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1071. fi
  1072. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  1073. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  1074. else
  1075.   # Is the header compilable?
  1076. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  1077. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  1078. cat >conftest.$ac_ext <<_ACEOF
  1079. /* confdefs.h.  */
  1080. _ACEOF
  1081. cat confdefs.h >>conftest.$ac_ext
  1082. cat >>conftest.$ac_ext <<_ACEOF
  1083. /* end confdefs.h.  */
  1084. $ac_includes_default
  1085. #include <$ac_header>
  1086. _ACEOF
  1087. rm -f conftest.$ac_objext
  1088. if { (eval echo "$as_me:$LINENO: "$ac_compile"") >&5
  1089.   (eval $ac_compile) 2>conftest.er1
  1090.   ac_status=$?
  1091.   grep -v '^ *+' conftest.er1 >conftest.err
  1092.   rm -f conftest.er1
  1093.   cat conftest.err >&5
  1094.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1095.   (exit $ac_status); } &&
  1096.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  1097.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1098.   (eval $ac_try) 2>&5
  1099.   ac_status=$?
  1100.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1101.   (exit $ac_status); }; } &&
  1102.  { ac_try='test -s conftest.$ac_objext'
  1103.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1104.   (eval $ac_try) 2>&5
  1105.   ac_status=$?
  1106.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1107.   (exit $ac_status); }; }; then
  1108.   ac_header_compiler=yes
  1109. else
  1110.   echo "$as_me: failed program was:" >&5
  1111. sed 's/^/| /' conftest.$ac_ext >&5
  1112. ac_header_compiler=no
  1113. fi
  1114. rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
  1115. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  1116. echo "${ECHO_T}$ac_header_compiler" >&6
  1117. # Is the header present?
  1118. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  1119. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  1120. cat >conftest.$ac_ext <<_ACEOF
  1121. /* confdefs.h.  */
  1122. _ACEOF
  1123. cat confdefs.h >>conftest.$ac_ext
  1124. cat >>conftest.$ac_ext <<_ACEOF
  1125. /* end confdefs.h.  */
  1126. #include <$ac_header>
  1127. _ACEOF
  1128. if { (eval echo "$as_me:$LINENO: "$ac_cpp conftest.$ac_ext"") >&5
  1129.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  1130.   ac_status=$?
  1131.   grep -v '^ *+' conftest.er1 >conftest.err
  1132.   rm -f conftest.er1
  1133.   cat conftest.err >&5
  1134.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1135.   (exit $ac_status); } >/dev/null; then
  1136.   if test -s conftest.err; then
  1137.     ac_cpp_err=$ac_c_preproc_warn_flag
  1138.     ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
  1139.   else
  1140.     ac_cpp_err=
  1141.   fi
  1142. else
  1143.   ac_cpp_err=yes
  1144. fi
  1145. if test -z "$ac_cpp_err"; then
  1146.   ac_header_preproc=yes
  1147. else
  1148.   echo "$as_me: failed program was:" >&5
  1149. sed 's/^/| /' conftest.$ac_ext >&5
  1150.   ac_header_preproc=no
  1151. fi
  1152. rm -f conftest.err conftest.$ac_ext
  1153. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  1154. echo "${ECHO_T}$ac_header_preproc" >&6
  1155. # So?  What about this header?
  1156. case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
  1157.   yes:no: )
  1158.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  1159. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  1160.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
  1161. echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
  1162.     ac_header_preproc=yes
  1163.     ;;
  1164.   no:yes:* )
  1165.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  1166. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  1167.     { echo "$as_me:$LINENO: WARNING: $ac_header:     check for missing prerequisite headers?" >&5
  1168. echo "$as_me: WARNING: $ac_header:     check for missing prerequisite headers?" >&2;}
  1169.     { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
  1170. echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
  1171.     { echo "$as_me:$LINENO: WARNING: $ac_header:     section "Present But Cannot Be Compiled"" >&5
  1172. echo "$as_me: WARNING: $ac_header:     section "Present But Cannot Be Compiled"" >&2;}
  1173.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  1174. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  1175.     { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
  1176. echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
  1177.     (
  1178.       cat <<_ASBOX
  1179. ## ------------------------------ ##
  1180. ## Report this to the vlc lists.  ##
  1181. ## ------------------------------ ##
  1182. _ASBOX
  1183.     ) |
  1184.       sed "s/^/$as_me: WARNING:     /" >&2
  1185.     ;;
  1186. esac
  1187. echo "$as_me:$LINENO: checking for $ac_header" >&5
  1188. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  1189. if eval "test "${$as_ac_Header+set}" = set"; then
  1190.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1191. else
  1192.   eval "$as_ac_Header=$ac_header_preproc"
  1193. fi
  1194. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  1195. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  1196. fi
  1197. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  1198.   cat >>confdefs.h <<_ACEOF
  1199. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  1200. _ACEOF
  1201. fi
  1202. done
  1203.   ac_cv_my_have_shl_load=no
  1204.   echo "$as_me:$LINENO: checking for shl_load" >&5
  1205. echo $ECHO_N "checking for shl_load... $ECHO_C" >&6
  1206. if test "${ac_cv_func_shl_load+set}" = set; then
  1207.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1208. else
  1209.   cat >conftest.$ac_ext <<_ACEOF
  1210. /* confdefs.h.  */
  1211. _ACEOF
  1212. cat confdefs.h >>conftest.$ac_ext
  1213. cat >>conftest.$ac_ext <<_ACEOF
  1214. /* end confdefs.h.  */
  1215. /* Define shl_load to an innocuous variant, in case <limits.h> declares shl_load.
  1216.    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
  1217. #define shl_load innocuous_shl_load
  1218. /* System header to define __stub macros and hopefully few prototypes,
  1219.     which can conflict with char shl_load (); below.
  1220.     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  1221.     <limits.h> exists even on freestanding compilers.  */
  1222. #ifdef __STDC__
  1223. # include <limits.h>
  1224. #else
  1225. # include <assert.h>
  1226. #endif
  1227. #undef shl_load
  1228. /* Override any gcc2 internal prototype to avoid an error.  */
  1229. #ifdef __cplusplus
  1230. extern "C"
  1231. {
  1232. #endif
  1233. /* We use char because int might match the return type of a gcc2
  1234.    builtin and then its argument prototype would still apply.  */
  1235. char shl_load ();
  1236. /* The GNU C library defines this for functions which it implements
  1237.     to always fail with ENOSYS.  Some functions are actually named
  1238.     something starting with __ and the normal name is an alias.  */
  1239. #if defined (__stub_shl_load) || defined (__stub___shl_load)
  1240. choke me
  1241. #else
  1242. char (*f) () = shl_load;
  1243. #endif
  1244. #ifdef __cplusplus
  1245. }
  1246. #endif
  1247. int
  1248. main ()
  1249. {
  1250. return f != shl_load;
  1251.   ;
  1252.   return 0;
  1253. }
  1254. _ACEOF
  1255. rm -f conftest.$ac_objext conftest$ac_exeext
  1256. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  1257.   (eval $ac_link) 2>conftest.er1
  1258.   ac_status=$?
  1259.   grep -v '^ *+' conftest.er1 >conftest.err
  1260.   rm -f conftest.er1
  1261.   cat conftest.err >&5
  1262.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1263.   (exit $ac_status); } &&
  1264.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  1265.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1266.   (eval $ac_try) 2>&5
  1267.   ac_status=$?
  1268.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1269.   (exit $ac_status); }; } &&
  1270.  { ac_try='test -s conftest$ac_exeext'
  1271.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1272.   (eval $ac_try) 2>&5
  1273.   ac_status=$?
  1274.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1275.   (exit $ac_status); }; }; then
  1276.   ac_cv_func_shl_load=yes
  1277. else
  1278.   echo "$as_me: failed program was:" >&5
  1279. sed 's/^/| /' conftest.$ac_ext >&5
  1280. ac_cv_func_shl_load=no
  1281. fi
  1282. rm -f conftest.err conftest.$ac_objext 
  1283.       conftest$ac_exeext conftest.$ac_ext
  1284. fi
  1285. echo "$as_me:$LINENO: result: $ac_cv_func_shl_load" >&5
  1286. echo "${ECHO_T}$ac_cv_func_shl_load" >&6
  1287. if test $ac_cv_func_shl_load = yes; then
  1288.   ac_cv_my_have_shl_load=yes,
  1289.     echo "$as_me:$LINENO: checking for shl_load in -ldld" >&5
  1290. echo $ECHO_N "checking for shl_load in -ldld... $ECHO_C" >&6
  1291. if test "${ac_cv_lib_dld_shl_load+set}" = set; then
  1292.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1293. else
  1294.   ac_check_lib_save_LIBS=$LIBS
  1295. LIBS="-ldld  $LIBS"
  1296. cat >conftest.$ac_ext <<_ACEOF
  1297. /* confdefs.h.  */
  1298. _ACEOF
  1299. cat confdefs.h >>conftest.$ac_ext
  1300. cat >>conftest.$ac_ext <<_ACEOF
  1301. /* end confdefs.h.  */
  1302. /* Override any gcc2 internal prototype to avoid an error.  */
  1303. #ifdef __cplusplus
  1304. extern "C"
  1305. #endif
  1306. /* We use char because int might match the return type of a gcc2
  1307.    builtin and then its argument prototype would still apply.  */
  1308. char shl_load ();
  1309. int
  1310. main ()
  1311. {
  1312. shl_load ();
  1313.   ;
  1314.   return 0;
  1315. }
  1316. _ACEOF
  1317. rm -f conftest.$ac_objext conftest$ac_exeext
  1318. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  1319.   (eval $ac_link) 2>conftest.er1
  1320.   ac_status=$?
  1321.   grep -v '^ *+' conftest.er1 >conftest.err
  1322.   rm -f conftest.er1
  1323.   cat conftest.err >&5
  1324.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1325.   (exit $ac_status); } &&
  1326.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  1327.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1328.   (eval $ac_try) 2>&5
  1329.   ac_status=$?
  1330.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1331.   (exit $ac_status); }; } &&
  1332.  { ac_try='test -s conftest$ac_exeext'
  1333.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1334.   (eval $ac_try) 2>&5
  1335.   ac_status=$?
  1336.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1337.   (exit $ac_status); }; }; then
  1338.   ac_cv_lib_dld_shl_load=yes
  1339. else
  1340.   echo "$as_me: failed program was:" >&5
  1341. sed 's/^/| /' conftest.$ac_ext >&5
  1342. ac_cv_lib_dld_shl_load=no
  1343. fi
  1344. rm -f conftest.err conftest.$ac_objext 
  1345.       conftest$ac_exeext conftest.$ac_ext
  1346. LIBS=$ac_check_lib_save_LIBS
  1347. fi
  1348. echo "$as_me:$LINENO: result: $ac_cv_lib_dld_shl_load" >&5
  1349. echo "${ECHO_T}$ac_cv_lib_dld_shl_load" >&6
  1350. if test $ac_cv_lib_dld_shl_load = yes; then
  1351.   ac_cv_my_have_shl_load=yes
  1352.   for element in vlc; do
  1353.     eval "LDFLAGS_${element}="'"'"-ldld "'$'"{LDFLAGS_${element}} "'"'
  1354.     am_modules_with_ldflags="${am_modules_with_ldflags} ${element}"
  1355.   done
  1356. fi
  1357. fi
  1358.   if test "${ac_cv_my_have_shl_load}" = "yes"; then
  1359. cat >>confdefs.h <<_ACEOF
  1360. #define HAVE_DL_SHL_LOAD 1
  1361. _ACEOF
  1362.     ac_cv_have_plugins=yes
  1363.   fi
  1364. fi
  1365. # Whatever style
  1366. if test "${ac_cv_have_plugins}" = "no"; then
  1367.   echo "$as_me:$LINENO: checking for dld_link in -ldld" >&5
  1368. echo $ECHO_N "checking for dld_link in -ldld... $ECHO_C" >&6
  1369. if test "${ac_cv_lib_dld_dld_link+set}" = set; then
  1370.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1371. else
  1372.   ac_check_lib_save_LIBS=$LIBS
  1373. LIBS="-ldld  $LIBS"
  1374. cat >conftest.$ac_ext <<_ACEOF
  1375. /* confdefs.h.  */
  1376. _ACEOF
  1377. cat confdefs.h >>conftest.$ac_ext
  1378. cat >>conftest.$ac_ext <<_ACEOF
  1379. /* end confdefs.h.  */
  1380. /* Override any gcc2 internal prototype to avoid an error.  */
  1381. #ifdef __cplusplus
  1382. extern "C"
  1383. #endif
  1384. /* We use char because int might match the return type of a gcc2
  1385.    builtin and then its argument prototype would still apply.  */
  1386. char dld_link ();
  1387. int
  1388. main ()
  1389. {
  1390. dld_link ();
  1391.   ;
  1392.   return 0;
  1393. }
  1394. _ACEOF
  1395. rm -f conftest.$ac_objext conftest$ac_exeext
  1396. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  1397.   (eval $ac_link) 2>conftest.er1
  1398.   ac_status=$?
  1399.   grep -v '^ *+' conftest.er1 >conftest.err
  1400.   rm -f conftest.er1
  1401.   cat conftest.err >&5
  1402.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1403.   (exit $ac_status); } &&
  1404.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  1405.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1406.   (eval $ac_try) 2>&5
  1407.   ac_status=$?
  1408.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1409.   (exit $ac_status); }; } &&
  1410.  { ac_try='test -s conftest$ac_exeext'
  1411.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1412.   (eval $ac_try) 2>&5
  1413.   ac_status=$?
  1414.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1415.   (exit $ac_status); }; }; then
  1416.   ac_cv_lib_dld_dld_link=yes
  1417. else
  1418.   echo "$as_me: failed program was:" >&5
  1419. sed 's/^/| /' conftest.$ac_ext >&5
  1420. ac_cv_lib_dld_dld_link=no
  1421. fi
  1422. rm -f conftest.err conftest.$ac_objext 
  1423.       conftest$ac_exeext conftest.$ac_ext
  1424. LIBS=$ac_check_lib_save_LIBS
  1425. fi
  1426. echo "$as_me:$LINENO: result: $ac_cv_lib_dld_dld_link" >&5
  1427. echo "${ECHO_T}$ac_cv_lib_dld_dld_link" >&6
  1428. if test $ac_cv_lib_dld_dld_link = yes; then
  1429.   for element in vlc; do
  1430.     eval "LDFLAGS_${element}="'"'"-ldld "'$'"{LDFLAGS_${element}} "'"'
  1431.     am_modules_with_ldflags="${am_modules_with_ldflags} ${element}"
  1432.   done
  1433. cat >>confdefs.h <<_ACEOF
  1434. #define HAVE_DL_DLD_LINK 1
  1435. _ACEOF
  1436.     ac_cv_have_plugins=yes
  1437. fi
  1438. fi
  1439. # Win32 style
  1440. if test "${ac_cv_have_plugins}" = "no"; then
  1441.   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"; then
  1442.     echo "$as_me:$LINENO: checking for main in -lkernel32" >&5
  1443. echo $ECHO_N "checking for main in -lkernel32... $ECHO_C" >&6
  1444. if test "${ac_cv_lib_kernel32_main+set}" = set; then
  1445.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1446. else
  1447.   ac_check_lib_save_LIBS=$LIBS
  1448. LIBS="-lkernel32  $LIBS"
  1449. cat >conftest.$ac_ext <<_ACEOF
  1450. /* confdefs.h.  */
  1451. _ACEOF
  1452. cat confdefs.h >>conftest.$ac_ext
  1453. cat >>conftest.$ac_ext <<_ACEOF
  1454. /* end confdefs.h.  */
  1455. int
  1456. main ()
  1457. {
  1458. main ();
  1459.   ;
  1460.   return 0;
  1461. }
  1462. _ACEOF
  1463. rm -f conftest.$ac_objext conftest$ac_exeext
  1464. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  1465.   (eval $ac_link) 2>conftest.er1
  1466.   ac_status=$?
  1467.   grep -v '^ *+' conftest.er1 >conftest.err
  1468.   rm -f conftest.er1
  1469.   cat conftest.err >&5
  1470.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1471.   (exit $ac_status); } &&
  1472.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  1473.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1474.   (eval $ac_try) 2>&5
  1475.   ac_status=$?
  1476.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1477.   (exit $ac_status); }; } &&
  1478.  { ac_try='test -s conftest$ac_exeext'
  1479.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1480.   (eval $ac_try) 2>&5
  1481.   ac_status=$?
  1482.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1483.   (exit $ac_status); }; }; then
  1484.   ac_cv_lib_kernel32_main=yes
  1485. else
  1486.   echo "$as_me: failed program was:" >&5
  1487. sed 's/^/| /' conftest.$ac_ext >&5
  1488. ac_cv_lib_kernel32_main=no
  1489. fi
  1490. rm -f conftest.err conftest.$ac_objext 
  1491.       conftest$ac_exeext conftest.$ac_ext
  1492. LIBS=$ac_check_lib_save_LIBS
  1493. fi
  1494. echo "$as_me:$LINENO: result: $ac_cv_lib_kernel32_main" >&5
  1495. echo "${ECHO_T}$ac_cv_lib_kernel32_main" >&6
  1496. if test $ac_cv_lib_kernel32_main = yes; then
  1497.   for element in vlc; do
  1498.     eval "LDFLAGS_${element}="'"'"-lkernel32 "'$'"{LDFLAGS_${element}} "'"'
  1499.     am_modules_with_ldflags="${am_modules_with_ldflags} ${element}"
  1500.   done
  1501. cat >>confdefs.h <<_ACEOF
  1502. #define HAVE_DL_WINDOWS 1
  1503. _ACEOF
  1504.       ac_cv_have_plugins=yes
  1505. fi
  1506.   fi
  1507. fi
  1508. # BeOS style
  1509. if test "${ac_cv_have_plugins}" = "no"; then
  1510. for ac_header in image.h
  1511. do
  1512. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  1513. if eval "test "${$as_ac_Header+set}" = set"; then
  1514.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  1515. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  1516. if eval "test "${$as_ac_Header+set}" = set"; then
  1517.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1518. fi
  1519. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  1520. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  1521. else
  1522.   # Is the header compilable?
  1523. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  1524. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  1525. cat >conftest.$ac_ext <<_ACEOF
  1526. /* confdefs.h.  */
  1527. _ACEOF
  1528. cat confdefs.h >>conftest.$ac_ext
  1529. cat >>conftest.$ac_ext <<_ACEOF
  1530. /* end confdefs.h.  */
  1531. $ac_includes_default
  1532. #include <$ac_header>
  1533. _ACEOF
  1534. rm -f conftest.$ac_objext
  1535. if { (eval echo "$as_me:$LINENO: "$ac_compile"") >&5
  1536.   (eval $ac_compile) 2>conftest.er1
  1537.   ac_status=$?
  1538.   grep -v '^ *+' conftest.er1 >conftest.err
  1539.   rm -f conftest.er1
  1540.   cat conftest.err >&5
  1541.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1542.   (exit $ac_status); } &&
  1543.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  1544.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1545.   (eval $ac_try) 2>&5
  1546.   ac_status=$?
  1547.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1548.   (exit $ac_status); }; } &&
  1549.  { ac_try='test -s conftest.$ac_objext'
  1550.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1551.   (eval $ac_try) 2>&5
  1552.   ac_status=$?
  1553.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1554.   (exit $ac_status); }; }; then
  1555.   ac_header_compiler=yes
  1556. else
  1557.   echo "$as_me: failed program was:" >&5
  1558. sed 's/^/| /' conftest.$ac_ext >&5
  1559. ac_header_compiler=no
  1560. fi
  1561. rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
  1562. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  1563. echo "${ECHO_T}$ac_header_compiler" >&6
  1564. # Is the header present?
  1565. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  1566. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  1567. cat >conftest.$ac_ext <<_ACEOF
  1568. /* confdefs.h.  */
  1569. _ACEOF
  1570. cat confdefs.h >>conftest.$ac_ext
  1571. cat >>conftest.$ac_ext <<_ACEOF
  1572. /* end confdefs.h.  */
  1573. #include <$ac_header>
  1574. _ACEOF
  1575. if { (eval echo "$as_me:$LINENO: "$ac_cpp conftest.$ac_ext"") >&5
  1576.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  1577.   ac_status=$?
  1578.   grep -v '^ *+' conftest.er1 >conftest.err
  1579.   rm -f conftest.er1
  1580.   cat conftest.err >&5
  1581.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1582.   (exit $ac_status); } >/dev/null; then
  1583.   if test -s conftest.err; then
  1584.     ac_cpp_err=$ac_c_preproc_warn_flag
  1585.     ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
  1586.   else
  1587.     ac_cpp_err=
  1588.   fi
  1589. else
  1590.   ac_cpp_err=yes
  1591. fi
  1592. if test -z "$ac_cpp_err"; then
  1593.   ac_header_preproc=yes
  1594. else
  1595.   echo "$as_me: failed program was:" >&5
  1596. sed 's/^/| /' conftest.$ac_ext >&5
  1597.   ac_header_preproc=no
  1598. fi
  1599. rm -f conftest.err conftest.$ac_ext
  1600. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  1601. echo "${ECHO_T}$ac_header_preproc" >&6
  1602. # So?  What about this header?
  1603. case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
  1604.   yes:no: )
  1605.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  1606. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  1607.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
  1608. echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
  1609.     ac_header_preproc=yes
  1610.     ;;
  1611.   no:yes:* )
  1612.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  1613. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  1614.     { echo "$as_me:$LINENO: WARNING: $ac_header:     check for missing prerequisite headers?" >&5
  1615. echo "$as_me: WARNING: $ac_header:     check for missing prerequisite headers?" >&2;}
  1616.     { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
  1617. echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
  1618.     { echo "$as_me:$LINENO: WARNING: $ac_header:     section "Present But Cannot Be Compiled"" >&5
  1619. echo "$as_me: WARNING: $ac_header:     section "Present But Cannot Be Compiled"" >&2;}
  1620.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  1621. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  1622.     { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
  1623. echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
  1624.     (
  1625.       cat <<_ASBOX
  1626. ## ------------------------------ ##
  1627. ## Report this to the vlc lists.  ##
  1628. ## ------------------------------ ##
  1629. _ASBOX
  1630.     ) |
  1631.       sed "s/^/$as_me: WARNING:     /" >&2
  1632.     ;;
  1633. esac
  1634. echo "$as_me:$LINENO: checking for $ac_header" >&5
  1635. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  1636. if eval "test "${$as_ac_Header+set}" = set"; then
  1637.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1638. else
  1639.   eval "$as_ac_Header=$ac_header_preproc"
  1640. fi
  1641. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  1642. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  1643. fi
  1644. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  1645.   cat >>confdefs.h <<_ACEOF
  1646. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  1647. _ACEOF
  1648. fi
  1649. done
  1650. for ac_func in load_add_on
  1651. do
  1652. as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
  1653. echo "$as_me:$LINENO: checking for $ac_func" >&5
  1654. echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
  1655. if eval "test "${$as_ac_var+set}" = set"; then
  1656.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1657. else
  1658.   cat >conftest.$ac_ext <<_ACEOF
  1659. /* confdefs.h.  */
  1660. _ACEOF
  1661. cat confdefs.h >>conftest.$ac_ext
  1662. cat >>conftest.$ac_ext <<_ACEOF
  1663. /* end confdefs.h.  */
  1664. /* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
  1665.    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
  1666. #define $ac_func innocuous_$ac_func
  1667. /* System header to define __stub macros and hopefully few prototypes,
  1668.     which can conflict with char $ac_func (); below.
  1669.     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  1670.     <limits.h> exists even on freestanding compilers.  */
  1671. #ifdef __STDC__
  1672. # include <limits.h>
  1673. #else
  1674. # include <assert.h>
  1675. #endif
  1676. #undef $ac_func
  1677. /* Override any gcc2 internal prototype to avoid an error.  */
  1678. #ifdef __cplusplus
  1679. extern "C"
  1680. {
  1681. #endif
  1682. /* We use char because int might match the return type of a gcc2
  1683.    builtin and then its argument prototype would still apply.  */
  1684. char $ac_func ();
  1685. /* The GNU C library defines this for functions which it implements
  1686.     to always fail with ENOSYS.  Some functions are actually named
  1687.     something starting with __ and the normal name is an alias.  */
  1688. #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
  1689. choke me
  1690. #else
  1691. char (*f) () = $ac_func;
  1692. #endif
  1693. #ifdef __cplusplus
  1694. }
  1695. #endif
  1696. int
  1697. main ()
  1698. {
  1699. return f != $ac_func;
  1700.   ;
  1701.   return 0;
  1702. }
  1703. _ACEOF
  1704. rm -f conftest.$ac_objext conftest$ac_exeext
  1705. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  1706.   (eval $ac_link) 2>conftest.er1
  1707.   ac_status=$?
  1708.   grep -v '^ *+' conftest.er1 >conftest.err
  1709.   rm -f conftest.er1
  1710.   cat conftest.err >&5
  1711.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1712.   (exit $ac_status); } &&
  1713.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  1714.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1715.   (eval $ac_try) 2>&5
  1716.   ac_status=$?
  1717.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1718.   (exit $ac_status); }; } &&
  1719.  { ac_try='test -s conftest$ac_exeext'
  1720.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1721.   (eval $ac_try) 2>&5
  1722.   ac_status=$?
  1723.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1724.   (exit $ac_status); }; }; then
  1725.   eval "$as_ac_var=yes"
  1726. else
  1727.   echo "$as_me: failed program was:" >&5
  1728. sed 's/^/| /' conftest.$ac_ext >&5
  1729. eval "$as_ac_var=no"
  1730. fi
  1731. rm -f conftest.err conftest.$ac_objext 
  1732.       conftest$ac_exeext conftest.$ac_ext
  1733. fi
  1734. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
  1735. echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
  1736. if test `eval echo '${'$as_ac_var'}'` = yes; then
  1737.   cat >>confdefs.h <<_ACEOF
  1738. #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
  1739. _ACEOF
  1740. cat >>confdefs.h <<_ACEOF
  1741. #define HAVE_DL_BEOS 1
  1742. _ACEOF
  1743.     ac_cv_have_plugins=yes
  1744. fi
  1745. done
  1746. fi
  1747. # Only test for dlopen() if the others didn't work
  1748. if test "${ac_cv_have_plugins}" = "no"; then
  1749. for ac_header in dlfcn.h sys/dl.h
  1750. do
  1751. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  1752. if eval "test "${$as_ac_Header+set}" = set"; then
  1753.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  1754. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  1755. if eval "test "${$as_ac_Header+set}" = set"; then
  1756.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1757. fi
  1758. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  1759. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  1760. else
  1761.   # Is the header compilable?
  1762. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  1763. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  1764. cat >conftest.$ac_ext <<_ACEOF
  1765. /* confdefs.h.  */
  1766. _ACEOF
  1767. cat confdefs.h >>conftest.$ac_ext
  1768. cat >>conftest.$ac_ext <<_ACEOF
  1769. /* end confdefs.h.  */
  1770. $ac_includes_default
  1771. #include <$ac_header>
  1772. _ACEOF
  1773. rm -f conftest.$ac_objext
  1774. if { (eval echo "$as_me:$LINENO: "$ac_compile"") >&5
  1775.   (eval $ac_compile) 2>conftest.er1
  1776.   ac_status=$?
  1777.   grep -v '^ *+' conftest.er1 >conftest.err
  1778.   rm -f conftest.er1
  1779.   cat conftest.err >&5
  1780.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1781.   (exit $ac_status); } &&
  1782.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  1783.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1784.   (eval $ac_try) 2>&5
  1785.   ac_status=$?
  1786.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1787.   (exit $ac_status); }; } &&
  1788.  { ac_try='test -s conftest.$ac_objext'
  1789.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1790.   (eval $ac_try) 2>&5
  1791.   ac_status=$?
  1792.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1793.   (exit $ac_status); }; }; then
  1794.   ac_header_compiler=yes
  1795. else
  1796.   echo "$as_me: failed program was:" >&5
  1797. sed 's/^/| /' conftest.$ac_ext >&5
  1798. ac_header_compiler=no
  1799. fi
  1800. rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
  1801. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  1802. echo "${ECHO_T}$ac_header_compiler" >&6
  1803. # Is the header present?
  1804. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  1805. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  1806. cat >conftest.$ac_ext <<_ACEOF
  1807. /* confdefs.h.  */
  1808. _ACEOF
  1809. cat confdefs.h >>conftest.$ac_ext
  1810. cat >>conftest.$ac_ext <<_ACEOF
  1811. /* end confdefs.h.  */
  1812. #include <$ac_header>
  1813. _ACEOF
  1814. if { (eval echo "$as_me:$LINENO: "$ac_cpp conftest.$ac_ext"") >&5
  1815.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  1816.   ac_status=$?
  1817.   grep -v '^ *+' conftest.er1 >conftest.err
  1818.   rm -f conftest.er1
  1819.   cat conftest.err >&5
  1820.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1821.   (exit $ac_status); } >/dev/null; then
  1822.   if test -s conftest.err; then
  1823.     ac_cpp_err=$ac_c_preproc_warn_flag
  1824.     ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
  1825.   else
  1826.     ac_cpp_err=
  1827.   fi
  1828. else
  1829.   ac_cpp_err=yes
  1830. fi
  1831. if test -z "$ac_cpp_err"; then
  1832.   ac_header_preproc=yes
  1833. else
  1834.   echo "$as_me: failed program was:" >&5
  1835. sed 's/^/| /' conftest.$ac_ext >&5
  1836.   ac_header_preproc=no
  1837. fi
  1838. rm -f conftest.err conftest.$ac_ext
  1839. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  1840. echo "${ECHO_T}$ac_header_preproc" >&6
  1841. # So?  What about this header?
  1842. case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
  1843.   yes:no: )
  1844.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  1845. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  1846.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
  1847. echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
  1848.     ac_header_preproc=yes
  1849.     ;;
  1850.   no:yes:* )
  1851.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  1852. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  1853.     { echo "$as_me:$LINENO: WARNING: $ac_header:     check for missing prerequisite headers?" >&5
  1854. echo "$as_me: WARNING: $ac_header:     check for missing prerequisite headers?" >&2;}
  1855.     { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
  1856. echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
  1857.     { echo "$as_me:$LINENO: WARNING: $ac_header:     section "Present But Cannot Be Compiled"" >&5
  1858. echo "$as_me: WARNING: $ac_header:     section "Present But Cannot Be Compiled"" >&2;}
  1859.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  1860. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  1861.     { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
  1862. echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
  1863.     (
  1864.       cat <<_ASBOX
  1865. ## ------------------------------ ##
  1866. ## Report this to the vlc lists.  ##
  1867. ## ------------------------------ ##
  1868. _ASBOX
  1869.     ) |
  1870.       sed "s/^/$as_me: WARNING:     /" >&2
  1871.     ;;
  1872. esac
  1873. echo "$as_me:$LINENO: checking for $ac_header" >&5
  1874. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  1875. if eval "test "${$as_ac_Header+set}" = set"; then
  1876.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1877. else
  1878.   eval "$as_ac_Header=$ac_header_preproc"
  1879. fi
  1880. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  1881. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  1882. fi
  1883. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  1884.   cat >>confdefs.h <<_ACEOF
  1885. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  1886. _ACEOF
  1887. fi
  1888. done
  1889.   ac_cv_my_have_dlopen=no
  1890.   echo "$as_me:$LINENO: checking for dlopen" >&5
  1891. echo $ECHO_N "checking for dlopen... $ECHO_C" >&6
  1892. if test "${ac_cv_func_dlopen+set}" = set; then
  1893.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1894. else
  1895.   cat >conftest.$ac_ext <<_ACEOF
  1896. /* confdefs.h.  */
  1897. _ACEOF
  1898. cat confdefs.h >>conftest.$ac_ext
  1899. cat >>conftest.$ac_ext <<_ACEOF
  1900. /* end confdefs.h.  */
  1901. /* Define dlopen to an innocuous variant, in case <limits.h> declares dlopen.
  1902.    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
  1903. #define dlopen innocuous_dlopen
  1904. /* System header to define __stub macros and hopefully few prototypes,
  1905.     which can conflict with char dlopen (); below.
  1906.     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  1907.     <limits.h> exists even on freestanding compilers.  */
  1908. #ifdef __STDC__
  1909. # include <limits.h>
  1910. #else
  1911. # include <assert.h>
  1912. #endif
  1913. #undef dlopen
  1914. /* Override any gcc2 internal prototype to avoid an error.  */
  1915. #ifdef __cplusplus
  1916. extern "C"
  1917. {
  1918. #endif
  1919. /* We use char because int might match the return type of a gcc2
  1920.    builtin and then its argument prototype would still apply.  */
  1921. char dlopen ();
  1922. /* The GNU C library defines this for functions which it implements
  1923.     to always fail with ENOSYS.  Some functions are actually named
  1924.     something starting with __ and the normal name is an alias.  */
  1925. #if defined (__stub_dlopen) || defined (__stub___dlopen)
  1926. choke me
  1927. #else
  1928. char (*f) () = dlopen;
  1929. #endif
  1930. #ifdef __cplusplus
  1931. }
  1932. #endif
  1933. int
  1934. main ()
  1935. {
  1936. return f != dlopen;
  1937.   ;
  1938.   return 0;
  1939. }
  1940. _ACEOF
  1941. rm -f conftest.$ac_objext conftest$ac_exeext
  1942. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  1943.   (eval $ac_link) 2>conftest.er1
  1944.   ac_status=$?
  1945.   grep -v '^ *+' conftest.er1 >conftest.err
  1946.   rm -f conftest.er1
  1947.   cat conftest.err >&5
  1948.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1949.   (exit $ac_status); } &&
  1950.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  1951.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1952.   (eval $ac_try) 2>&5
  1953.   ac_status=$?
  1954.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1955.   (exit $ac_status); }; } &&
  1956.  { ac_try='test -s conftest$ac_exeext'
  1957.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  1958.   (eval $ac_try) 2>&5
  1959.   ac_status=$?
  1960.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  1961.   (exit $ac_status); }; }; then
  1962.   ac_cv_func_dlopen=yes
  1963. else
  1964.   echo "$as_me: failed program was:" >&5
  1965. sed 's/^/| /' conftest.$ac_ext >&5
  1966. ac_cv_func_dlopen=no
  1967. fi
  1968. rm -f conftest.err conftest.$ac_objext 
  1969.       conftest$ac_exeext conftest.$ac_ext
  1970. fi
  1971. echo "$as_me:$LINENO: result: $ac_cv_func_dlopen" >&5
  1972. echo "${ECHO_T}$ac_cv_func_dlopen" >&6
  1973. if test $ac_cv_func_dlopen = yes; then
  1974.   ac_cv_my_have_dlopen=yes
  1975. else
  1976.   echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5
  1977. echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6
  1978. if test "${ac_cv_lib_dl_dlopen+set}" = set; then
  1979.   echo $ECHO_N "(cached) $ECHO_C" >&6
  1980. else
  1981.   ac_check_lib_save_LIBS=$LIBS
  1982. LIBS="-ldl  $LIBS"
  1983. cat >conftest.$ac_ext <<_ACEOF
  1984. /* confdefs.h.  */
  1985. _ACEOF
  1986. cat confdefs.h >>conftest.$ac_ext
  1987. cat >>conftest.$ac_ext <<_ACEOF
  1988. /* end confdefs.h.  */
  1989. /* Override any gcc2 internal prototype to avoid an error.  */
  1990. #ifdef __cplusplus
  1991. extern "C"
  1992. #endif
  1993. /* We use char because int might match the return type of a gcc2
  1994.    builtin and then its argument prototype would still apply.  */
  1995. char dlopen ();
  1996. int
  1997. main ()
  1998. {
  1999. dlopen ();
  2000.   ;
  2001.   return 0;
  2002. }
  2003. _ACEOF
  2004. rm -f conftest.$ac_objext conftest$ac_exeext
  2005. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  2006.   (eval $ac_link) 2>conftest.er1
  2007.   ac_status=$?
  2008.   grep -v '^ *+' conftest.er1 >conftest.err
  2009.   rm -f conftest.er1
  2010.   cat conftest.err >&5
  2011.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2012.   (exit $ac_status); } &&
  2013.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  2014.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  2015.   (eval $ac_try) 2>&5
  2016.   ac_status=$?
  2017.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2018.   (exit $ac_status); }; } &&
  2019.  { ac_try='test -s conftest$ac_exeext'
  2020.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  2021.   (eval $ac_try) 2>&5
  2022.   ac_status=$?
  2023.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2024.   (exit $ac_status); }; }; then
  2025.   ac_cv_lib_dl_dlopen=yes
  2026. else
  2027.   echo "$as_me: failed program was:" >&5
  2028. sed 's/^/| /' conftest.$ac_ext >&5
  2029. ac_cv_lib_dl_dlopen=no
  2030. fi
  2031. rm -f conftest.err conftest.$ac_objext 
  2032.       conftest$ac_exeext conftest.$ac_ext
  2033. LIBS=$ac_check_lib_save_LIBS
  2034. fi
  2035. echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5
  2036. echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6
  2037. if test $ac_cv_lib_dl_dlopen = yes; then
  2038.   ac_cv_my_have_dlopen=yes
  2039.   for element in vlc; do
  2040.     eval "LDFLAGS_${element}="'"'"-ldl "'$'"{LDFLAGS_${element}} "'"'
  2041.     am_modules_with_ldflags="${am_modules_with_ldflags} ${element}"
  2042.   done
  2043. else
  2044.   echo "$as_me:$LINENO: checking for dlopen in -lsvld" >&5
  2045. echo $ECHO_N "checking for dlopen in -lsvld... $ECHO_C" >&6
  2046. if test "${ac_cv_lib_svld_dlopen+set}" = set; then
  2047.   echo $ECHO_N "(cached) $ECHO_C" >&6
  2048. else
  2049.   ac_check_lib_save_LIBS=$LIBS
  2050. LIBS="-lsvld  $LIBS"
  2051. cat >conftest.$ac_ext <<_ACEOF
  2052. /* confdefs.h.  */
  2053. _ACEOF
  2054. cat confdefs.h >>conftest.$ac_ext
  2055. cat >>conftest.$ac_ext <<_ACEOF
  2056. /* end confdefs.h.  */
  2057. /* Override any gcc2 internal prototype to avoid an error.  */
  2058. #ifdef __cplusplus
  2059. extern "C"
  2060. #endif
  2061. /* We use char because int might match the return type of a gcc2
  2062.    builtin and then its argument prototype would still apply.  */
  2063. char dlopen ();
  2064. int
  2065. main ()
  2066. {
  2067. dlopen ();
  2068.   ;
  2069.   return 0;
  2070. }
  2071. _ACEOF
  2072. rm -f conftest.$ac_objext conftest$ac_exeext
  2073. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  2074.   (eval $ac_link) 2>conftest.er1
  2075.   ac_status=$?
  2076.   grep -v '^ *+' conftest.er1 >conftest.err
  2077.   rm -f conftest.er1
  2078.   cat conftest.err >&5
  2079.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2080.   (exit $ac_status); } &&
  2081.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  2082.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  2083.   (eval $ac_try) 2>&5
  2084.   ac_status=$?
  2085.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2086.   (exit $ac_status); }; } &&
  2087.  { ac_try='test -s conftest$ac_exeext'
  2088.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  2089.   (eval $ac_try) 2>&5
  2090.   ac_status=$?
  2091.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2092.   (exit $ac_status); }; }; then
  2093.   ac_cv_lib_svld_dlopen=yes
  2094. else
  2095.   echo "$as_me: failed program was:" >&5
  2096. sed 's/^/| /' conftest.$ac_ext >&5
  2097. ac_cv_lib_svld_dlopen=no
  2098. fi
  2099. rm -f conftest.err conftest.$ac_objext 
  2100.       conftest$ac_exeext conftest.$ac_ext
  2101. LIBS=$ac_check_lib_save_LIBS
  2102. fi
  2103. echo "$as_me:$LINENO: result: $ac_cv_lib_svld_dlopen" >&5
  2104. echo "${ECHO_T}$ac_cv_lib_svld_dlopen" >&6
  2105. if test $ac_cv_lib_svld_dlopen = yes; then
  2106.   ac_cv_my_have_dlopen=yes
  2107.   for element in vlc; do
  2108.     eval "LDFLAGS_${element}="'"'"-lsvld "'$'"{LDFLAGS_${element}} "'"'
  2109.     am_modules_with_ldflags="${am_modules_with_ldflags} ${element}"
  2110.   done
  2111. fi
  2112. fi
  2113. fi
  2114.   if test "${ac_cv_my_have_dlopen}" = "yes"; then
  2115. cat >>confdefs.h <<_ACEOF
  2116. #define HAVE_DL_DLOPEN 1
  2117. _ACEOF
  2118.     ac_cv_have_plugins=yes
  2119.   fi
  2120. fi
  2121. if test "${SYS}" != "mingw32"; then
  2122. THREAD_LIB=error
  2123. if test "${THREAD_LIB}" = "error"; then
  2124.   echo "$as_me:$LINENO: checking for main in -lpthread" >&5
  2125. echo $ECHO_N "checking for main in -lpthread... $ECHO_C" >&6
  2126. if test "${ac_cv_lib_pthread_main+set}" = set; then
  2127.   echo $ECHO_N "(cached) $ECHO_C" >&6
  2128. else
  2129.   ac_check_lib_save_LIBS=$LIBS
  2130. LIBS="-lpthread  $LIBS"
  2131. cat >conftest.$ac_ext <<_ACEOF
  2132. /* confdefs.h.  */
  2133. _ACEOF
  2134. cat confdefs.h >>conftest.$ac_ext
  2135. cat >>conftest.$ac_ext <<_ACEOF
  2136. /* end confdefs.h.  */
  2137. int
  2138. main ()
  2139. {
  2140. main ();
  2141.   ;
  2142.   return 0;
  2143. }
  2144. _ACEOF
  2145. rm -f conftest.$ac_objext conftest$ac_exeext
  2146. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  2147.   (eval $ac_link) 2>conftest.er1
  2148.   ac_status=$?
  2149.   grep -v '^ *+' conftest.er1 >conftest.err
  2150.   rm -f conftest.er1
  2151.   cat conftest.err >&5
  2152.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2153.   (exit $ac_status); } &&
  2154.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  2155.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  2156.   (eval $ac_try) 2>&5
  2157.   ac_status=$?
  2158.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2159.   (exit $ac_status); }; } &&
  2160.  { ac_try='test -s conftest$ac_exeext'
  2161.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  2162.   (eval $ac_try) 2>&5
  2163.   ac_status=$?
  2164.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2165.   (exit $ac_status); }; }; then
  2166.   ac_cv_lib_pthread_main=yes
  2167. else
  2168.   echo "$as_me: failed program was:" >&5
  2169. sed 's/^/| /' conftest.$ac_ext >&5
  2170. ac_cv_lib_pthread_main=no
  2171. fi
  2172. rm -f conftest.err conftest.$ac_objext 
  2173.       conftest$ac_exeext conftest.$ac_ext
  2174. LIBS=$ac_check_lib_save_LIBS
  2175. fi
  2176. echo "$as_me:$LINENO: result: $ac_cv_lib_pthread_main" >&5
  2177. echo "${ECHO_T}$ac_cv_lib_pthread_main" >&6
  2178. if test $ac_cv_lib_pthread_main = yes; then
  2179.   THREAD_LIB="-lpthread"
  2180. fi
  2181. fi
  2182. if test "${THREAD_LIB}" = "error"; then
  2183.   echo "$as_me:$LINENO: checking for main in -lpthreads" >&5
  2184. echo $ECHO_N "checking for main in -lpthreads... $ECHO_C" >&6
  2185. if test "${ac_cv_lib_pthreads_main+set}" = set; then
  2186.   echo $ECHO_N "(cached) $ECHO_C" >&6
  2187. else
  2188.   ac_check_lib_save_LIBS=$LIBS
  2189. LIBS="-lpthreads  $LIBS"
  2190. cat >conftest.$ac_ext <<_ACEOF
  2191. /* confdefs.h.  */
  2192. _ACEOF
  2193. cat confdefs.h >>conftest.$ac_ext
  2194. cat >>conftest.$ac_ext <<_ACEOF
  2195. /* end confdefs.h.  */
  2196. int
  2197. main ()
  2198. {
  2199. main ();
  2200.   ;
  2201.   return 0;
  2202. }
  2203. _ACEOF
  2204. rm -f conftest.$ac_objext conftest$ac_exeext
  2205. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  2206.   (eval $ac_link) 2>conftest.er1
  2207.   ac_status=$?
  2208.   grep -v '^ *+' conftest.er1 >conftest.err
  2209.   rm -f conftest.er1
  2210.   cat conftest.err >&5
  2211.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2212.   (exit $ac_status); } &&
  2213.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  2214.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  2215.   (eval $ac_try) 2>&5
  2216.   ac_status=$?
  2217.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2218.   (exit $ac_status); }; } &&
  2219.  { ac_try='test -s conftest$ac_exeext'
  2220.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  2221.   (eval $ac_try) 2>&5
  2222.   ac_status=$?
  2223.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2224.   (exit $ac_status); }; }; then
  2225.   ac_cv_lib_pthreads_main=yes
  2226. else
  2227.   echo "$as_me: failed program was:" >&5
  2228. sed 's/^/| /' conftest.$ac_ext >&5
  2229. ac_cv_lib_pthreads_main=no
  2230. fi
  2231. rm -f conftest.err conftest.$ac_objext 
  2232.       conftest$ac_exeext conftest.$ac_ext
  2233. LIBS=$ac_check_lib_save_LIBS
  2234. fi
  2235. echo "$as_me:$LINENO: result: $ac_cv_lib_pthreads_main" >&5
  2236. echo "${ECHO_T}$ac_cv_lib_pthreads_main" >&6
  2237. if test $ac_cv_lib_pthreads_main = yes; then
  2238.   THREAD_LIB="-lpthreads"
  2239. fi
  2240. fi
  2241. if test "${THREAD_LIB}" = "error"; then
  2242.   echo "$as_me:$LINENO: checking for main in -lc_r" >&5
  2243. echo $ECHO_N "checking for main in -lc_r... $ECHO_C" >&6
  2244. if test "${ac_cv_lib_c_r_main+set}" = set; then
  2245.   echo $ECHO_N "(cached) $ECHO_C" >&6
  2246. else
  2247.   ac_check_lib_save_LIBS=$LIBS
  2248. LIBS="-lc_r  $LIBS"
  2249. cat >conftest.$ac_ext <<_ACEOF
  2250. /* confdefs.h.  */
  2251. _ACEOF
  2252. cat confdefs.h >>conftest.$ac_ext
  2253. cat >>conftest.$ac_ext <<_ACEOF
  2254. /* end confdefs.h.  */
  2255. int
  2256. main ()
  2257. {
  2258. main ();
  2259.   ;
  2260.   return 0;
  2261. }
  2262. _ACEOF
  2263. rm -f conftest.$ac_objext conftest$ac_exeext
  2264. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  2265.   (eval $ac_link) 2>conftest.er1
  2266.   ac_status=$?
  2267.   grep -v '^ *+' conftest.er1 >conftest.err
  2268.   rm -f conftest.er1
  2269.   cat conftest.err >&5
  2270.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2271.   (exit $ac_status); } &&
  2272.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  2273.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  2274.   (eval $ac_try) 2>&5
  2275.   ac_status=$?
  2276.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2277.   (exit $ac_status); }; } &&
  2278.  { ac_try='test -s conftest$ac_exeext'
  2279.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  2280.   (eval $ac_try) 2>&5
  2281.   ac_status=$?
  2282.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2283.   (exit $ac_status); }; }; then
  2284.   ac_cv_lib_c_r_main=yes
  2285. else
  2286.   echo "$as_me: failed program was:" >&5
  2287. sed 's/^/| /' conftest.$ac_ext >&5
  2288. ac_cv_lib_c_r_main=no
  2289. fi
  2290. rm -f conftest.err conftest.$ac_objext 
  2291.       conftest$ac_exeext conftest.$ac_ext
  2292. LIBS=$ac_check_lib_save_LIBS
  2293. fi
  2294. echo "$as_me:$LINENO: result: $ac_cv_lib_c_r_main" >&5
  2295. echo "${ECHO_T}$ac_cv_lib_c_r_main" >&6
  2296. if test $ac_cv_lib_c_r_main = yes; then
  2297.   THREAD_LIB="-lc_r"
  2298. fi
  2299. fi
  2300. if test "${THREAD_LIB}" = "error"; then
  2301. for ac_func in pthread_mutex_lock
  2302. do
  2303. as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
  2304. echo "$as_me:$LINENO: checking for $ac_func" >&5
  2305. echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
  2306. if eval "test "${$as_ac_var+set}" = set"; then
  2307.   echo $ECHO_N "(cached) $ECHO_C" >&6
  2308. else
  2309.   cat >conftest.$ac_ext <<_ACEOF
  2310. /* confdefs.h.  */
  2311. _ACEOF
  2312. cat confdefs.h >>conftest.$ac_ext
  2313. cat >>conftest.$ac_ext <<_ACEOF
  2314. /* end confdefs.h.  */
  2315. /* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
  2316.    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
  2317. #define $ac_func innocuous_$ac_func
  2318. /* System header to define __stub macros and hopefully few prototypes,
  2319.     which can conflict with char $ac_func (); below.
  2320.     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  2321.     <limits.h> exists even on freestanding compilers.  */
  2322. #ifdef __STDC__
  2323. # include <limits.h>
  2324. #else
  2325. # include <assert.h>
  2326. #endif
  2327. #undef $ac_func
  2328. /* Override any gcc2 internal prototype to avoid an error.  */
  2329. #ifdef __cplusplus
  2330. extern "C"
  2331. {
  2332. #endif
  2333. /* We use char because int might match the return type of a gcc2
  2334.    builtin and then its argument prototype would still apply.  */
  2335. char $ac_func ();
  2336. /* The GNU C library defines this for functions which it implements
  2337.     to always fail with ENOSYS.  Some functions are actually named
  2338.     something starting with __ and the normal name is an alias.  */
  2339. #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
  2340. choke me
  2341. #else
  2342. char (*f) () = $ac_func;
  2343. #endif
  2344. #ifdef __cplusplus
  2345. }
  2346. #endif
  2347. int
  2348. main ()
  2349. {
  2350. return f != $ac_func;
  2351.   ;
  2352.   return 0;
  2353. }
  2354. _ACEOF
  2355. rm -f conftest.$ac_objext conftest$ac_exeext
  2356. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  2357.   (eval $ac_link) 2>conftest.er1
  2358.   ac_status=$?
  2359.   grep -v '^ *+' conftest.er1 >conftest.err
  2360.   rm -f conftest.er1
  2361.   cat conftest.err >&5
  2362.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2363.   (exit $ac_status); } &&
  2364.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  2365.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  2366.   (eval $ac_try) 2>&5
  2367.   ac_status=$?
  2368.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2369.   (exit $ac_status); }; } &&
  2370.  { ac_try='test -s conftest$ac_exeext'
  2371.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  2372.   (eval $ac_try) 2>&5
  2373.   ac_status=$?
  2374.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2375.   (exit $ac_status); }; }; then
  2376.   eval "$as_ac_var=yes"
  2377. else
  2378.   echo "$as_me: failed program was:" >&5
  2379. sed 's/^/| /' conftest.$ac_ext >&5
  2380. eval "$as_ac_var=no"
  2381. fi
  2382. rm -f conftest.err conftest.$ac_objext 
  2383.       conftest$ac_exeext conftest.$ac_ext
  2384. fi
  2385. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
  2386. echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
  2387. if test `eval echo '${'$as_ac_var'}'` = yes; then
  2388.   cat >>confdefs.h <<_ACEOF
  2389. #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
  2390. _ACEOF
  2391. fi
  2392. done
  2393.   THREAD_LIB=""
  2394. fi
  2395. echo "$as_me:$LINENO: checking for cthread_fork in -lthreads" >&5
  2396. echo $ECHO_N "checking for cthread_fork in -lthreads... $ECHO_C" >&6
  2397. if test "${ac_cv_lib_threads_cthread_fork+set}" = set; then
  2398.   echo $ECHO_N "(cached) $ECHO_C" >&6
  2399. else
  2400.   ac_check_lib_save_LIBS=$LIBS
  2401. LIBS="-lthreads  $LIBS"
  2402. cat >conftest.$ac_ext <<_ACEOF
  2403. /* confdefs.h.  */
  2404. _ACEOF
  2405. cat confdefs.h >>conftest.$ac_ext
  2406. cat >>conftest.$ac_ext <<_ACEOF
  2407. /* end confdefs.h.  */
  2408. /* Override any gcc2 internal prototype to avoid an error.  */
  2409. #ifdef __cplusplus
  2410. extern "C"
  2411. #endif
  2412. /* We use char because int might match the return type of a gcc2
  2413.    builtin and then its argument prototype would still apply.  */
  2414. char cthread_fork ();
  2415. int
  2416. main ()
  2417. {
  2418. cthread_fork ();
  2419.   ;
  2420.   return 0;
  2421. }
  2422. _ACEOF
  2423. rm -f conftest.$ac_objext conftest$ac_exeext
  2424. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  2425.   (eval $ac_link) 2>conftest.er1
  2426.   ac_status=$?
  2427.   grep -v '^ *+' conftest.er1 >conftest.err
  2428.   rm -f conftest.er1
  2429.   cat conftest.err >&5
  2430.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2431.   (exit $ac_status); } &&
  2432.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  2433.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  2434.   (eval $ac_try) 2>&5
  2435.   ac_status=$?
  2436.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2437.   (exit $ac_status); }; } &&
  2438.  { ac_try='test -s conftest$ac_exeext'
  2439.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  2440.   (eval $ac_try) 2>&5
  2441.   ac_status=$?
  2442.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2443.   (exit $ac_status); }; }; then
  2444.   ac_cv_lib_threads_cthread_fork=yes
  2445. else
  2446.   echo "$as_me: failed program was:" >&5
  2447. sed 's/^/| /' conftest.$ac_ext >&5
  2448. ac_cv_lib_threads_cthread_fork=no
  2449. fi
  2450. rm -f conftest.err conftest.$ac_objext 
  2451.       conftest$ac_exeext conftest.$ac_ext
  2452. LIBS=$ac_check_lib_save_LIBS
  2453. fi
  2454. echo "$as_me:$LINENO: result: $ac_cv_lib_threads_cthread_fork" >&5
  2455. echo "${ECHO_T}$ac_cv_lib_threads_cthread_fork" >&6
  2456. if test $ac_cv_lib_threads_cthread_fork = yes; then
  2457.   THREAD_LIB="-lthreads"
  2458. fi
  2459. # Check whether --enable-pth or --disable-pth was given.
  2460. if test "${enable_pth+set}" = set; then
  2461.   enableval="$enable_pth"
  2462.    if test "${enable_pth}" = "yes"; then
  2463. echo "$as_me:$LINENO: checking for pth_init in -lpth" >&5
  2464. echo $ECHO_N "checking for pth_init in -lpth... $ECHO_C" >&6
  2465. if test "${ac_cv_lib_pth_pth_init+set}" = set; then
  2466.   echo $ECHO_N "(cached) $ECHO_C" >&6
  2467. else
  2468.   ac_check_lib_save_LIBS=$LIBS
  2469. LIBS="-lpth  $LIBS"
  2470. cat >conftest.$ac_ext <<_ACEOF
  2471. /* confdefs.h.  */
  2472. _ACEOF
  2473. cat confdefs.h >>conftest.$ac_ext
  2474. cat >>conftest.$ac_ext <<_ACEOF
  2475. /* end confdefs.h.  */
  2476. /* Override any gcc2 internal prototype to avoid an error.  */
  2477. #ifdef __cplusplus
  2478. extern "C"
  2479. #endif
  2480. /* We use char because int might match the return type of a gcc2
  2481.    builtin and then its argument prototype would still apply.  */
  2482. char pth_init ();
  2483. int
  2484. main ()
  2485. {
  2486. pth_init ();
  2487.   ;
  2488.   return 0;
  2489. }
  2490. _ACEOF
  2491. rm -f conftest.$ac_objext conftest$ac_exeext
  2492. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  2493.   (eval $ac_link) 2>conftest.er1
  2494.   ac_status=$?
  2495.   grep -v '^ *+' conftest.er1 >conftest.err
  2496.   rm -f conftest.er1
  2497.   cat conftest.err >&5
  2498.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2499.   (exit $ac_status); } &&
  2500.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  2501.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  2502.   (eval $ac_try) 2>&5
  2503.   ac_status=$?
  2504.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2505.   (exit $ac_status); }; } &&
  2506.  { ac_try='test -s conftest$ac_exeext'
  2507.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  2508.   (eval $ac_try) 2>&5
  2509.   ac_status=$?
  2510.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2511.   (exit $ac_status); }; }; then
  2512.   ac_cv_lib_pth_pth_init=yes
  2513. else
  2514.   echo "$as_me: failed program was:" >&5
  2515. sed 's/^/| /' conftest.$ac_ext >&5
  2516. ac_cv_lib_pth_pth_init=no
  2517. fi
  2518. rm -f conftest.err conftest.$ac_objext 
  2519.       conftest$ac_exeext conftest.$ac_ext
  2520. LIBS=$ac_check_lib_save_LIBS
  2521. fi
  2522. echo "$as_me:$LINENO: result: $ac_cv_lib_pth_pth_init" >&5
  2523. echo "${ECHO_T}$ac_cv_lib_pth_pth_init" >&6
  2524. if test $ac_cv_lib_pth_pth_init = yes; then
  2525.   cat >>confdefs.h <<_ACEOF
  2526. #define HAVE_LIBPTH 1
  2527. _ACEOF
  2528.   LIBS="-lpth $LIBS"
  2529. fi
  2530.     echo "$as_me:$LINENO: checking for pth_init in pth.h" >&5
  2531. echo $ECHO_N "checking for pth_init in pth.h... $ECHO_C" >&6
  2532.     cat >conftest.$ac_ext <<_ACEOF
  2533. /* confdefs.h.  */
  2534. _ACEOF
  2535. cat confdefs.h >>conftest.$ac_ext
  2536. cat >>conftest.$ac_ext <<_ACEOF
  2537. /* end confdefs.h.  */
  2538. #include <pth.h>
  2539. _ACEOF
  2540. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  2541.   $EGREP "pth_init" >/dev/null 2>&1; then
  2542.       echo "$as_me:$LINENO: result: yes" >&5
  2543. echo "${ECHO_T}yes" >&6
  2544. cat >>confdefs.h <<_ACEOF
  2545. #define PTH_INIT_IN_PTH_H 1
  2546. _ACEOF
  2547.       THREAD_LIB="-lpth"
  2548. else
  2549.       echo "$as_me:$LINENO: result: no" >&5
  2550. echo "${ECHO_T}no" >&6
  2551. fi
  2552. rm -f conftest*
  2553.     fi
  2554. fi;
  2555. # Check whether --enable-st or --disable-st was given.
  2556. if test "${enable_st+set}" = set; then
  2557.   enableval="$enable_st"
  2558.    if test "${enable_st}" = "yes"; then
  2559. echo "$as_me:$LINENO: checking for st_init in -lst" >&5
  2560. echo $ECHO_N "checking for st_init in -lst... $ECHO_C" >&6
  2561. if test "${ac_cv_lib_st_st_init+set}" = set; then
  2562.   echo $ECHO_N "(cached) $ECHO_C" >&6
  2563. else
  2564.   ac_check_lib_save_LIBS=$LIBS
  2565. LIBS="-lst  $LIBS"
  2566. cat >conftest.$ac_ext <<_ACEOF
  2567. /* confdefs.h.  */
  2568. _ACEOF
  2569. cat confdefs.h >>conftest.$ac_ext
  2570. cat >>conftest.$ac_ext <<_ACEOF
  2571. /* end confdefs.h.  */
  2572. /* Override any gcc2 internal prototype to avoid an error.  */
  2573. #ifdef __cplusplus
  2574. extern "C"
  2575. #endif
  2576. /* We use char because int might match the return type of a gcc2
  2577.    builtin and then its argument prototype would still apply.  */
  2578. char st_init ();
  2579. int
  2580. main ()
  2581. {
  2582. st_init ();
  2583.   ;
  2584.   return 0;
  2585. }
  2586. _ACEOF
  2587. rm -f conftest.$ac_objext conftest$ac_exeext
  2588. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  2589.   (eval $ac_link) 2>conftest.er1
  2590.   ac_status=$?
  2591.   grep -v '^ *+' conftest.er1 >conftest.err
  2592.   rm -f conftest.er1
  2593.   cat conftest.err >&5
  2594.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2595.   (exit $ac_status); } &&
  2596.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  2597.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  2598.   (eval $ac_try) 2>&5
  2599.   ac_status=$?
  2600.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2601.   (exit $ac_status); }; } &&
  2602.  { ac_try='test -s conftest$ac_exeext'
  2603.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  2604.   (eval $ac_try) 2>&5
  2605.   ac_status=$?
  2606.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2607.   (exit $ac_status); }; }; then
  2608.   ac_cv_lib_st_st_init=yes
  2609. else
  2610.   echo "$as_me: failed program was:" >&5
  2611. sed 's/^/| /' conftest.$ac_ext >&5
  2612. ac_cv_lib_st_st_init=no
  2613. fi
  2614. rm -f conftest.err conftest.$ac_objext 
  2615.       conftest$ac_exeext conftest.$ac_ext
  2616. LIBS=$ac_check_lib_save_LIBS
  2617. fi
  2618. echo "$as_me:$LINENO: result: $ac_cv_lib_st_st_init" >&5
  2619. echo "${ECHO_T}$ac_cv_lib_st_st_init" >&6
  2620. if test $ac_cv_lib_st_st_init = yes; then
  2621.   cat >>confdefs.h <<_ACEOF
  2622. #define HAVE_LIBST 1
  2623. _ACEOF
  2624.   LIBS="-lst $LIBS"
  2625. fi
  2626.     echo "$as_me:$LINENO: checking for st_init in st.h" >&5
  2627. echo $ECHO_N "checking for st_init in st.h... $ECHO_C" >&6
  2628.     cat >conftest.$ac_ext <<_ACEOF
  2629. /* confdefs.h.  */
  2630. _ACEOF
  2631. cat confdefs.h >>conftest.$ac_ext
  2632. cat >>conftest.$ac_ext <<_ACEOF
  2633. /* end confdefs.h.  */
  2634. #include <st.h>
  2635. _ACEOF
  2636. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  2637.   $EGREP "st_init" >/dev/null 2>&1; then
  2638.       echo "$as_me:$LINENO: result: yes" >&5
  2639. echo "${ECHO_T}yes" >&6
  2640. cat >>confdefs.h <<_ACEOF
  2641. #define ST_INIT_IN_ST_H 1
  2642. _ACEOF
  2643.       THREAD_LIB="-lst"
  2644. else
  2645.       echo "$as_me:$LINENO: result: yes" >&5
  2646. echo "${ECHO_T}yes" >&6
  2647. fi
  2648. rm -f conftest*
  2649.     fi
  2650. fi;
  2651.   for element in vlc plugin; do
  2652.     eval "LDFLAGS_${element}="'"'"${THREAD_LIB} "'$'"{LDFLAGS_${element}} "'"'
  2653.     am_modules_with_ldflags="${am_modules_with_ldflags} ${element}"
  2654.   done
  2655. if test "${THREAD_LIB}" != "-lpth" && test "${THREAD_LIB}" != "-lst"; then
  2656.     echo "$as_me:$LINENO: checking for sem_init in -lrt" >&5
  2657. echo $ECHO_N "checking for sem_init in -lrt... $ECHO_C" >&6
  2658. if test "${ac_cv_lib_rt_sem_init+set}" = set; then
  2659.   echo $ECHO_N "(cached) $ECHO_C" >&6
  2660. else
  2661.   ac_check_lib_save_LIBS=$LIBS
  2662. LIBS="-lrt  $LIBS"
  2663. cat >conftest.$ac_ext <<_ACEOF
  2664. /* confdefs.h.  */
  2665. _ACEOF
  2666. cat confdefs.h >>conftest.$ac_ext
  2667. cat >>conftest.$ac_ext <<_ACEOF
  2668. /* end confdefs.h.  */
  2669. /* Override any gcc2 internal prototype to avoid an error.  */
  2670. #ifdef __cplusplus
  2671. extern "C"
  2672. #endif
  2673. /* We use char because int might match the return type of a gcc2
  2674.    builtin and then its argument prototype would still apply.  */
  2675. char sem_init ();
  2676. int
  2677. main ()
  2678. {
  2679. sem_init ();
  2680.   ;
  2681.   return 0;
  2682. }
  2683. _ACEOF
  2684. rm -f conftest.$ac_objext conftest$ac_exeext
  2685. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  2686.   (eval $ac_link) 2>conftest.er1
  2687.   ac_status=$?
  2688.   grep -v '^ *+' conftest.er1 >conftest.err
  2689.   rm -f conftest.er1
  2690.   cat conftest.err >&5
  2691.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2692.   (exit $ac_status); } &&
  2693.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  2694.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  2695.   (eval $ac_try) 2>&5
  2696.   ac_status=$?
  2697.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2698.   (exit $ac_status); }; } &&
  2699.  { ac_try='test -s conftest$ac_exeext'
  2700.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  2701.   (eval $ac_try) 2>&5
  2702.   ac_status=$?
  2703.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2704.   (exit $ac_status); }; }; then
  2705.   ac_cv_lib_rt_sem_init=yes
  2706. else
  2707.   echo "$as_me: failed program was:" >&5
  2708. sed 's/^/| /' conftest.$ac_ext >&5
  2709. ac_cv_lib_rt_sem_init=no
  2710. fi
  2711. rm -f conftest.err conftest.$ac_objext 
  2712.       conftest$ac_exeext conftest.$ac_ext
  2713. LIBS=$ac_check_lib_save_LIBS
  2714. fi
  2715. echo "$as_me:$LINENO: result: $ac_cv_lib_rt_sem_init" >&5
  2716. echo "${ECHO_T}$ac_cv_lib_rt_sem_init" >&6
  2717. if test $ac_cv_lib_rt_sem_init = yes; then
  2718.   for element in vlc; do
  2719.     eval "LDFLAGS_${element}="'"'"-lrt "'$'"{LDFLAGS_${element}} "'"'
  2720.     am_modules_with_ldflags="${am_modules_with_ldflags} ${element}"
  2721.   done
  2722. fi
  2723.   have_nanosleep=false
  2724. for ac_func in nanosleep
  2725. do
  2726. as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
  2727. echo "$as_me:$LINENO: checking for $ac_func" >&5
  2728. echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
  2729. if eval "test "${$as_ac_var+set}" = set"; then
  2730.   echo $ECHO_N "(cached) $ECHO_C" >&6
  2731. else
  2732.   cat >conftest.$ac_ext <<_ACEOF
  2733. /* confdefs.h.  */
  2734. _ACEOF
  2735. cat confdefs.h >>conftest.$ac_ext
  2736. cat >>conftest.$ac_ext <<_ACEOF
  2737. /* end confdefs.h.  */
  2738. /* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
  2739.    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
  2740. #define $ac_func innocuous_$ac_func
  2741. /* System header to define __stub macros and hopefully few prototypes,
  2742.     which can conflict with char $ac_func (); below.
  2743.     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  2744.     <limits.h> exists even on freestanding compilers.  */
  2745. #ifdef __STDC__
  2746. # include <limits.h>
  2747. #else
  2748. # include <assert.h>
  2749. #endif
  2750. #undef $ac_func
  2751. /* Override any gcc2 internal prototype to avoid an error.  */
  2752. #ifdef __cplusplus
  2753. extern "C"
  2754. {
  2755. #endif
  2756. /* We use char because int might match the return type of a gcc2
  2757.    builtin and then its argument prototype would still apply.  */
  2758. char $ac_func ();
  2759. /* The GNU C library defines this for functions which it implements
  2760.     to always fail with ENOSYS.  Some functions are actually named
  2761.     something starting with __ and the normal name is an alias.  */
  2762. #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
  2763. choke me
  2764. #else
  2765. char (*f) () = $ac_func;
  2766. #endif
  2767. #ifdef __cplusplus
  2768. }
  2769. #endif
  2770. int
  2771. main ()
  2772. {
  2773. return f != $ac_func;
  2774.   ;
  2775.   return 0;
  2776. }
  2777. _ACEOF
  2778. rm -f conftest.$ac_objext conftest$ac_exeext
  2779. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  2780.   (eval $ac_link) 2>conftest.er1
  2781.   ac_status=$?
  2782.   grep -v '^ *+' conftest.er1 >conftest.err
  2783.   rm -f conftest.er1
  2784.   cat conftest.err >&5
  2785.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2786.   (exit $ac_status); } &&
  2787.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  2788.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  2789.   (eval $ac_try) 2>&5
  2790.   ac_status=$?
  2791.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2792.   (exit $ac_status); }; } &&
  2793.  { ac_try='test -s conftest$ac_exeext'
  2794.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  2795.   (eval $ac_try) 2>&5
  2796.   ac_status=$?
  2797.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2798.   (exit $ac_status); }; }; then
  2799.   eval "$as_ac_var=yes"
  2800. else
  2801.   echo "$as_me: failed program was:" >&5
  2802. sed 's/^/| /' conftest.$ac_ext >&5
  2803. eval "$as_ac_var=no"
  2804. fi
  2805. rm -f conftest.err conftest.$ac_objext 
  2806.       conftest$ac_exeext conftest.$ac_ext
  2807. fi
  2808. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
  2809. echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
  2810. if test `eval echo '${'$as_ac_var'}'` = yes; then
  2811.   cat >>confdefs.h <<_ACEOF
  2812. #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
  2813. _ACEOF
  2814.  have_nanosleep=:
  2815. else
  2816.     echo "$as_me:$LINENO: checking for nanosleep in -lrt" >&5
  2817. echo $ECHO_N "checking for nanosleep in -lrt... $ECHO_C" >&6
  2818. if test "${ac_cv_lib_rt_nanosleep+set}" = set; then
  2819.   echo $ECHO_N "(cached) $ECHO_C" >&6
  2820. else
  2821.   ac_check_lib_save_LIBS=$LIBS
  2822. LIBS="-lrt  $LIBS"
  2823. cat >conftest.$ac_ext <<_ACEOF
  2824. /* confdefs.h.  */
  2825. _ACEOF
  2826. cat confdefs.h >>conftest.$ac_ext
  2827. cat >>conftest.$ac_ext <<_ACEOF
  2828. /* end confdefs.h.  */
  2829. /* Override any gcc2 internal prototype to avoid an error.  */
  2830. #ifdef __cplusplus
  2831. extern "C"
  2832. #endif
  2833. /* We use char because int might match the return type of a gcc2
  2834.    builtin and then its argument prototype would still apply.  */
  2835. char nanosleep ();
  2836. int
  2837. main ()
  2838. {
  2839. nanosleep ();
  2840.   ;
  2841.   return 0;
  2842. }
  2843. _ACEOF
  2844. rm -f conftest.$ac_objext conftest$ac_exeext
  2845. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  2846.   (eval $ac_link) 2>conftest.er1
  2847.   ac_status=$?
  2848.   grep -v '^ *+' conftest.er1 >conftest.err
  2849.   rm -f conftest.er1
  2850.   cat conftest.err >&5
  2851.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2852.   (exit $ac_status); } &&
  2853.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  2854.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  2855.   (eval $ac_try) 2>&5
  2856.   ac_status=$?
  2857.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2858.   (exit $ac_status); }; } &&
  2859.  { ac_try='test -s conftest$ac_exeext'
  2860.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  2861.   (eval $ac_try) 2>&5
  2862.   ac_status=$?
  2863.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2864.   (exit $ac_status); }; }; then
  2865.   ac_cv_lib_rt_nanosleep=yes
  2866. else
  2867.   echo "$as_me: failed program was:" >&5
  2868. sed 's/^/| /' conftest.$ac_ext >&5
  2869. ac_cv_lib_rt_nanosleep=no
  2870. fi
  2871. rm -f conftest.err conftest.$ac_objext 
  2872.       conftest$ac_exeext conftest.$ac_ext
  2873. LIBS=$ac_check_lib_save_LIBS
  2874. fi
  2875. echo "$as_me:$LINENO: result: $ac_cv_lib_rt_nanosleep" >&5
  2876. echo "${ECHO_T}$ac_cv_lib_rt_nanosleep" >&6
  2877. if test $ac_cv_lib_rt_nanosleep = yes; then
  2878.   for element in vlc; do
  2879.     eval "LDFLAGS_${element}="'"'"-lrt "'$'"{LDFLAGS_${element}} "'"'
  2880.     am_modules_with_ldflags="${am_modules_with_ldflags} ${element}"
  2881.   done
  2882.  have_nanosleep=:
  2883. else
  2884.   echo "$as_me:$LINENO: checking for nanosleep in -lposix4" >&5
  2885. echo $ECHO_N "checking for nanosleep in -lposix4... $ECHO_C" >&6
  2886. if test "${ac_cv_lib_posix4_nanosleep+set}" = set; then
  2887.   echo $ECHO_N "(cached) $ECHO_C" >&6
  2888. else
  2889.   ac_check_lib_save_LIBS=$LIBS
  2890. LIBS="-lposix4  $LIBS"
  2891. cat >conftest.$ac_ext <<_ACEOF
  2892. /* confdefs.h.  */
  2893. _ACEOF
  2894. cat confdefs.h >>conftest.$ac_ext
  2895. cat >>conftest.$ac_ext <<_ACEOF
  2896. /* end confdefs.h.  */
  2897. /* Override any gcc2 internal prototype to avoid an error.  */
  2898. #ifdef __cplusplus
  2899. extern "C"
  2900. #endif
  2901. /* We use char because int might match the return type of a gcc2
  2902.    builtin and then its argument prototype would still apply.  */
  2903. char nanosleep ();
  2904. int
  2905. main ()
  2906. {
  2907. nanosleep ();
  2908.   ;
  2909.   return 0;
  2910. }
  2911. _ACEOF
  2912. rm -f conftest.$ac_objext conftest$ac_exeext
  2913. if { (eval echo "$as_me:$LINENO: "$ac_link"") >&5
  2914.   (eval $ac_link) 2>conftest.er1
  2915.   ac_status=$?
  2916.   grep -v '^ *+' conftest.er1 >conftest.err
  2917.   rm -f conftest.er1
  2918.   cat conftest.err >&5
  2919.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2920.   (exit $ac_status); } &&
  2921.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  2922.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  2923.   (eval $ac_try) 2>&5
  2924.   ac_status=$?
  2925.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2926.   (exit $ac_status); }; } &&
  2927.  { ac_try='test -s conftest$ac_exeext'
  2928.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  2929.   (eval $ac_try) 2>&5
  2930.   ac_status=$?
  2931.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  2932.   (exit $ac_status); }; }; then
  2933.   ac_cv_lib_posix4_nanosleep=yes
  2934. else
  2935.   echo "$as_me: failed program was:" >&5
  2936. sed 's/^/| /' conftest.$ac_ext >&5
  2937. ac_cv_lib_posix4_nanosleep=no
  2938. fi
  2939. rm -f conftest.err conftest.$ac_objext 
  2940.       conftest$ac_exeext conftest.$ac_ext
  2941. LIBS=$ac_check_lib_save_LIBS
  2942. fi
  2943. echo "$as_me:$LINENO: result: $ac_cv_lib_posix4_nanosleep" >&5
  2944. echo "${ECHO_T}$ac_cv_lib_posix4_nanosleep" >&6
  2945. if test $ac_cv_lib_posix4_nanosleep = yes; then
  2946.   for element in vlc; do
  2947.     eval "LDFLAGS_${element}="'"'"-lposix4 "'$'"{LDFLAGS_${element}} "'"'
  2948.     am_modules_with_ldflags="${am_modules_with_ldflags} ${element}"
  2949.   done
  2950.  have_nanosleep=:
  2951. fi
  2952. fi
  2953. fi
  2954. done
  2955.   if ${have_nanosleep}; then
  2956. cat >>confdefs.h <<_ACEOF
  2957. #define HAVE_NANOSLEEP 1
  2958. _ACEOF
  2959.   fi
  2960. fi
  2961. echo "$as_me:$LINENO: checking for pthread_cond_t in pthread.h" >&5
  2962. echo $ECHO_N "checking for pthread_cond_t in pthread.h... $ECHO_C" >&6
  2963. cat >conftest.$ac_ext <<_ACEOF
  2964. /* confdefs.h.  */
  2965. _ACEOF
  2966. cat confdefs.h >>conftest.$ac_ext
  2967. cat >>conftest.$ac_ext <<_ACEOF
  2968. /* end confdefs.h.  */
  2969. #include <pthread.h>
  2970. _ACEOF
  2971. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  2972.   $EGREP "pthread_cond_t" >/dev/null 2>&1; then
  2973.   echo "$as_me:$LINENO: result: yes" >&5
  2974. echo "${ECHO_T}yes" >&6
  2975. cat >>confdefs.h <<_ACEOF
  2976. #define PTHREAD_COND_T_IN_PTHREAD_H 1
  2977. _ACEOF
  2978. else
  2979.   echo "$as_me:$LINENO: result: no" >&5
  2980. echo "${ECHO_T}no" >&6
  2981. fi
  2982. rm -f conftest*
  2983. echo "$as_me:$LINENO: checking for pthread_once in pthread.h" >&5
  2984. echo $ECHO_N "checking for pthread_once in pthread.h... $ECHO_C" >&6
  2985. cat >conftest.$ac_ext <<_ACEOF
  2986. /* confdefs.h.  */
  2987. _ACEOF
  2988. cat confdefs.h >>conftest.$ac_ext
  2989. cat >>conftest.$ac_ext <<_ACEOF
  2990. /* end confdefs.h.  */
  2991. #include <pthread.h>
  2992. _ACEOF
  2993. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  2994.   $EGREP "pthread_once" >/dev/null 2>&1; then
  2995.   echo "$as_me:$LINENO: result: yes" >&5
  2996. echo "${ECHO_T}yes" >&6
  2997. cat >>confdefs.h <<_ACEOF
  2998. #define PTHREAD_ONCE_IN_PTHREAD_H 1
  2999. _ACEOF
  3000. else
  3001.   echo "$as_me:$LINENO: result: no" >&5
  3002. echo "${ECHO_T}no" >&6
  3003. fi
  3004. rm -f conftest*
  3005. fi # end "${SYS}" != "mingw32"
  3006. echo "$as_me:$LINENO: checking for strncasecmp in strings.h" >&5
  3007. echo $ECHO_N "checking for strncasecmp in strings.h... $ECHO_C" >&6
  3008. cat >conftest.$ac_ext <<_ACEOF
  3009. /* confdefs.h.  */
  3010. _ACEOF
  3011. cat confdefs.h >>conftest.$ac_ext
  3012. cat >>conftest.$ac_ext <<_ACEOF
  3013. /* end confdefs.h.  */
  3014. #include <strings.h>
  3015. _ACEOF
  3016. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  3017.   $EGREP "strncasecmp" >/dev/null 2>&1; then
  3018.   echo "$as_me:$LINENO: result: yes" >&5
  3019. echo "${ECHO_T}yes" >&6
  3020. cat >>confdefs.h <<_ACEOF
  3021. #define STRNCASECMP_IN_STRINGS_H 1
  3022. _ACEOF
  3023. else
  3024.   echo "$as_me:$LINENO: result: no" >&5
  3025. echo "${ECHO_T}no" >&6
  3026. fi
  3027. rm -f conftest*
  3028. for ac_header in signal.h time.h errno.h stdint.h stdbool.h getopt.h strings.h inttypes.h sys/int_types.h wchar.h
  3029. do
  3030. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  3031. if eval "test "${$as_ac_Header+set}" = set"; then
  3032.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  3033. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  3034. if eval "test "${$as_ac_Header+set}" = set"; then
  3035.   echo $ECHO_N "(cached) $ECHO_C" >&6
  3036. fi
  3037. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  3038. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  3039. else
  3040.   # Is the header compilable?
  3041. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  3042. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  3043. cat >conftest.$ac_ext <<_ACEOF
  3044. /* confdefs.h.  */
  3045. _ACEOF
  3046. cat confdefs.h >>conftest.$ac_ext
  3047. cat >>conftest.$ac_ext <<_ACEOF
  3048. /* end confdefs.h.  */
  3049. $ac_includes_default
  3050. #include <$ac_header>
  3051. _ACEOF
  3052. rm -f conftest.$ac_objext
  3053. if { (eval echo "$as_me:$LINENO: "$ac_compile"") >&5
  3054.   (eval $ac_compile) 2>conftest.er1
  3055.   ac_status=$?
  3056.   grep -v '^ *+' conftest.er1 >conftest.err
  3057.   rm -f conftest.er1
  3058.   cat conftest.err >&5
  3059.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  3060.   (exit $ac_status); } &&
  3061.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  3062.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  3063.   (eval $ac_try) 2>&5
  3064.   ac_status=$?
  3065.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  3066.   (exit $ac_status); }; } &&
  3067.  { ac_try='test -s conftest.$ac_objext'
  3068.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  3069.   (eval $ac_try) 2>&5
  3070.   ac_status=$?
  3071.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  3072.   (exit $ac_status); }; }; then
  3073.   ac_header_compiler=yes
  3074. else
  3075.   echo "$as_me: failed program was:" >&5
  3076. sed 's/^/| /' conftest.$ac_ext >&5
  3077. ac_header_compiler=no
  3078. fi
  3079. rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
  3080. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  3081. echo "${ECHO_T}$ac_header_compiler" >&6
  3082. # Is the header present?
  3083. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  3084. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  3085. cat >conftest.$ac_ext <<_ACEOF
  3086. /* confdefs.h.  */
  3087. _ACEOF
  3088. cat confdefs.h >>conftest.$ac_ext
  3089. cat >>conftest.$ac_ext <<_ACEOF
  3090. /* end confdefs.h.  */
  3091. #include <$ac_header>
  3092. _ACEOF
  3093. if { (eval echo "$as_me:$LINENO: "$ac_cpp conftest.$ac_ext"") >&5
  3094.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  3095.   ac_status=$?
  3096.   grep -v '^ *+' conftest.er1 >conftest.err
  3097.   rm -f conftest.er1
  3098.   cat conftest.err >&5
  3099.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  3100.   (exit $ac_status); } >/dev/null; then
  3101.   if test -s conftest.err; then
  3102.     ac_cpp_err=$ac_c_preproc_warn_flag
  3103.     ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
  3104.   else
  3105.     ac_cpp_err=
  3106.   fi
  3107. else
  3108.   ac_cpp_err=yes
  3109. fi
  3110. if test -z "$ac_cpp_err"; then
  3111.   ac_header_preproc=yes
  3112. else
  3113.   echo "$as_me: failed program was:" >&5
  3114. sed 's/^/| /' conftest.$ac_ext >&5
  3115.   ac_header_preproc=no
  3116. fi
  3117. rm -f conftest.err conftest.$ac_ext
  3118. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  3119. echo "${ECHO_T}$ac_header_preproc" >&6
  3120. # So?  What about this header?
  3121. case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
  3122.   yes:no: )
  3123.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  3124. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  3125.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
  3126. echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
  3127.     ac_header_preproc=yes
  3128.     ;;
  3129.   no:yes:* )
  3130.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  3131. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  3132.     { echo "$as_me:$LINENO: WARNING: $ac_header:     check for missing prerequisite headers?" >&5
  3133. echo "$as_me: WARNING: $ac_header:     check for missing prerequisite headers?" >&2;}
  3134.     { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
  3135. echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
  3136.     { echo "$as_me:$LINENO: WARNING: $ac_header:     section "Present But Cannot Be Compiled"" >&5
  3137. echo "$as_me: WARNING: $ac_header:     section "Present But Cannot Be Compiled"" >&2;}
  3138.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  3139. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  3140.     { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
  3141. echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
  3142.     (
  3143.       cat <<_ASBOX
  3144. ## ------------------------------ ##
  3145. ## Report this to the vlc lists.  ##
  3146. ## ------------------------------ ##
  3147. _ASBOX
  3148.     ) |
  3149.       sed "s/^/$as_me: WARNING:     /" >&2
  3150.     ;;
  3151. esac
  3152. echo "$as_me:$LINENO: checking for $ac_header" >&5
  3153. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  3154. if eval "test "${$as_ac_Header+set}" = set"; then
  3155.   echo $ECHO_N "(cached) $ECHO_C" >&6
  3156. else
  3157.   eval "$as_ac_Header=$ac_header_preproc"
  3158. fi
  3159. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  3160. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  3161. fi
  3162. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  3163.   cat >>confdefs.h <<_ACEOF
  3164. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  3165. _ACEOF
  3166. fi
  3167. done
  3168. for ac_header in sys/sockio.h fcntl.h sys/types.h sys/time.h sys/times.h sys/ioctl.h sys/stat.h
  3169. do
  3170. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  3171. if eval "test "${$as_ac_Header+set}" = set"; then
  3172.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  3173. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  3174. if eval "test "${$as_ac_Header+set}" = set"; then
  3175.   echo $ECHO_N "(cached) $ECHO_C" >&6
  3176. fi
  3177. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  3178. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  3179. else
  3180.   # Is the header compilable?
  3181. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  3182. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  3183. cat >conftest.$ac_ext <<_ACEOF
  3184. /* confdefs.h.  */
  3185. _ACEOF
  3186. cat confdefs.h >>conftest.$ac_ext
  3187. cat >>conftest.$ac_ext <<_ACEOF
  3188. /* end confdefs.h.  */
  3189. $ac_includes_default
  3190. #include <$ac_header>
  3191. _ACEOF
  3192. rm -f conftest.$ac_objext
  3193. if { (eval echo "$as_me:$LINENO: "$ac_compile"") >&5
  3194.   (eval $ac_compile) 2>conftest.er1
  3195.   ac_status=$?
  3196.   grep -v '^ *+' conftest.er1 >conftest.err
  3197.   rm -f conftest.er1
  3198.   cat conftest.err >&5
  3199.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  3200.   (exit $ac_status); } &&
  3201.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  3202.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  3203.   (eval $ac_try) 2>&5
  3204.   ac_status=$?
  3205.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  3206.   (exit $ac_status); }; } &&
  3207.  { ac_try='test -s conftest.$ac_objext'
  3208.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  3209.   (eval $ac_try) 2>&5
  3210.   ac_status=$?
  3211.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  3212.   (exit $ac_status); }; }; then
  3213.   ac_header_compiler=yes
  3214. else
  3215.   echo "$as_me: failed program was:" >&5
  3216. sed 's/^/| /' conftest.$ac_ext >&5
  3217. ac_header_compiler=no
  3218. fi
  3219. rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
  3220. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  3221. echo "${ECHO_T}$ac_header_compiler" >&6
  3222. # Is the header present?
  3223. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  3224. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  3225. cat >conftest.$ac_ext <<_ACEOF
  3226. /* confdefs.h.  */
  3227. _ACEOF
  3228. cat confdefs.h >>conftest.$ac_ext
  3229. cat >>conftest.$ac_ext <<_ACEOF
  3230. /* end confdefs.h.  */
  3231. #include <$ac_header>
  3232. _ACEOF
  3233. if { (eval echo "$as_me:$LINENO: "$ac_cpp conftest.$ac_ext"") >&5
  3234.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  3235.   ac_status=$?
  3236.   grep -v '^ *+' conftest.er1 >conftest.err
  3237.   rm -f conftest.er1
  3238.   cat conftest.err >&5
  3239.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  3240.   (exit $ac_status); } >/dev/null; then
  3241.   if test -s conftest.err; then
  3242.     ac_cpp_err=$ac_c_preproc_warn_flag
  3243.     ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
  3244.   else
  3245.     ac_cpp_err=
  3246.   fi
  3247. else
  3248.   ac_cpp_err=yes
  3249. fi
  3250. if test -z "$ac_cpp_err"; then
  3251.   ac_header_preproc=yes
  3252. else
  3253.   echo "$as_me: failed program was:" >&5
  3254. sed 's/^/| /' conftest.$ac_ext >&5
  3255.   ac_header_preproc=no
  3256. fi
  3257. rm -f conftest.err conftest.$ac_ext
  3258. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  3259. echo "${ECHO_T}$ac_header_preproc" >&6
  3260. # So?  What about this header?
  3261. case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
  3262.   yes:no: )
  3263.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  3264. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  3265.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
  3266. echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
  3267.     ac_header_preproc=yes
  3268.     ;;
  3269.   no:yes:* )
  3270.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  3271. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  3272.     { echo "$as_me:$LINENO: WARNING: $ac_header:     check for missing prerequisite headers?" >&5
  3273. echo "$as_me: WARNING: $ac_header:     check for missing prerequisite headers?" >&2;}
  3274.     { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
  3275. echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
  3276.     { echo "$as_me:$LINENO: WARNING: $ac_header:     section "Present But Cannot Be Compiled"" >&5
  3277. echo "$as_me: WARNING: $ac_header:     section "Present But Cannot Be Compiled"" >&2;}
  3278.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  3279. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  3280.     { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
  3281. echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
  3282.     (
  3283.       cat <<_ASBOX
  3284. ## ------------------------------ ##
  3285. ## Report this to the vlc lists.  ##
  3286. ## ------------------------------ ##
  3287. _ASBOX
  3288.     ) |
  3289.       sed "s/^/$as_me: WARNING:     /" >&2
  3290.     ;;
  3291. esac
  3292. echo "$as_me:$LINENO: checking for $ac_header" >&5
  3293. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  3294. if eval "test "${$as_ac_Header+set}" = set"; then
  3295.   echo $ECHO_N "(cached) $ECHO_C" >&6
  3296. else
  3297.   eval "$as_ac_Header=$ac_header_preproc"
  3298. fi
  3299. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  3300. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  3301. fi
  3302. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  3303.   cat >>confdefs.h <<_ACEOF
  3304. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  3305. _ACEOF
  3306. fi
  3307. done
  3308. for ac_header in arpa/inet.h net/if.h netinet/in.h sys/socket.h
  3309. do
  3310. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  3311. if eval "test "${$as_ac_Header+set}" = set"; then
  3312.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  3313. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  3314. if eval "test "${$as_ac_Header+set}" = set"; then
  3315.   echo $ECHO_N "(cached) $ECHO_C" >&6
  3316. fi
  3317. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  3318. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  3319. else
  3320.   # Is the header compilable?
  3321. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  3322. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  3323. cat >conftest.$ac_ext <<_ACEOF
  3324. /* confdefs.h.  */
  3325. _ACEOF
  3326. cat confdefs.h >>conftest.$ac_ext
  3327. cat >>conftest.$ac_ext <<_ACEOF
  3328. /* end confdefs.h.  */
  3329. $ac_includes_default
  3330. #include <$ac_header>
  3331. _ACEOF
  3332. rm -f conftest.$ac_objext
  3333. if { (eval echo "$as_me:$LINENO: "$ac_compile"") >&5
  3334.   (eval $ac_compile) 2>conftest.er1
  3335.   ac_status=$?
  3336.   grep -v '^ *+' conftest.er1 >conftest.err
  3337.   rm -f conftest.er1
  3338.   cat conftest.err >&5
  3339.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  3340.   (exit $ac_status); } &&
  3341.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  3342.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  3343.   (eval $ac_try) 2>&5
  3344.   ac_status=$?
  3345.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  3346.   (exit $ac_status); }; } &&
  3347.  { ac_try='test -s conftest.$ac_objext'
  3348.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  3349.   (eval $ac_try) 2>&5
  3350.   ac_status=$?
  3351.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  3352.   (exit $ac_status); }; }; then
  3353.   ac_header_compiler=yes
  3354. else
  3355.   echo "$as_me: failed program was:" >&5
  3356. sed 's/^/| /' conftest.$ac_ext >&5
  3357. ac_header_compiler=no
  3358. fi
  3359. rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
  3360. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  3361. echo "${ECHO_T}$ac_header_compiler" >&6
  3362. # Is the header present?
  3363. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  3364. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  3365. cat >conftest.$ac_ext <<_ACEOF
  3366. /* confdefs.h.  */
  3367. _ACEOF
  3368. cat confdefs.h >>conftest.$ac_ext
  3369. cat >>conftest.$ac_ext <<_ACEOF
  3370. /* end confdefs.h.  */
  3371. #include <$ac_header>
  3372. _ACEOF
  3373. if { (eval echo "$as_me:$LINENO: "$ac_cpp conftest.$ac_ext"") >&5
  3374.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  3375.   ac_status=$?
  3376.   grep -v '^ *+' conftest.er1 >conftest.err
  3377.   rm -f conftest.er1
  3378.   cat conftest.err >&5
  3379.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  3380.   (exit $ac_status); } >/dev/null; then
  3381.   if test -s conftest.err; then
  3382.     ac_cpp_err=$ac_c_preproc_warn_flag
  3383.     ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
  3384.   else
  3385.     ac_cpp_err=
  3386.   fi
  3387. else
  3388.   ac_cpp_err=yes
  3389. fi
  3390. if test -z "$ac_cpp_err"; then
  3391.   ac_header_preproc=yes
  3392. else
  3393.   echo "$as_me: failed program was:" >&5
  3394. sed 's/^/| /' conftest.$ac_ext >&5
  3395.   ac_header_preproc=no
  3396. fi
  3397. rm -f conftest.err conftest.$ac_ext
  3398. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  3399. echo "${ECHO_T}$ac_header_preproc" >&6
  3400. # So?  What about this header?
  3401. case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
  3402.   yes:no: )
  3403.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  3404. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  3405.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
  3406. echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
  3407.     ac_header_preproc=yes
  3408.     ;;
  3409.   no:yes:* )
  3410.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  3411. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  3412.     { echo "$as_me:$LINENO: WARNING: $ac_header:     check for missing prerequisite headers?" >&5
  3413. echo "$as_me: WARNING: $ac_header:     check for missing prerequisite headers?" >&2;}
  3414.     { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
  3415. echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
  3416.     { echo "$as_me:$LINENO: WARNING: $ac_header:     section "Present But Cannot Be Compiled"" >&5
  3417. echo "$as_me: WARNING: $ac_header:     section "Present But Cannot Be Compiled"" >&2;}
  3418.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  3419. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  3420.     { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
  3421. echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
  3422.     (
  3423.       cat <<_ASBOX
  3424. ## ------------------------------ ##
  3425. ## Report this to the vlc lists.  ##
  3426. ## ------------------------------ ##
  3427. _ASBOX
  3428.     ) |
  3429.       sed "s/^/$as_me: WARNING:     /" >&2
  3430.     ;;
  3431. esac
  3432. echo "$as_me:$LINENO: checking for $ac_header" >&5
  3433. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  3434. if eval "test "${$as_ac_Header+set}" = set"; then
  3435.   echo $ECHO_N "(cached) $ECHO_C" >&6
  3436. else
  3437.   eval "$as_ac_Header=$ac_header_preproc"
  3438. fi
  3439. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  3440. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  3441. fi
  3442. if test `eval echo '${'$as_ac_Header'}'` = yes; then
  3443.   cat >>confdefs.h <<_ACEOF
  3444. #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
  3445. _ACEOF
  3446. fi
  3447. done
  3448. if test "${SYS}" != "mingw32"; then
  3449. for ac_header in machine/param.h sys/shm.h altivec.h
  3450. do
  3451. as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
  3452. if eval "test "${$as_ac_Header+set}" = set"; then
  3453.   echo "$as_me:$LINENO: checking for $ac_header" >&5
  3454. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  3455. if eval "test "${$as_ac_Header+set}" = set"; then
  3456.   echo $ECHO_N "(cached) $ECHO_C" >&6
  3457. fi
  3458. echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
  3459. echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
  3460. else
  3461.   # Is the header compilable?
  3462. echo "$as_me:$LINENO: checking $ac_header usability" >&5
  3463. echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
  3464. cat >conftest.$ac_ext <<_ACEOF
  3465. /* confdefs.h.  */
  3466. _ACEOF
  3467. cat confdefs.h >>conftest.$ac_ext
  3468. cat >>conftest.$ac_ext <<_ACEOF
  3469. /* end confdefs.h.  */
  3470. $ac_includes_default
  3471. #include <$ac_header>
  3472. _ACEOF
  3473. rm -f conftest.$ac_objext
  3474. if { (eval echo "$as_me:$LINENO: "$ac_compile"") >&5
  3475.   (eval $ac_compile) 2>conftest.er1
  3476.   ac_status=$?
  3477.   grep -v '^ *+' conftest.er1 >conftest.err
  3478.   rm -f conftest.er1
  3479.   cat conftest.err >&5
  3480.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  3481.   (exit $ac_status); } &&
  3482.  { ac_try='test -z "$ac_c_werror_flag"  || test ! -s conftest.err'
  3483.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  3484.   (eval $ac_try) 2>&5
  3485.   ac_status=$?
  3486.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  3487.   (exit $ac_status); }; } &&
  3488.  { ac_try='test -s conftest.$ac_objext'
  3489.   { (eval echo "$as_me:$LINENO: "$ac_try"") >&5
  3490.   (eval $ac_try) 2>&5
  3491.   ac_status=$?
  3492.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  3493.   (exit $ac_status); }; }; then
  3494.   ac_header_compiler=yes
  3495. else
  3496.   echo "$as_me: failed program was:" >&5
  3497. sed 's/^/| /' conftest.$ac_ext >&5
  3498. ac_header_compiler=no
  3499. fi
  3500. rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
  3501. echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
  3502. echo "${ECHO_T}$ac_header_compiler" >&6
  3503. # Is the header present?
  3504. echo "$as_me:$LINENO: checking $ac_header presence" >&5
  3505. echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
  3506. cat >conftest.$ac_ext <<_ACEOF
  3507. /* confdefs.h.  */
  3508. _ACEOF
  3509. cat confdefs.h >>conftest.$ac_ext
  3510. cat >>conftest.$ac_ext <<_ACEOF
  3511. /* end confdefs.h.  */
  3512. #include <$ac_header>
  3513. _ACEOF
  3514. if { (eval echo "$as_me:$LINENO: "$ac_cpp conftest.$ac_ext"") >&5
  3515.   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
  3516.   ac_status=$?
  3517.   grep -v '^ *+' conftest.er1 >conftest.err
  3518.   rm -f conftest.er1
  3519.   cat conftest.err >&5
  3520.   echo "$as_me:$LINENO: $? = $ac_status" >&5
  3521.   (exit $ac_status); } >/dev/null; then
  3522.   if test -s conftest.err; then
  3523.     ac_cpp_err=$ac_c_preproc_warn_flag
  3524.     ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
  3525.   else
  3526.     ac_cpp_err=
  3527.   fi
  3528. else
  3529.   ac_cpp_err=yes
  3530. fi
  3531. if test -z "$ac_cpp_err"; then
  3532.   ac_header_preproc=yes
  3533. else
  3534.   echo "$as_me: failed program was:" >&5
  3535. sed 's/^/| /' conftest.$ac_ext >&5
  3536.   ac_header_preproc=no
  3537. fi
  3538. rm -f conftest.err conftest.$ac_ext
  3539. echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
  3540. echo "${ECHO_T}$ac_header_preproc" >&6
  3541. # So?  What about this header?
  3542. case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
  3543.   yes:no: )
  3544.     { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
  3545. echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
  3546.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
  3547. echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
  3548.     ac_header_preproc=yes
  3549.     ;;
  3550.   no:yes:* )
  3551.     { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
  3552. echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
  3553.     { echo "$as_me:$LINENO: WARNING: $ac_header:     check for missing prerequisite headers?" >&5
  3554. echo "$as_me: WARNING: $ac_header:     check for missing prerequisite headers?" >&2;}
  3555.     { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
  3556. echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
  3557.     { echo "$as_me:$LINENO: WARNING: $ac_header:     section "Present But Cannot Be Compiled"" >&5
  3558. echo "$as_me: WARNING: $ac_header:     section "Present But Cannot Be Compiled"" >&2;}
  3559.     { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
  3560. echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
  3561.     { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
  3562. echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
  3563.     (
  3564.       cat <<_ASBOX
  3565. ## ------------------------------ ##
  3566. ## Report this to the vlc lists.  ##
  3567. ## ------------------------------ ##
  3568. _ASBOX
  3569.     ) |
  3570.       sed "s/^/$as_me: WARNING:     /" >&2
  3571.     ;;
  3572. esac
  3573. echo "$as_me:$LINENO: checking for $ac_header" >&5
  3574. echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
  3575. if eval "test "${$as_ac_Header+set}" = set"; then
  3576.   echo $ECHO_N "(cached) $ECHO_C" >&6
  3577. else
  3578.   eval "$as_ac_Header=$ac_header_preproc"
  3579. fi