Changeset 1dedf688bade69ffe778abd12f7cf810c6c6dcd9

Show
Ignore:
Timestamp:
06/01/02 18:45:35 (6 years ago)
Author:
Sam Hocevar <sam@videolan.org>
git-committer:
Sam Hocevar <sam@videolan.org> 1022949935 +0000
git-parent:

[2dad070c9fadba304775b44b6e41edbf67c16784]

git-author:
Sam Hocevar <sam@videolan.org> 1022949935 +0000
Message:
  • ./plugins/dummy/intf_dummy.c, ./plugins/chroma/i420_yuy2.c,
    src/interface/intf_eject.c, src/misc/threads.c: win32 compilation fix.
  • ./plugins/directx/aout_directx.c, plugins/directx/vout_directx.c,
    ./plugins/directx/vout_events.c: the DirectX notification and event threads
    now use the vlc_thread_create / vlc_thread_ready scheme. Untested.
  • ./configure.in: added a check for inttypes.h and sys/int_types.h.
  • ./configure.in: fixed the HTTP plugin compilation under BeOS.
  • ./plugins/network/ipv6.c: reactivated IPv6 module.
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • ChangeLog

    r2337934 r1dedf68  
    55HEAD 
    66 
     7  * ./plugins/dummy/intf_dummy.c, ./plugins/chroma/i420_yuy2.c, 
     8    src/interface/intf_eject.c, src/misc/threads.c: win32 compilation fix. 
     9  * ./plugins/directx/aout_directx.c, plugins/directx/vout_directx.c, 
     10    ./plugins/directx/vout_events.c: the DirectX notification and event threads 
     11    now use the vlc_thread_create / vlc_thread_ready scheme. Untested. 
     12  * ./configure.in: added a check for inttypes.h and sys/int_types.h. 
     13  * ./configure.in: fixed the HTTP plugin compilation under BeOS. 
     14  * ./plugins/network/ipv6.c: reactivated IPv6 module. 
     15  * ./src/misc/beos_specific.cpp: BeOS fixes, removed a static variable. 
     16  * ./include/main.h: replaced p_sys with explicit variables because it's 
     17    really much simpler this way. 
    718  * ./src/misc/beos_specific.cpp: the BeOS BApplication thread now uses the 
    819    vlc_thread_create / vlc_thread_ready scheme to signal readiness. 
  • configure

    r9e3ab28 r1dedf68  
    34403440fi 
    34413441 
    3442 echo $ac_n "checking for gethostbyname""... $ac_c" 1>&6 
    3443 echo "configure:3444: checking for gethostbyname" >&5 
    3444 if eval "test \"`echo '$''{'ac_cv_func_gethostbyname'+set}'`\" = set"; then 
     3442echo $ac_n "checking for send""... $ac_c" 1>&6 
     3443echo "configure:3444: checking for send" >&5 
     3444if eval "test \"`echo '$''{'ac_cv_func_send'+set}'`\" = set"; then 
    34453445  echo $ac_n "(cached) $ac_c" 1>&6 
    34463446else 
    34473447  cat > conftest.$ac_ext <<EOF 
    34483448#line 3449 "configure" 
     3449#include "confdefs.h" 
     3450/* System header to define __stub macros and hopefully few prototypes, 
     3451    which can conflict with char send(); below.  */ 
     3452#include <assert.h> 
     3453/* Override any gcc2 internal prototype to avoid an error.  */ 
     3454/* We use char because int might match the return type of a gcc2 
     3455    builtin and then its argument prototype would still apply.  */ 
     3456char send(); 
     3457 
     3458int main() { 
     3459 
     3460/* The GNU C library defines this for functions which it implements 
     3461    to always fail with ENOSYS.  Some functions are actually named 
     3462    something starting with __ and the normal name is an alias.  */ 
     3463#if defined (__stub_send) || defined (__stub___send) 
     3464choke me 
     3465#else 
     3466send(); 
     3467#endif 
     3468 
     3469; return 0; } 
     3470EOF 
     3471if { (eval echo configure:3472: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     3472  rm -rf conftest* 
     3473  eval "ac_cv_func_send=yes" 
     3474else 
     3475  echo "configure: failed program was:" >&5 
     3476  cat conftest.$ac_ext >&5 
     3477  rm -rf conftest* 
     3478  eval "ac_cv_func_send=no" 
     3479fi 
     3480rm -f conftest* 
     3481fi 
     3482 
     3483if eval "test \"`echo '$ac_cv_func_'send`\" = yes"; then 
     3484  echo "$ac_t""yes" 1>&6 
     3485  : 
     3486else 
     3487  echo "$ac_t""no" 1>&6 
     3488 
     3489  echo $ac_n "checking for send in -lsocket""... $ac_c" 1>&6 
     3490echo "configure:3491: checking for send in -lsocket" >&5 
     3491ac_lib_var=`echo socket'_'send | sed 'y%./+-%__p_%'` 
     3492if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     3493  echo $ac_n "(cached) $ac_c" 1>&6 
     3494else 
     3495  ac_save_LIBS="$LIBS" 
     3496LIBS="-lsocket  $LIBS" 
     3497cat > conftest.$ac_ext <<EOF 
     3498#line 3499 "configure" 
     3499#include "confdefs.h" 
     3500/* Override any gcc2 internal prototype to avoid an error.  */ 
     3501/* We use char because int might match the return type of a gcc2 
     3502    builtin and then its argument prototype would still apply.  */ 
     3503char send(); 
     3504 
     3505int main() { 
     3506send() 
     3507; return 0; } 
     3508EOF 
     3509if { (eval echo configure:3510: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     3510  rm -rf conftest* 
     3511  eval "ac_cv_lib_$ac_lib_var=yes" 
     3512else 
     3513  echo "configure: failed program was:" >&5 
     3514  cat conftest.$ac_ext >&5 
     3515  rm -rf conftest* 
     3516  eval "ac_cv_lib_$ac_lib_var=no" 
     3517fi 
     3518rm -f conftest* 
     3519LIBS="$ac_save_LIBS" 
     3520 
     3521fi 
     3522if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then 
     3523  echo "$ac_t""yes" 1>&6 
     3524  http_LDFLAGS="${http_LDFLAGS} -lsocket" 
     3525 
     3526else 
     3527  echo "$ac_t""no" 1>&6 
     3528fi 
     3529 
     3530fi 
     3531 
     3532echo $ac_n "checking for gethostbyname""... $ac_c" 1>&6 
     3533echo "configure:3534: checking for gethostbyname" >&5 
     3534if eval "test \"`echo '$''{'ac_cv_func_gethostbyname'+set}'`\" = set"; then 
     3535  echo $ac_n "(cached) $ac_c" 1>&6 
     3536else 
     3537  cat > conftest.$ac_ext <<EOF 
     3538#line 3539 "configure" 
    34493539#include "confdefs.h" 
    34503540/* System header to define __stub macros and hopefully few prototypes, 
     
    34693559; return 0; } 
    34703560EOF 
    3471 if { (eval echo configure:3472: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     3561if { (eval echo configure:3562: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    34723562  rm -rf conftest* 
    34733563  eval "ac_cv_func_gethostbyname=yes" 
     
    34883578 
    34893579  echo $ac_n "checking for gethostbyname in -lnsl""... $ac_c" 1>&6 
    3490 echo "configure:3491: checking for gethostbyname in -lnsl" >&5 
     3580echo "configure:3581: checking for gethostbyname in -lnsl" >&5 
    34913581ac_lib_var=`echo nsl'_'gethostbyname | sed 'y%./+-%__p_%'` 
    34923582if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    34963586LIBS="-lnsl  $LIBS" 
    34973587cat > conftest.$ac_ext <<EOF 
    3498 #line 3499 "configure" 
     3588#line 3589 "configure" 
    34993589#include "confdefs.h" 
    35003590/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    35073597; return 0; } 
    35083598EOF 
    3509 if { (eval echo configure:3510: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     3599if { (eval echo configure:3600: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    35103600  rm -rf conftest* 
    35113601  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    35313621 
    35323622echo $ac_n "checking for gethostbyname""... $ac_c" 1>&6 
    3533 echo "configure:3534: checking for gethostbyname" >&5 
     3623echo "configure:3624: checking for gethostbyname" >&5 
    35343624if eval "test \"`echo '$''{'ac_cv_func_gethostbyname'+set}'`\" = set"; then 
    35353625  echo $ac_n "(cached) $ac_c" 1>&6 
    35363626else 
    35373627  cat > conftest.$ac_ext <<EOF 
    3538 #line 3539 "configure" 
     3628#line 3629 "configure" 
    35393629#include "confdefs.h" 
    35403630/* System header to define __stub macros and hopefully few prototypes, 
     
    35593649; return 0; } 
    35603650EOF 
    3561 if { (eval echo configure:3562: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     3651if { (eval echo configure:3652: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    35623652  rm -rf conftest* 
    35633653  eval "ac_cv_func_gethostbyname=yes" 
     
    35783668 
    35793669  echo $ac_n "checking for gethostbyname in -lbind""... $ac_c" 1>&6 
    3580 echo "configure:3581: checking for gethostbyname in -lbind" >&5 
     3670echo "configure:3671: checking for gethostbyname in -lbind" >&5 
    35813671ac_lib_var=`echo bind'_'gethostbyname | sed 'y%./+-%__p_%'` 
    35823672if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    35863676LIBS="-lbind  $LIBS" 
    35873677cat > conftest.$ac_ext <<EOF 
    3588 #line 3589 "configure" 
     3678#line 3679 "configure" 
    35893679#include "confdefs.h" 
    35903680/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    35973687; return 0; } 
    35983688EOF 
    3599 if { (eval echo configure:3600: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     3689if { (eval echo configure:3690: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    36003690  rm -rf conftest* 
    36013691  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    36233713do 
    36243714echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 
    3625 echo "configure:3626: checking for $ac_func" >&5 
     3715echo "configure:3716: checking for $ac_func" >&5 
    36263716if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 
    36273717  echo $ac_n "(cached) $ac_c" 1>&6 
    36283718else 
    36293719  cat > conftest.$ac_ext <<EOF 
    3630 #line 3631 "configure" 
     3720#line 3721 "configure" 
    36313721#include "confdefs.h" 
    36323722/* System header to define __stub macros and hopefully few prototypes, 
     
    36513741; return 0; } 
    36523742EOF 
    3653 if { (eval echo configure:3654: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     3743if { (eval echo configure:3744: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    36543744  rm -rf conftest* 
    36553745  eval "ac_cv_func_$ac_func=yes" 
     
    36733763  echo "$ac_t""no" 1>&6 
    36743764echo $ac_n "checking for nanosleep in -lrt""... $ac_c" 1>&6 
    3675 echo "configure:3676: checking for nanosleep in -lrt" >&5 
     3765echo "configure:3766: checking for nanosleep in -lrt" >&5 
    36763766ac_lib_var=`echo rt'_'nanosleep | sed 'y%./+-%__p_%'` 
    36773767if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    36813771LIBS="-lrt  $LIBS" 
    36823772cat > conftest.$ac_ext <<EOF 
    3683 #line 3684 "configure" 
     3773#line 3774 "configure" 
    36843774#include "confdefs.h" 
    36853775/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    36923782; return 0; } 
    36933783EOF 
    3694 if { (eval echo configure:3695: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     3784if { (eval echo configure:3785: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    36953785  rm -rf conftest* 
    36963786  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    37113801  echo "$ac_t""no" 1>&6 
    37123802echo $ac_n "checking for nanosleep in -lposix4""... $ac_c" 1>&6 
    3713 echo "configure:3714: checking for nanosleep in -lposix4" >&5 
     3803echo "configure:3804: checking for nanosleep in -lposix4" >&5 
    37143804ac_lib_var=`echo posix4'_'nanosleep | sed 'y%./+-%__p_%'` 
    37153805if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    37193809LIBS="-lposix4  $LIBS" 
    37203810cat > conftest.$ac_ext <<EOF 
    3721 #line 3722 "configure" 
     3811#line 3812 "configure" 
    37223812#include "confdefs.h" 
    37233813/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    37303820; return 0; } 
    37313821EOF 
    3732 if { (eval echo configure:3733: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     3822if { (eval echo configure:3823: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    37333823  rm -rf conftest* 
    37343824  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    37583848 
    37593849echo $ac_n "checking for inet_aton""... $ac_c" 1>&6 
    3760 echo "configure:3761: checking for inet_aton" >&5 
     3850echo "configure:3851: checking for inet_aton" >&5 
    37613851if eval "test \"`echo '$''{'ac_cv_func_inet_aton'+set}'`\" = set"; then 
    37623852  echo $ac_n "(cached) $ac_c" 1>&6 
    37633853else 
    37643854  cat > conftest.$ac_ext <<EOF 
    3765 #line 3766 "configure" 
     3855#line 3856 "configure" 
    37663856#include "confdefs.h" 
    37673857/* System header to define __stub macros and hopefully few prototypes, 
     
    37863876; return 0; } 
    37873877EOF 
    3788 if { (eval echo configure:3789: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     3878if { (eval echo configure:3879: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    37893879  rm -rf conftest* 
    37903880  eval "ac_cv_func_inet_aton=yes" 
     
    38053895 
    38063896  echo $ac_n "checking for inet_aton in -lresolv""... $ac_c" 1>&6 
    3807 echo "configure:3808: checking for inet_aton in -lresolv" >&5 
     3897echo "configure:3898: checking for inet_aton in -lresolv" >&5 
    38083898ac_lib_var=`echo resolv'_'inet_aton | sed 'y%./+-%__p_%'` 
    38093899if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    38133903LIBS="-lresolv  $LIBS" 
    38143904cat > conftest.$ac_ext <<EOF 
    3815 #line 3816 "configure" 
     3905#line 3906 "configure" 
    38163906#include "confdefs.h" 
    38173907/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    38243914; return 0; } 
    38253915EOF 
    3826 if { (eval echo configure:3827: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     3916if { (eval echo configure:3917: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    38273917  rm -rf conftest* 
    38283918  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    38483938 
    38493939echo $ac_n "checking for textdomain""... $ac_c" 1>&6 
    3850 echo "configure:3851: checking for textdomain" >&5 
     3940echo "configure:3941: checking for textdomain" >&5 
    38513941if eval "test \"`echo '$''{'ac_cv_func_textdomain'+set}'`\" = set"; then 
    38523942  echo $ac_n "(cached) $ac_c" 1>&6 
    38533943else 
    38543944  cat > conftest.$ac_ext <<EOF 
    3855 #line 3856 "configure" 
     3945#line 3946 "configure" 
    38563946#include "confdefs.h" 
    38573947/* System header to define __stub macros and hopefully few prototypes, 
     
    38763966; return 0; } 
    38773967EOF 
    3878 if { (eval echo configure:3879: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     3968if { (eval echo configure:3969: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    38793969  rm -rf conftest* 
    38803970  eval "ac_cv_func_textdomain=yes" 
     
    38953985 
    38963986  echo $ac_n "checking for textdomain in -lintl""... $ac_c" 1>&6 
    3897 echo "configure:3898: checking for textdomain in -lintl" >&5 
     3987echo "configure:3988: checking for textdomain in -lintl" >&5 
    38983988ac_lib_var=`echo intl'_'textdomain | sed 'y%./+-%__p_%'` 
    38993989if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    39033993LIBS="-lintl  $LIBS" 
    39043994cat > conftest.$ac_ext <<EOF 
    3905 #line 3906 "configure" 
     3995#line 3996 "configure" 
    39063996#include "confdefs.h" 
    39073997/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    39144004; return 0; } 
    39154005EOF 
    3916 if { (eval echo configure:3917: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     4006if { (eval echo configure:4007: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    39174007  rm -rf conftest* 
    39184008  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    39404030NEED_GETOPT=0 
    39414031echo $ac_n "checking for getopt_long""... $ac_c" 1>&6 
    3942 echo "configure:3943: checking for getopt_long" >&5 
     4032echo "configure:4033: checking for getopt_long" >&5 
    39434033if eval "test \"`echo '$''{'ac_cv_func_getopt_long'+set}'`\" = set"; then 
    39444034  echo $ac_n "(cached) $ac_c" 1>&6 
    39454035else 
    39464036  cat > conftest.$ac_ext <<EOF 
    3947 #line 3948 "configure" 
     4037#line 4038 "configure" 
    39484038#include "confdefs.h" 
    39494039/* System header to define __stub macros and hopefully few prototypes, 
     
    39684058; return 0; } 
    39694059EOF 
    3970 if { (eval echo configure:3971: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     4060if { (eval echo configure:4061: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    39714061  rm -rf conftest* 
    39724062  eval "ac_cv_func_getopt_long=yes" 
     
    39904080 # FreeBSD has a gnugetopt library for this: 
    39914081  echo $ac_n "checking for getopt_long in -lgnugetopt""... $ac_c" 1>&6 
    3992 echo "configure:3993: checking for getopt_long in -lgnugetopt" >&5 
     4082echo "configure:4083: checking for getopt_long in -lgnugetopt" >&5 
    39934083ac_lib_var=`echo gnugetopt'_'getopt_long | sed 'y%./+-%__p_%'` 
    39944084if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    39984088LIBS="-lgnugetopt  $LIBS" 
    39994089cat > conftest.$ac_ext <<EOF 
    4000 #line 4001 "configure" 
     4090#line 4091 "configure" 
    40014091#include "confdefs.h" 
    40024092/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    40094099; return 0; } 
    40104100EOF 
    4011 if { (eval echo configure:4012: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     4101if { (eval echo configure:4102: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    40124102  rm -rf conftest* 
    40134103  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    40374127 
    40384128echo $ac_n "checking return type of signal handlers""... $ac_c" 1>&6 
    4039 echo "configure:4040: checking return type of signal handlers" >&5 
     4129echo "configure:4130: checking return type of signal handlers" >&5 
    40404130if eval "test \"`echo '$''{'ac_cv_type_signal'+set}'`\" = set"; then 
    40414131  echo $ac_n "(cached) $ac_c" 1>&6 
    40424132else 
    40434133  cat > conftest.$ac_ext <<EOF 
    4044 #line 4045 "configure" 
     4134#line 4135 "configure" 
    40454135#include "confdefs.h" 
    40464136#include <sys/types.h> 
     
    40594149; return 0; } 
    40604150EOF 
    4061 if { (eval echo configure:4062: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     4151if { (eval echo configure:4152: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    40624152  rm -rf conftest* 
    40634153  ac_cv_type_signal=void 
     
    40784168 
    40794169echo $ac_n "checking for dlopen in -ldl""... $ac_c" 1>&6 
    4080 echo "configure:4081: checking for dlopen in -ldl" >&5 
     4170echo "configure:4171: checking for dlopen in -ldl" >&5 
    40814171ac_lib_var=`echo dl'_'dlopen | sed 'y%./+-%__p_%'` 
    40824172if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    40864176LIBS="-ldl  $LIBS" 
    40874177cat > conftest.$ac_ext <<EOF 
    4088 #line 4089 "configure" 
     4178#line 4179 "configure" 
    40894179#include "confdefs.h" 
    40904180/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    40974187; return 0; } 
    40984188EOF 
    4099 if { (eval echo configure:4100: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     4189if { (eval echo configure:4190: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    41004190  rm -rf conftest* 
    41014191  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    41184208 
    41194209echo $ac_n "checking for cos in -lm""... $ac_c" 1>&6 
    4120 echo "configure:4121: checking for cos in -lm" >&5 
     4210echo "configure:4211: checking for cos in -lm" >&5 
    41214211ac_lib_var=`echo m'_'cos | sed 'y%./+-%__p_%'` 
    41224212if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    41264216LIBS="-lm  $LIBS" 
    41274217cat > conftest.$ac_ext <<EOF 
    4128 #line 4129 "configure" 
     4218#line 4219 "configure" 
    41294219#include "confdefs.h" 
    41304220/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    41374227; return 0; } 
    41384228EOF 
    4139 if { (eval echo configure:4140: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     4229if { (eval echo configure:4230: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    41404230  rm -rf conftest* 
    41414231  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    41594249 
    41604250echo $ac_n "checking for pow in -lm""... $ac_c" 1>&6 
    4161 echo "configure:4162: checking for pow in -lm" >&5 
     4251echo "configure:4252: checking for pow in -lm" >&5 
    41624252ac_lib_var=`echo m'_'pow | sed 'y%./+-%__p_%'` 
    41634253if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    41674257LIBS="-lm  $LIBS" 
    41684258cat > conftest.$ac_ext <<EOF 
    4169 #line 4170 "configure" 
     4259#line 4260 "configure" 
    41704260#include "confdefs.h" 
    41714261/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    41784268; return 0; } 
    41794269EOF 
    4180 if { (eval echo configure:4181: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     4270if { (eval echo configure:4271: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    41814271  rm -rf conftest* 
    41824272  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    42074297if test "x${THREAD_LIB}" = xerror; then 
    42084298  echo $ac_n "checking for pthread_attr_init in -lpthread""... $ac_c" 1>&6 
    4209 echo "configure:4210: checking for pthread_attr_init in -lpthread" >&5 
     4299echo "configure:4300: checking for pthread_attr_init in -lpthread" >&5 
    42104300ac_lib_var=`echo pthread'_'pthread_attr_init | sed 'y%./+-%__p_%'` 
    42114301if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    42154305LIBS="-lpthread  $LIBS" 
    42164306cat > conftest.$ac_ext <<EOF 
    4217 #line 4218 "configure" 
     4307#line 4308 "configure" 
    42184308#include "confdefs.h" 
    42194309/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    42264316; return 0; } 
    42274317EOF 
    4228 if { (eval echo configure:4229: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     4318if { (eval echo configure:4319: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    42294319  rm -rf conftest* 
    42304320  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    42494339if test "x${THREAD_LIB}" = xerror; then 
    42504340  echo $ac_n "checking for pthread_attr_init in -lpthreads""... $ac_c" 1>&6 
    4251 echo "configure:4252: checking for pthread_attr_init in -lpthreads" >&5 
     4341echo "configure:4342: checking for pthread_attr_init in -lpthreads" >&5 
    42524342ac_lib_var=`echo pthreads'_'pthread_attr_init | sed 'y%./+-%__p_%'` 
    42534343if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    42574347LIBS="-lpthreads  $LIBS" 
    42584348cat > conftest.$ac_ext <<EOF 
    4259 #line 4260 "configure" 
     4349#line 4350 "configure" 
    42604350#include "confdefs.h" 
    42614351/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    42684358; return 0; } 
    42694359EOF 
    4270 if { (eval echo configure:4271: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     4360if { (eval echo configure:4361: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    42714361  rm -rf conftest* 
    42724362  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    42914381if test "x${THREAD_LIB}" = xerror; then 
    42924382  echo $ac_n "checking for pthread_attr_init in -lc_r""... $ac_c" 1>&6 
    4293 echo "configure:4294: checking for pthread_attr_init in -lc_r" >&5 
     4383echo "configure:4384: checking for pthread_attr_init in -lc_r" >&5 
    42944384ac_lib_var=`echo c_r'_'pthread_attr_init | sed 'y%./+-%__p_%'` 
    42954385if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    42994389LIBS="-lc_r  $LIBS" 
    43004390cat > conftest.$ac_ext <<EOF 
    4301 #line 4302 "configure" 
     4391#line 4392 "configure" 
    43024392#include "confdefs.h" 
    43034393/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    43104400; return 0; } 
    43114401EOF 
    4312 if { (eval echo configure:4313: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     4402if { (eval echo configure:4403: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    43134403  rm -rf conftest* 
    43144404  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    43334423if test "x${THREAD_LIB}" = xerror; then 
    43344424  echo $ac_n "checking for pthread_attr_init""... $ac_c" 1>&6 
    4335 echo "configure:4336: checking for pthread_attr_init" >&5 
     4425echo "configure:4426: checking for pthread_attr_init" >&5 
    43364426if eval "test \"`echo '$''{'ac_cv_func_pthread_attr_init'+set}'`\" = set"; then 
    43374427  echo $ac_n "(cached) $ac_c" 1>&6 
    43384428else 
    43394429  cat > conftest.$ac_ext <<EOF 
    4340 #line 4341 "configure" 
     4430#line 4431 "configure" 
    43414431#include "confdefs.h" 
    43424432/* System header to define __stub macros and hopefully few prototypes, 
     
    43614451; return 0; } 
    43624452EOF 
    4363 if { (eval echo configure:4364: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     4453if { (eval echo configure:4454: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    43644454  rm -rf conftest* 
    43654455  eval "ac_cv_func_pthread_attr_init=yes" 
     
    43844474 
    43854475echo $ac_n "checking for cthread_fork in -lthreads""... $ac_c" 1>&6 
    4386 echo "configure:4387: checking for cthread_fork in -lthreads" >&5 
     4476echo "configure:4477: checking for cthread_fork in -lthreads" >&5 
    43874477ac_lib_var=`echo threads'_'cthread_fork | sed 'y%./+-%__p_%'` 
    43884478if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 
     
    43924482LIBS="-lthreads  $LIBS" 
    43934483cat > conftest.$ac_ext <<EOF 
    4394 #line 4395 "configure" 
     4484#line 4485 "configure" 
    43954485#include "confdefs.h" 
    43964486/* Override any gcc2 internal prototype to avoid an error.  */ 
     
    44034493; return 0; } 
    44044494EOF 
    4405 if { (eval echo configure:4406: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
     4495if { (eval echo configure:4496: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 
    44064496  rm -rf conftest* 
    44074497  eval "ac_cv_lib_$ac_lib_var=yes" 
     
    44254515 
    44264516cat > conftest.$ac_ext <<EOF 
    4427 #line 4428 "configure" 
     4517#line 4518 "configure" 
    44284518#include "confdefs.h" 
    44294519#include <pthread.h> 
     
    44414531 
    44424532cat > conftest.$ac_ext <<EOF 
    4443 #line 4444 "configure" 
     4533#line 4534 "configure" 
    44444534#include "confdefs.h" 
    44454535#include <pthread.h> 
     
    44574547 
    44584548cat > conftest.$ac_ext <<EOF 
    4459 #line 4460 "configure" 
     4549#line 4550 "configure" 
    44604550#include "confdefs.h" 
    44614551#include <strings.h> 
     
    44734563 
    44744564 
    4475 for ac_hdr in stdint.h getopt.h strings.h 
     4565for ac_hdr in stdint.h getopt.h strings.h inttypes.h sys/int_types.h 
    44764566do 
    44774567ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    44784568echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    4479 echo "configure:4480: checking for $ac_hdr" >&5 
     4569echo "configure:4570: checking for $ac_hdr" >&5 
    44804570if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    44814571  echo $ac_n "(cached) $ac_c" 1>&6 
    44824572else 
    44834573  cat > conftest.$ac_ext <<EOF 
    4484 #line 4485 "configure" 
     4574#line 4575 "configure" 
    44854575#include "confdefs.h" 
    44864576#include <$ac_hdr> 
    44874577EOF 
    44884578ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    4489 { (eval echo configure:4490: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     4579{ (eval echo configure:4580: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    44904580ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    44914581if test -z "$ac_err"; then 
     
    45174607ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    45184608echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    4519 echo "configure:4520: checking for $ac_hdr" >&5 
     4609echo "configure:4610: checking for $ac_hdr" >&5 
    45204610if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    45214611  echo $ac_n "(cached) $ac_c" 1>&6 
    45224612else 
    45234613  cat > conftest.$ac_ext <<EOF 
    4524 #line 4525 "configure" 
     4614#line 4615 "configure" 
    45254615#include "confdefs.h" 
    45264616#include <$ac_hdr> 
    45274617EOF 
    45284618ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    4529 { (eval echo configure:4530: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     4619{ (eval echo configure:4620: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    45304620ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    45314621if test -z "$ac_err"; then 
     
    45574647ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    45584648echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    4559 echo "configure:4560: checking for $ac_hdr" >&5 
     4649echo "configure:4650: checking for $ac_hdr" >&5 
    45604650if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    45614651  echo $ac_n "(cached) $ac_c" 1>&6 
    45624652else 
    45634653  cat > conftest.$ac_ext <<EOF 
    4564 #line 4565 "configure" 
     4654#line 4655 "configure" 
    45654655#include "confdefs.h" 
    45664656#include <$ac_hdr> 
    45674657EOF 
    45684658ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    4569 { (eval echo configure:4570: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     4659{ (eval echo configure:4660: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    45704660ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    45714661if test -z "$ac_err"; then 
     
    45974687ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    45984688echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    4599 echo "configure:4600: checking for $ac_hdr" >&5 
     4689echo "configure:4690: checking for $ac_hdr" >&5 
    46004690if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    46014691  echo $ac_n "(cached) $ac_c" 1>&6 
    46024692else 
    46034693  cat > conftest.$ac_ext <<EOF 
    4604 #line 4605 "configure" 
     4694#line 4695 "configure" 
    46054695#include "confdefs.h" 
    46064696#include <$ac_hdr> 
    46074697EOF 
    46084698ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    4609 { (eval echo configure:4610: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     4699{ (eval echo configure:4700: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    46104700ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    46114701if test -z "$ac_err"; then 
     
    46374727ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    46384728echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    4639 echo "configure:4640: checking for $ac_hdr" >&5 
     4729echo "configure:4730: checking for $ac_hdr" >&5 
    46404730if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    46414731  echo $ac_n "(cached) $ac_c" 1>&6 
    46424732else 
    46434733  cat > conftest.$ac_ext <<EOF 
    4644 #line 4645 "configure" 
     4734#line 4735 "configure" 
    46454735#include "confdefs.h" 
    46464736#include <$ac_hdr> 
    46474737EOF 
    46484738ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    4649 { (eval echo configure:4650: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     4739{ (eval echo configure:4740: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    46504740ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    46514741if test -z "$ac_err"; then 
     
    46774767ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    46784768echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    4679 echo "configure:4680: checking for $ac_hdr" >&5 
     4769echo "configure:4770: checking for $ac_hdr" >&5 
    46804770if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    46814771  echo $ac_n "(cached) $ac_c" 1>&6 
    46824772else 
    46834773  cat > conftest.$ac_ext <<EOF 
    4684 #line 4685 "configure" 
     4774#line 4775 "configure" 
    46854775#include "confdefs.h" 
    46864776#include <$ac_hdr> 
    46874777EOF 
    46884778ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    4689 { (eval echo configure:4690: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     4779{ (eval echo configure:4780: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    46904780ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    46914781if test -z "$ac_err"; then 
     
    47154805 
    47164806echo $ac_n "checking whether time.h and sys/time.h may both be included""... $ac_c" 1>&6 
    4717 echo "configure:4718: checking whether time.h and sys/time.h may both be included" >&5 
     4807echo "configure:4808: checking whether time.h and sys/time.h may both be included" >&5 
    47184808if eval "test \"`echo '$''{'ac_cv_header_time'+set}'`\" = set"; then 
    47194809  echo $ac_n "(cached) $ac_c" 1>&6 
    47204810else 
    47214811  cat > conftest.$ac_ext <<EOF 
    4722 #line 4723 "configure" 
     4812#line 4813 "configure" 
    47234813#include "confdefs.h" 
    47244814#include <sys/types.h> 
     
    47294819; return 0; } 
    47304820EOF 
    4731 if { (eval echo configure:4732: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     4821if { (eval echo configure:4822: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    47324822  rm -rf conftest* 
    47334823  ac_cv_header_time=yes 
     
    47514841 
    47524842cat > conftest.$ac_ext <<EOF 
    4753 #line 4754 "configure" 
     4843#line 4844 "configure" 
    47544844#include "confdefs.h" 
    47554845#include <time.h> 
     
    47694859 
    47704860cat > conftest.$ac_ext <<EOF 
    4771 #line 4772 "configure" 
     4861#line 4862 "configure" 
    47724862#include "confdefs.h" 
    47734863#include <sys/time.h> 
     
    47904880ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    47914881echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    4792 echo "configure:4793: checking for $ac_hdr" >&5 
     4882echo "configure:4883: checking for $ac_hdr" >&5 
    47934883if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    47944884  echo $ac_n "(cached) $ac_c" 1>&6 
    47954885else 
    47964886  cat > conftest.$ac_ext <<EOF 
    4797 #line 4798 "configure" 
     4887#line 4888 "configure" 
    47984888#include "confdefs.h" 
    47994889#include <$ac_hdr> 
    48004890EOF 
    48014891ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    4802 { (eval echo configure:4803: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     4892{ (eval echo configure:4893: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    48034893ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    48044894if test -z "$ac_err"; then 
     
    48404930ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 
    48414931echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 
    4842 echo "configure:4843: checking for $ac_hdr" >&5 
     4932echo "configure:4933: checking for $ac_hdr" >&5 
    48434933if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 
    48444934  echo $ac_n "(cached) $ac_c" 1>&6 
    48454935else 
    48464936  cat > conftest.$ac_ext <<EOF 
    4847 #line 4848 "configure" 
     4937#line 4938 "configure" 
    48484938#include "confdefs.h" 
    48494939#include <$ac_hdr> 
    48504940EOF 
    48514941ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 
    4852 { (eval echo configure:4853: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
     4942{ (eval echo configure:4943: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 
    48534943ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 
    48544944if test -z "$ac_err"; then 
     
    48724962  
    48734963    cat > conftest.$ac_ext <<EOF 
    4874 #line 4875 "configure" 
     4964#line 4965 "configure" 
    48754965#include "confdefs.h" 
    48764966#include <X11/extensions/dpms.h> 
     
    48984988 
    48994989echo $ac_n "checking for ntohl in sys/param.h""... $ac_c" 1>&6 
    4900 echo "configure:4901: checking for ntohl in sys/param.h" >&5 
     4990echo "configure:4991: checking for ntohl in sys/param.h" >&5 
    49014991if eval "test \"`echo '$''{'ac_cv_c_ntohl_sys_param_h'+set}'`\" = set"; then 
    49024992  echo $ac_n "(cached) $ac_c" 1>&6 
     
    49044994  CFLAGS="${save_CFLAGS} -Wall -Werror" 
    49054995     cat > conftest.$ac_ext <<EOF 
    4906 #line 4907 "configure" 
     4996#line 4997 "configure" 
    49074997#include "confdefs.h" 
    49084998#include <sys/param.h> 
     
    49115001; return 0; } 
    49125002EOF 
    4913 if { (eval echo configure:4914: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     5003if { (eval echo configure:5004: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    49145004  rm -rf conftest* 
    49155005  ac_cv_c_ntohl_sys_param_h=yes 
     
    49325022 
    49335023echo $ac_n "checking if \$CC accepts -finline-limit""... $ac_c" 1>&6 
    4934 echo "configure:4935: checking if \$CC accepts -finline-limit" >&5 
     5024echo "configure:5025: checking if \$CC accepts -finline-limit" >&5 
    49355025if eval "test \"`echo '$''{'ac_cv_c_inline_limit'+set}'`\" = set"; then 
    49365026  echo $ac_n "(cached) $ac_c" 1>&6 
     
    49385028  CFLAGS="${save_CFLAGS} -finline-limit-30000" 
    49395029     cat > conftest.$ac_ext <<EOF 
    4940 #line 4941 "configure" 
     5030#line 5031 "configure" 
    49415031#include "confdefs.h" 
    49425032 
     
    49455035; return 0; } 
    49465036EOF 
    4947 if { (eval echo configure:4948: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     5037if { (eval echo configure:5038: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    49485038  rm -rf conftest* 
    49495039  ac_cv_c_inline_limit=yes 
     
    49635053 
    49645054echo $ac_n "checking if \$CC accepts -Wall -Winline""... $ac_c" 1>&6 
    4965 echo "configure:4966: checking if \$CC accepts -Wall -Winline" >&5 
     5055echo "configure:5056: checking if \$CC accepts -Wall -Winline" >&5 
    49665056if eval "test \"`echo '$''{'ac_cv_c_Wall_Winline'+set}'`\" = set"; then 
    49675057  echo $ac_n "(cached) $ac_c" 1>&6 
     
    49695059  CFLAGS="-Wall -Winline ${save_CFLAGS}" 
    49705060     cat > conftest.$ac_ext <<EOF 
    4971 #line 4972 "configure" 
     5061#line 5062 "configure" 
    49725062#include "confdefs.h" 
    49735063 
     
    49765066; return 0; } 
    49775067EOF 
    4978 if { (eval echo configure:4979: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     5068if { (eval echo configure:5069: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    49795069  rm -rf conftest* 
    49805070  ac_cv_c_Wall_Winline=yes 
     
    49935083else 
    49945084    echo $ac_n "checking if \$CC accepts -wall -winline""... $ac_c" 1>&6 
    4995 echo "configure:4996: checking if \$CC accepts -wall -winline" >&5 
     5085echo "configure:5086: checking if \$CC accepts -wall -winline" >&5 
    49965086if eval "test \"`echo '$''{'ac_cv_c_wall_winline'+set}'`\" = set"; then 
    49975087  echo $ac_n "(cached) $ac_c" 1>&6 
     
    49995089  CFLAGS="-wall -winline ${save_CFLAGS}" 
    50005090         cat > conftest.$ac_ext <<EOF 
    5001 #line 5002 "configure" 
     5091#line 5092 "configure" 
    50025092#include "confdefs.h" 
    50035093 
     
    50065096; return 0; } 
    50075097EOF 
    5008 if { (eval echo configure:5009: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
     5098if { (eval echo configure:5099: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 
    50095099  rm -rf conftest* 
    50105100  ac_cv_c_wall_winline=yes 
     
    50255115 
    50265116echo $ac_n "checking if \$CC accepts -pipe""... $ac_c" 1>&6 
    5027 echo "configure:5028: checking if \$CC accepts -pipe" >&5 
     5117echo "configure:5118: checking if \$CC accepts -pipe" >&5 
    50285118if eval "test \"`echo '$''{'ac_cv_c_pipe'+set}'`\" = set"; then 
    50295119  echo $ac_n "(cached) $ac_c" 1>&6 
     
    50315121  CFLAGS="${save_CFLAGS} -pipe" 
    50325122     cat > conftest.$ac_ext <<EOF 
    5033 #line 5034 "configure" 
     5123#line 5124 "configure" 
    50345124#include "confdefs.h" 
    50355125 
     
    50385128; return 0; }