Changeset 1dedf688bade69ffe778abd12f7cf810c6c6dcd9
- Timestamp:
- 06/01/02 18:45:35 (6 years ago)
- git-parent:
- Files:
-
- ChangeLog (modified) (1 diff)
- configure (modified) (220 diffs)
- configure.in (modified) (2 diffs)
- include/defs.h.in (modified) (2 diffs)
- plugins/a52/a52.c (modified) (2 diffs)
- plugins/chroma/i420_yuy2.c (modified) (3 diffs)
- plugins/chroma/i420_yuy2.h (modified) (3 diffs)
- plugins/directx/aout_directx.c (modified) (17 diffs)
- plugins/directx/vout_directx.c (modified) (9 diffs)
- plugins/directx/vout_directx.h (modified) (5 diffs)
- plugins/directx/vout_events.c (modified) (12 diffs)
- plugins/dummy/intf_dummy.c (modified) (2 diffs)
- plugins/idct/idctaltivec.c (modified) (2 diffs)
- plugins/motion/motionaltivec.c (modified) (2 diffs)
- plugins/network/ipv6.c (modified) (16 diffs)
- plugins/satellite/satellite_tools.c (modified) (1 diff)
- po/de.po (modified) (22 diffs)
- po/en_GB.po (modified) (51 diffs)
- po/fr.po (modified) (22 diffs)
- po/ja.po (modified) (23 diffs)
- po/nl.po (modified) (22 diffs)
- po/no.po (modified) (23 diffs)
- po/pl.po (modified) (22 diffs)
- po/ru.po (modified) (22 diffs)
- po/vlc.pot (modified) (22 diffs)
- src/interface/intf_eject.c (modified) (4 diffs)
- src/libvlc.c (modified) (8 diffs)
- src/misc/modules_plugin.h (modified) (1 diff)
- src/misc/threads.c (modified) (3 diffs)
- src/misc/win32_specific.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
ChangeLog
r2337934 r1dedf68 5 5 HEAD 6 6 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. 7 18 * ./src/misc/beos_specific.cpp: the BeOS BApplication thread now uses the 8 19 vlc_thread_create / vlc_thread_ready scheme to signal readiness. configure
r9e3ab28 r1dedf68 3440 3440 fi 3441 3441 3442 echo $ac_n "checking for gethostbyname""... $ac_c" 1>&63443 echo "configure:3444: checking for gethostbyname" >&53444 if eval "test \"`echo '$''{'ac_cv_func_ gethostbyname'+set}'`\" = set"; then3442 echo $ac_n "checking for send""... $ac_c" 1>&6 3443 echo "configure:3444: checking for send" >&5 3444 if eval "test \"`echo '$''{'ac_cv_func_send'+set}'`\" = set"; then 3445 3445 echo $ac_n "(cached) $ac_c" 1>&6 3446 3446 else 3447 3447 cat > conftest.$ac_ext <<EOF 3448 3448 #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. */ 3456 char send(); 3457 3458 int 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) 3464 choke me 3465 #else 3466 send(); 3467 #endif 3468 3469 ; return 0; } 3470 EOF 3471 if { (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" 3474 else 3475 echo "configure: failed program was:" >&5 3476 cat conftest.$ac_ext >&5 3477 rm -rf conftest* 3478 eval "ac_cv_func_send=no" 3479 fi 3480 rm -f conftest* 3481 fi 3482 3483 if eval "test \"`echo '$ac_cv_func_'send`\" = yes"; then 3484 echo "$ac_t""yes" 1>&6 3485 : 3486 else 3487 echo "$ac_t""no" 1>&6 3488 3489 echo $ac_n "checking for send in -lsocket""... $ac_c" 1>&6 3490 echo "configure:3491: checking for send in -lsocket" >&5 3491 ac_lib_var=`echo socket'_'send | sed 'y%./+-%__p_%'` 3492 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then 3493 echo $ac_n "(cached) $ac_c" 1>&6 3494 else 3495 ac_save_LIBS="$LIBS" 3496 LIBS="-lsocket $LIBS" 3497 cat > 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. */ 3503 char send(); 3504 3505 int main() { 3506 send() 3507 ; return 0; } 3508 EOF 3509 if { (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" 3512 else 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" 3517 fi 3518 rm -f conftest* 3519 LIBS="$ac_save_LIBS" 3520 3521 fi 3522 if 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 3526 else 3527 echo "$ac_t""no" 1>&6 3528 fi 3529 3530 fi 3531 3532 echo $ac_n "checking for gethostbyname""... $ac_c" 1>&6 3533 echo "configure:3534: checking for gethostbyname" >&5 3534 if eval "test \"`echo '$''{'ac_cv_func_gethostbyname'+set}'`\" = set"; then 3535 echo $ac_n "(cached) $ac_c" 1>&6 3536 else 3537 cat > conftest.$ac_ext <<EOF 3538 #line 3539 "configure" 3449 3539 #include "confdefs.h" 3450 3540 /* System header to define __stub macros and hopefully few prototypes, … … 3469 3559 ; return 0; } 3470 3560 EOF 3471 if { (eval echo configure:3 472: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3561 if { (eval echo configure:3562: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3472 3562 rm -rf conftest* 3473 3563 eval "ac_cv_func_gethostbyname=yes" … … 3488 3578 3489 3579 echo $ac_n "checking for gethostbyname in -lnsl""... $ac_c" 1>&6 3490 echo "configure:3 491: checking for gethostbyname in -lnsl" >&53580 echo "configure:3581: checking for gethostbyname in -lnsl" >&5 3491 3581 ac_lib_var=`echo nsl'_'gethostbyname | sed 'y%./+-%__p_%'` 3492 3582 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 3496 3586 LIBS="-lnsl $LIBS" 3497 3587 cat > conftest.$ac_ext <<EOF 3498 #line 3 499 "configure"3588 #line 3589 "configure" 3499 3589 #include "confdefs.h" 3500 3590 /* Override any gcc2 internal prototype to avoid an error. */ … … 3507 3597 ; return 0; } 3508 3598 EOF 3509 if { (eval echo configure:3 510: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3599 if { (eval echo configure:3600: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3510 3600 rm -rf conftest* 3511 3601 eval "ac_cv_lib_$ac_lib_var=yes" … … 3531 3621 3532 3622 echo $ac_n "checking for gethostbyname""... $ac_c" 1>&6 3533 echo "configure:3 534: checking for gethostbyname" >&53623 echo "configure:3624: checking for gethostbyname" >&5 3534 3624 if eval "test \"`echo '$''{'ac_cv_func_gethostbyname'+set}'`\" = set"; then 3535 3625 echo $ac_n "(cached) $ac_c" 1>&6 3536 3626 else 3537 3627 cat > conftest.$ac_ext <<EOF 3538 #line 3 539 "configure"3628 #line 3629 "configure" 3539 3629 #include "confdefs.h" 3540 3630 /* System header to define __stub macros and hopefully few prototypes, … … 3559 3649 ; return 0; } 3560 3650 EOF 3561 if { (eval echo configure:3 562: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3651 if { (eval echo configure:3652: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3562 3652 rm -rf conftest* 3563 3653 eval "ac_cv_func_gethostbyname=yes" … … 3578 3668 3579 3669 echo $ac_n "checking for gethostbyname in -lbind""... $ac_c" 1>&6 3580 echo "configure:3 581: checking for gethostbyname in -lbind" >&53670 echo "configure:3671: checking for gethostbyname in -lbind" >&5 3581 3671 ac_lib_var=`echo bind'_'gethostbyname | sed 'y%./+-%__p_%'` 3582 3672 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 3586 3676 LIBS="-lbind $LIBS" 3587 3677 cat > conftest.$ac_ext <<EOF 3588 #line 3 589 "configure"3678 #line 3679 "configure" 3589 3679 #include "confdefs.h" 3590 3680 /* Override any gcc2 internal prototype to avoid an error. */ … … 3597 3687 ; return 0; } 3598 3688 EOF 3599 if { (eval echo configure:36 00: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3689 if { (eval echo configure:3690: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3600 3690 rm -rf conftest* 3601 3691 eval "ac_cv_lib_$ac_lib_var=yes" … … 3623 3713 do 3624 3714 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 3625 echo "configure:3 626: checking for $ac_func" >&53715 echo "configure:3716: checking for $ac_func" >&5 3626 3716 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 3627 3717 echo $ac_n "(cached) $ac_c" 1>&6 3628 3718 else 3629 3719 cat > conftest.$ac_ext <<EOF 3630 #line 3 631 "configure"3720 #line 3721 "configure" 3631 3721 #include "confdefs.h" 3632 3722 /* System header to define __stub macros and hopefully few prototypes, … … 3651 3741 ; return 0; } 3652 3742 EOF 3653 if { (eval echo configure:3 654: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3743 if { (eval echo configure:3744: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3654 3744 rm -rf conftest* 3655 3745 eval "ac_cv_func_$ac_func=yes" … … 3673 3763 echo "$ac_t""no" 1>&6 3674 3764 echo $ac_n "checking for nanosleep in -lrt""... $ac_c" 1>&6 3675 echo "configure:3 676: checking for nanosleep in -lrt" >&53765 echo "configure:3766: checking for nanosleep in -lrt" >&5 3676 3766 ac_lib_var=`echo rt'_'nanosleep | sed 'y%./+-%__p_%'` 3677 3767 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 3681 3771 LIBS="-lrt $LIBS" 3682 3772 cat > conftest.$ac_ext <<EOF 3683 #line 3 684 "configure"3773 #line 3774 "configure" 3684 3774 #include "confdefs.h" 3685 3775 /* Override any gcc2 internal prototype to avoid an error. */ … … 3692 3782 ; return 0; } 3693 3783 EOF 3694 if { (eval echo configure:3 695: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3784 if { (eval echo configure:3785: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3695 3785 rm -rf conftest* 3696 3786 eval "ac_cv_lib_$ac_lib_var=yes" … … 3711 3801 echo "$ac_t""no" 1>&6 3712 3802 echo $ac_n "checking for nanosleep in -lposix4""... $ac_c" 1>&6 3713 echo "configure:3 714: checking for nanosleep in -lposix4" >&53803 echo "configure:3804: checking for nanosleep in -lposix4" >&5 3714 3804 ac_lib_var=`echo posix4'_'nanosleep | sed 'y%./+-%__p_%'` 3715 3805 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 3719 3809 LIBS="-lposix4 $LIBS" 3720 3810 cat > conftest.$ac_ext <<EOF 3721 #line 3 722 "configure"3811 #line 3812 "configure" 3722 3812 #include "confdefs.h" 3723 3813 /* Override any gcc2 internal prototype to avoid an error. */ … … 3730 3820 ; return 0; } 3731 3821 EOF 3732 if { (eval echo configure:3 733: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3822 if { (eval echo configure:3823: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3733 3823 rm -rf conftest* 3734 3824 eval "ac_cv_lib_$ac_lib_var=yes" … … 3758 3848 3759 3849 echo $ac_n "checking for inet_aton""... $ac_c" 1>&6 3760 echo "configure:3 761: checking for inet_aton" >&53850 echo "configure:3851: checking for inet_aton" >&5 3761 3851 if eval "test \"`echo '$''{'ac_cv_func_inet_aton'+set}'`\" = set"; then 3762 3852 echo $ac_n "(cached) $ac_c" 1>&6 3763 3853 else 3764 3854 cat > conftest.$ac_ext <<EOF 3765 #line 3 766 "configure"3855 #line 3856 "configure" 3766 3856 #include "confdefs.h" 3767 3857 /* System header to define __stub macros and hopefully few prototypes, … … 3786 3876 ; return 0; } 3787 3877 EOF 3788 if { (eval echo configure:3 789: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3878 if { (eval echo configure:3879: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3789 3879 rm -rf conftest* 3790 3880 eval "ac_cv_func_inet_aton=yes" … … 3805 3895 3806 3896 echo $ac_n "checking for inet_aton in -lresolv""... $ac_c" 1>&6 3807 echo "configure:38 08: checking for inet_aton in -lresolv" >&53897 echo "configure:3898: checking for inet_aton in -lresolv" >&5 3808 3898 ac_lib_var=`echo resolv'_'inet_aton | sed 'y%./+-%__p_%'` 3809 3899 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 3813 3903 LIBS="-lresolv $LIBS" 3814 3904 cat > conftest.$ac_ext <<EOF 3815 #line 3 816 "configure"3905 #line 3906 "configure" 3816 3906 #include "confdefs.h" 3817 3907 /* Override any gcc2 internal prototype to avoid an error. */ … … 3824 3914 ; return 0; } 3825 3915 EOF 3826 if { (eval echo configure:3 827: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3916 if { (eval echo configure:3917: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3827 3917 rm -rf conftest* 3828 3918 eval "ac_cv_lib_$ac_lib_var=yes" … … 3848 3938 3849 3939 echo $ac_n "checking for textdomain""... $ac_c" 1>&6 3850 echo "configure:3 851: checking for textdomain" >&53940 echo "configure:3941: checking for textdomain" >&5 3851 3941 if eval "test \"`echo '$''{'ac_cv_func_textdomain'+set}'`\" = set"; then 3852 3942 echo $ac_n "(cached) $ac_c" 1>&6 3853 3943 else 3854 3944 cat > conftest.$ac_ext <<EOF 3855 #line 3 856 "configure"3945 #line 3946 "configure" 3856 3946 #include "confdefs.h" 3857 3947 /* System header to define __stub macros and hopefully few prototypes, … … 3876 3966 ; return 0; } 3877 3967 EOF 3878 if { (eval echo configure:3 879: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then3968 if { (eval echo configure:3969: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3879 3969 rm -rf conftest* 3880 3970 eval "ac_cv_func_textdomain=yes" … … 3895 3985 3896 3986 echo $ac_n "checking for textdomain in -lintl""... $ac_c" 1>&6 3897 echo "configure:3 898: checking for textdomain in -lintl" >&53987 echo "configure:3988: checking for textdomain in -lintl" >&5 3898 3988 ac_lib_var=`echo intl'_'textdomain | sed 'y%./+-%__p_%'` 3899 3989 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 3903 3993 LIBS="-lintl $LIBS" 3904 3994 cat > conftest.$ac_ext <<EOF 3905 #line 39 06 "configure"3995 #line 3996 "configure" 3906 3996 #include "confdefs.h" 3907 3997 /* Override any gcc2 internal prototype to avoid an error. */ … … 3914 4004 ; return 0; } 3915 4005 EOF 3916 if { (eval echo configure: 3917: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4006 if { (eval echo configure:4007: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3917 4007 rm -rf conftest* 3918 4008 eval "ac_cv_lib_$ac_lib_var=yes" … … 3940 4030 NEED_GETOPT=0 3941 4031 echo $ac_n "checking for getopt_long""... $ac_c" 1>&6 3942 echo "configure: 3943: checking for getopt_long" >&54032 echo "configure:4033: checking for getopt_long" >&5 3943 4033 if eval "test \"`echo '$''{'ac_cv_func_getopt_long'+set}'`\" = set"; then 3944 4034 echo $ac_n "(cached) $ac_c" 1>&6 3945 4035 else 3946 4036 cat > conftest.$ac_ext <<EOF 3947 #line 3948 "configure"4037 #line 4038 "configure" 3948 4038 #include "confdefs.h" 3949 4039 /* System header to define __stub macros and hopefully few prototypes, … … 3968 4058 ; return 0; } 3969 4059 EOF 3970 if { (eval echo configure: 3971: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4060 if { (eval echo configure:4061: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 3971 4061 rm -rf conftest* 3972 4062 eval "ac_cv_func_getopt_long=yes" … … 3990 4080 # FreeBSD has a gnugetopt library for this: 3991 4081 echo $ac_n "checking for getopt_long in -lgnugetopt""... $ac_c" 1>&6 3992 echo "configure: 3993: checking for getopt_long in -lgnugetopt" >&54082 echo "configure:4083: checking for getopt_long in -lgnugetopt" >&5 3993 4083 ac_lib_var=`echo gnugetopt'_'getopt_long | sed 'y%./+-%__p_%'` 3994 4084 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 3998 4088 LIBS="-lgnugetopt $LIBS" 3999 4089 cat > conftest.$ac_ext <<EOF 4000 #line 40 01 "configure"4090 #line 4091 "configure" 4001 4091 #include "confdefs.h" 4002 4092 /* Override any gcc2 internal prototype to avoid an error. */ … … 4009 4099 ; return 0; } 4010 4100 EOF 4011 if { (eval echo configure:4 012: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4101 if { (eval echo configure:4102: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4012 4102 rm -rf conftest* 4013 4103 eval "ac_cv_lib_$ac_lib_var=yes" … … 4037 4127 4038 4128 echo $ac_n "checking return type of signal handlers""... $ac_c" 1>&6 4039 echo "configure:4 040: checking return type of signal handlers" >&54129 echo "configure:4130: checking return type of signal handlers" >&5 4040 4130 if eval "test \"`echo '$''{'ac_cv_type_signal'+set}'`\" = set"; then 4041 4131 echo $ac_n "(cached) $ac_c" 1>&6 4042 4132 else 4043 4133 cat > conftest.$ac_ext <<EOF 4044 #line 4 045 "configure"4134 #line 4135 "configure" 4045 4135 #include "confdefs.h" 4046 4136 #include <sys/types.h> … … 4059 4149 ; return 0; } 4060 4150 EOF 4061 if { (eval echo configure:4 062: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then4151 if { (eval echo configure:4152: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 4062 4152 rm -rf conftest* 4063 4153 ac_cv_type_signal=void … … 4078 4168 4079 4169 echo $ac_n "checking for dlopen in -ldl""... $ac_c" 1>&6 4080 echo "configure:4 081: checking for dlopen in -ldl" >&54170 echo "configure:4171: checking for dlopen in -ldl" >&5 4081 4171 ac_lib_var=`echo dl'_'dlopen | sed 'y%./+-%__p_%'` 4082 4172 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 4086 4176 LIBS="-ldl $LIBS" 4087 4177 cat > conftest.$ac_ext <<EOF 4088 #line 4 089 "configure"4178 #line 4179 "configure" 4089 4179 #include "confdefs.h" 4090 4180 /* Override any gcc2 internal prototype to avoid an error. */ … … 4097 4187 ; return 0; } 4098 4188 EOF 4099 if { (eval echo configure:41 00: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4189 if { (eval echo configure:4190: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4100 4190 rm -rf conftest* 4101 4191 eval "ac_cv_lib_$ac_lib_var=yes" … … 4118 4208 4119 4209 echo $ac_n "checking for cos in -lm""... $ac_c" 1>&6 4120 echo "configure:4 121: checking for cos in -lm" >&54210 echo "configure:4211: checking for cos in -lm" >&5 4121 4211 ac_lib_var=`echo m'_'cos | sed 'y%./+-%__p_%'` 4122 4212 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 4126 4216 LIBS="-lm $LIBS" 4127 4217 cat > conftest.$ac_ext <<EOF 4128 #line 4 129 "configure"4218 #line 4219 "configure" 4129 4219 #include "confdefs.h" 4130 4220 /* Override any gcc2 internal prototype to avoid an error. */ … … 4137 4227 ; return 0; } 4138 4228 EOF 4139 if { (eval echo configure:4 140: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4229 if { (eval echo configure:4230: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4140 4230 rm -rf conftest* 4141 4231 eval "ac_cv_lib_$ac_lib_var=yes" … … 4159 4249 4160 4250 echo $ac_n "checking for pow in -lm""... $ac_c" 1>&6 4161 echo "configure:4 162: checking for pow in -lm" >&54251 echo "configure:4252: checking for pow in -lm" >&5 4162 4252 ac_lib_var=`echo m'_'pow | sed 'y%./+-%__p_%'` 4163 4253 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 4167 4257 LIBS="-lm $LIBS" 4168 4258 cat > conftest.$ac_ext <<EOF 4169 #line 4 170 "configure"4259 #line 4260 "configure" 4170 4260 #include "confdefs.h" 4171 4261 /* Override any gcc2 internal prototype to avoid an error. */ … … 4178 4268 ; return 0; } 4179 4269 EOF 4180 if { (eval echo configure:4 181: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4270 if { (eval echo configure:4271: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4181 4271 rm -rf conftest* 4182 4272 eval "ac_cv_lib_$ac_lib_var=yes" … … 4207 4297 if test "x${THREAD_LIB}" = xerror; then 4208 4298 echo $ac_n "checking for pthread_attr_init in -lpthread""... $ac_c" 1>&6 4209 echo "configure:4 210: checking for pthread_attr_init in -lpthread" >&54299 echo "configure:4300: checking for pthread_attr_init in -lpthread" >&5 4210 4300 ac_lib_var=`echo pthread'_'pthread_attr_init | sed 'y%./+-%__p_%'` 4211 4301 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 4215 4305 LIBS="-lpthread $LIBS" 4216 4306 cat > conftest.$ac_ext <<EOF 4217 #line 4 218 "configure"4307 #line 4308 "configure" 4218 4308 #include "confdefs.h" 4219 4309 /* Override any gcc2 internal prototype to avoid an error. */ … … 4226 4316 ; return 0; } 4227 4317 EOF 4228 if { (eval echo configure:4 229: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4318 if { (eval echo configure:4319: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4229 4319 rm -rf conftest* 4230 4320 eval "ac_cv_lib_$ac_lib_var=yes" … … 4249 4339 if test "x${THREAD_LIB}" = xerror; then 4250 4340 echo $ac_n "checking for pthread_attr_init in -lpthreads""... $ac_c" 1>&6 4251 echo "configure:4 252: checking for pthread_attr_init in -lpthreads" >&54341 echo "configure:4342: checking for pthread_attr_init in -lpthreads" >&5 4252 4342 ac_lib_var=`echo pthreads'_'pthread_attr_init | sed 'y%./+-%__p_%'` 4253 4343 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 4257 4347 LIBS="-lpthreads $LIBS" 4258 4348 cat > conftest.$ac_ext <<EOF 4259 #line 4 260 "configure"4349 #line 4350 "configure" 4260 4350 #include "confdefs.h" 4261 4351 /* Override any gcc2 internal prototype to avoid an error. */ … … 4268 4358 ; return 0; } 4269 4359 EOF 4270 if { (eval echo configure:4 271: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4360 if { (eval echo configure:4361: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4271 4361 rm -rf conftest* 4272 4362 eval "ac_cv_lib_$ac_lib_var=yes" … … 4291 4381 if test "x${THREAD_LIB}" = xerror; then 4292 4382 echo $ac_n "checking for pthread_attr_init in -lc_r""... $ac_c" 1>&6 4293 echo "configure:4 294: checking for pthread_attr_init in -lc_r" >&54383 echo "configure:4384: checking for pthread_attr_init in -lc_r" >&5 4294 4384 ac_lib_var=`echo c_r'_'pthread_attr_init | sed 'y%./+-%__p_%'` 4295 4385 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 4299 4389 LIBS="-lc_r $LIBS" 4300 4390 cat > conftest.$ac_ext <<EOF 4301 #line 43 02 "configure"4391 #line 4392 "configure" 4302 4392 #include "confdefs.h" 4303 4393 /* Override any gcc2 internal prototype to avoid an error. */ … … 4310 4400 ; return 0; } 4311 4401 EOF 4312 if { (eval echo configure:4 313: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4402 if { (eval echo configure:4403: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4313 4403 rm -rf conftest* 4314 4404 eval "ac_cv_lib_$ac_lib_var=yes" … … 4333 4423 if test "x${THREAD_LIB}" = xerror; then 4334 4424 echo $ac_n "checking for pthread_attr_init""... $ac_c" 1>&6 4335 echo "configure:4 336: checking for pthread_attr_init" >&54425 echo "configure:4426: checking for pthread_attr_init" >&5 4336 4426 if eval "test \"`echo '$''{'ac_cv_func_pthread_attr_init'+set}'`\" = set"; then 4337 4427 echo $ac_n "(cached) $ac_c" 1>&6 4338 4428 else 4339 4429 cat > conftest.$ac_ext <<EOF 4340 #line 4 341 "configure"4430 #line 4431 "configure" 4341 4431 #include "confdefs.h" 4342 4432 /* System header to define __stub macros and hopefully few prototypes, … … 4361 4451 ; return 0; } 4362 4452 EOF 4363 if { (eval echo configure:4 364: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4453 if { (eval echo configure:4454: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4364 4454 rm -rf conftest* 4365 4455 eval "ac_cv_func_pthread_attr_init=yes" … … 4384 4474 4385 4475 echo $ac_n "checking for cthread_fork in -lthreads""... $ac_c" 1>&6 4386 echo "configure:4 387: checking for cthread_fork in -lthreads" >&54476 echo "configure:4477: checking for cthread_fork in -lthreads" >&5 4387 4477 ac_lib_var=`echo threads'_'cthread_fork | sed 'y%./+-%__p_%'` 4388 4478 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 4392 4482 LIBS="-lthreads $LIBS" 4393 4483 cat > conftest.$ac_ext <<EOF 4394 #line 4 395 "configure"4484 #line 4485 "configure" 4395 4485 #include "confdefs.h" 4396 4486 /* Override any gcc2 internal prototype to avoid an error. */ … … 4403 4493 ; return 0; } 4404 4494 EOF 4405 if { (eval echo configure:44 06: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then4495 if { (eval echo configure:4496: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 4406 4496 rm -rf conftest* 4407 4497 eval "ac_cv_lib_$ac_lib_var=yes" … … 4425 4515 4426 4516 cat > conftest.$ac_ext <<EOF 4427 #line 4 428 "configure"4517 #line 4518 "configure" 4428 4518 #include "confdefs.h" 4429 4519 #include <pthread.h> … … 4441 4531 4442 4532 cat > conftest.$ac_ext <<EOF 4443 #line 4 444 "configure"4533 #line 4534 "configure" 4444 4534 #include "confdefs.h" 4445 4535 #include <pthread.h> … … 4457 4547 4458 4548 cat > conftest.$ac_ext <<EOF 4459 #line 4 460 "configure"4549 #line 4550 "configure" 4460 4550 #include "confdefs.h" 4461 4551 #include <strings.h> … … 4473 4563 4474 4564 4475 for ac_hdr in stdint.h getopt.h strings.h 4565 for ac_hdr in stdint.h getopt.h strings.h inttypes.h sys/int_types.h 4476 4566 do 4477 4567 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 4478 4568 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 4479 echo "configure:4 480: checking for $ac_hdr" >&54569 echo "configure:4570: checking for $ac_hdr" >&5 4480 4570 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 4481 4571 echo $ac_n "(cached) $ac_c" 1>&6 4482 4572 else 4483 4573 cat > conftest.$ac_ext <<EOF 4484 #line 4 485 "configure"4574 #line 4575 "configure" 4485 4575 #include "confdefs.h" 4486 4576 #include <$ac_hdr> 4487 4577 EOF 4488 4578 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 4489 { (eval echo configure:4 490: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }4579 { (eval echo configure:4580: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 4490 4580 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 4491 4581 if test -z "$ac_err"; then … … 4517 4607 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 4518 4608 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 4519 echo "configure:4 520: checking for $ac_hdr" >&54609 echo "configure:4610: checking for $ac_hdr" >&5 4520 4610 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 4521 4611 echo $ac_n "(cached) $ac_c" 1>&6 4522 4612 else 4523 4613 cat > conftest.$ac_ext <<EOF 4524 #line 4 525 "configure"4614 #line 4615 "configure" 4525 4615 #include "confdefs.h" 4526 4616 #include <$ac_hdr> 4527 4617 EOF 4528 4618 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 4529 { (eval echo configure:4 530: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }4619 { (eval echo configure:4620: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 4530 4620 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 4531 4621 if test -z "$ac_err"; then … … 4557 4647 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 4558 4648 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 4559 echo "configure:4 560: checking for $ac_hdr" >&54649 echo "configure:4650: checking for $ac_hdr" >&5 4560 4650 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 4561 4651 echo $ac_n "(cached) $ac_c" 1>&6 4562 4652 else 4563 4653 cat > conftest.$ac_ext <<EOF 4564 #line 4 565 "configure"4654 #line 4655 "configure" 4565 4655 #include "confdefs.h" 4566 4656 #include <$ac_hdr> 4567 4657 EOF 4568 4658 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 4569 { (eval echo configure:4 570: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }4659 { (eval echo configure:4660: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 4570 4660 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 4571 4661 if test -z "$ac_err"; then … … 4597 4687 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 4598 4688 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 4599 echo "configure:46 00: checking for $ac_hdr" >&54689 echo "configure:4690: checking for $ac_hdr" >&5 4600 4690 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 4601 4691 echo $ac_n "(cached) $ac_c" 1>&6 4602 4692 else 4603 4693 cat > conftest.$ac_ext <<EOF 4604 #line 46 05 "configure"4694 #line 4695 "configure" 4605 4695 #include "confdefs.h" 4606 4696 #include <$ac_hdr> 4607 4697 EOF 4608 4698 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 4609 { (eval echo configure:4 610: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }4699 { (eval echo configure:4700: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 4610 4700 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 4611 4701 if test -z "$ac_err"; then … … 4637 4727 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 4638 4728 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 4639 echo "configure:4 640: checking for $ac_hdr" >&54729 echo "configure:4730: checking for $ac_hdr" >&5 4640 4730 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 4641 4731 echo $ac_n "(cached) $ac_c" 1>&6 4642 4732 else 4643 4733 cat > conftest.$ac_ext <<EOF 4644 #line 4 645 "configure"4734 #line 4735 "configure" 4645 4735 #include "confdefs.h" 4646 4736 #include <$ac_hdr> 4647 4737 EOF 4648 4738 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 4649 { (eval echo configure:4 650: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }4739 { (eval echo configure:4740: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 4650 4740 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 4651 4741 if test -z "$ac_err"; then … … 4677 4767 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 4678 4768 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 4679 echo "configure:4 680: checking for $ac_hdr" >&54769 echo "configure:4770: checking for $ac_hdr" >&5 4680 4770 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 4681 4771 echo $ac_n "(cached) $ac_c" 1>&6 4682 4772 else 4683 4773 cat > conftest.$ac_ext <<EOF 4684 #line 4 685 "configure"4774 #line 4775 "configure" 4685 4775 #include "confdefs.h" 4686 4776 #include <$ac_hdr> 4687 4777 EOF 4688 4778 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 4689 { (eval echo configure:4 690: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }4779 { (eval echo configure:4780: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 4690 4780 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 4691 4781 if test -z "$ac_err"; then … … 4715 4805 4716 4806 echo $ac_n "checking whether time.h and sys/time.h may both be included""... $ac_c" 1>&6 4717 echo "configure:4 718: checking whether time.h and sys/time.h may both be included" >&54807 echo "configure:4808: checking whether time.h and sys/time.h may both be included" >&5 4718 4808 if eval "test \"`echo '$''{'ac_cv_header_time'+set}'`\" = set"; then 4719 4809 echo $ac_n "(cached) $ac_c" 1>&6 4720 4810 else 4721 4811 cat > conftest.$ac_ext <<EOF 4722 #line 4 723 "configure"4812 #line 4813 "configure" 4723 4813 #include "confdefs.h" 4724 4814 #include <sys/types.h> … … 4729 4819 ; return 0; } 4730 4820 EOF 4731 if { (eval echo configure:4 732: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then4821 if { (eval echo configure:4822: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 4732 4822 rm -rf conftest* 4733 4823 ac_cv_header_time=yes … … 4751 4841 4752 4842 cat > conftest.$ac_ext <<EOF 4753 #line 4 754 "configure"4843 #line 4844 "configure" 4754 4844 #include "confdefs.h" 4755 4845 #include <time.h> … … 4769 4859 4770 4860 cat > conftest.$ac_ext <<EOF 4771 #line 4 772 "configure"4861 #line 4862 "configure" 4772 4862 #include "confdefs.h" 4773 4863 #include <sys/time.h> … … 4790 4880 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 4791 4881 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 4792 echo "configure:4 793: checking for $ac_hdr" >&54882 echo "configure:4883: checking for $ac_hdr" >&5 4793 4883 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 4794 4884 echo $ac_n "(cached) $ac_c" 1>&6 4795 4885 else 4796 4886 cat > conftest.$ac_ext <<EOF 4797 #line 4 798 "configure"4887 #line 4888 "configure" 4798 4888 #include "confdefs.h" 4799 4889 #include <$ac_hdr> 4800 4890 EOF 4801 4891 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 4802 { (eval echo configure:48 03: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }4892 { (eval echo configure:4893: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 4803 4893 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 4804 4894 if test -z "$ac_err"; then … … 4840 4930 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 4841 4931 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 4842 echo "configure:4 843: checking for $ac_hdr" >&54932 echo "configure:4933: checking for $ac_hdr" >&5 4843 4933 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 4844 4934 echo $ac_n "(cached) $ac_c" 1>&6 4845 4935 else 4846 4936 cat > conftest.$ac_ext <<EOF 4847 #line 4 848 "configure"4937 #line 4938 "configure" 4848 4938 #include "confdefs.h" 4849 4939 #include <$ac_hdr> 4850 4940 EOF 4851 4941 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 4852 { (eval echo configure:4 853: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }4942 { (eval echo configure:4943: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 4853 4943 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 4854 4944 if test -z "$ac_err"; then … … 4872 4962 4873 4963 cat > conftest.$ac_ext <<EOF 4874 #line 4 875 "configure"4964 #line 4965 "configure" 4875 4965 #include "confdefs.h" 4876 4966 #include <X11/extensions/dpms.h> … … 4898 4988 4899 4989 echo $ac_n "checking for ntohl in sys/param.h""... $ac_c" 1>&6 4900 echo "configure:49 01: checking for ntohl in sys/param.h" >&54990 echo "configure:4991: checking for ntohl in sys/param.h" >&5 4901 4991 if eval "test \"`echo '$''{'ac_cv_c_ntohl_sys_param_h'+set}'`\" = set"; then 4902 4992 echo $ac_n "(cached) $ac_c" 1>&6 … … 4904 4994 CFLAGS="${save_CFLAGS} -Wall -Werror" 4905 4995 cat > conftest.$ac_ext <<EOF 4906 #line 49 07 "configure"4996 #line 4997 "configure" 4907 4997 #include "confdefs.h" 4908 4998 #include <sys/param.h> … … 4911 5001 ; return 0; } 4912 5002 EOF 4913 if { (eval echo configure: 4914: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then5003 if { (eval echo configure:5004: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 4914 5004 rm -rf conftest* 4915 5005 ac_cv_c_ntohl_sys_param_h=yes … … 4932 5022 4933 5023 echo $ac_n "checking if \$CC accepts -finline-limit""... $ac_c" 1>&6 4934 echo "configure: 4935: checking if \$CC accepts -finline-limit" >&55024 echo "configure:5025: checking if \$CC accepts -finline-limit" >&5 4935 5025 if eval "test \"`echo '$''{'ac_cv_c_inline_limit'+set}'`\" = set"; then 4936 5026 echo $ac_n "(cached) $ac_c" 1>&6 … … 4938 5028 CFLAGS="${save_CFLAGS} -finline-limit-30000" 4939 5029 cat > conftest.$ac_ext <<EOF 4940 #line 4941 "configure"5030 #line 5031 "configure" 4941 5031 #include "confdefs.h" 4942 5032 … … 4945 5035 ; return 0; } 4946 5036 EOF 4947 if { (eval echo configure: 4948: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then5037 if { (eval echo configure:5038: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 4948 5038 rm -rf conftest* 4949 5039 ac_cv_c_inline_limit=yes … … 4963 5053 4964 5054 echo $ac_n "checking if \$CC accepts -Wall -Winline""... $ac_c" 1>&6 4965 echo "configure: 4966: checking if \$CC accepts -Wall -Winline" >&55055 echo "configure:5056: checking if \$CC accepts -Wall -Winline" >&5 4966 5056 if eval "test \"`echo '$''{'ac_cv_c_Wall_Winline'+set}'`\" = set"; then 4967 5057 echo $ac_n "(cached) $ac_c" 1>&6 … … 4969 5059 CFLAGS="-Wall -Winline ${save_CFLAGS}" 4970 5060 cat > conftest.$ac_ext <<EOF 4971 #line 4972 "configure"5061 #line 5062 "configure" 4972 5062 #include "confdefs.h" 4973 5063 … … 4976 5066 ; return 0; } 4977 5067 EOF 4978 if { (eval echo configure: 4979: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then5068 if { (eval echo configure:5069: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 4979 5069 rm -rf conftest* 4980 5070 ac_cv_c_Wall_Winline=yes … … 4993 5083 else 4994 5084 echo $ac_n "checking if \$CC accepts -wall -winline""... $ac_c" 1>&6 4995 echo "configure: 4996: checking if \$CC accepts -wall -winline" >&55085 echo "configure:5086: checking if \$CC accepts -wall -winline" >&5 4996 5086 if eval "test \"`echo '$''{'ac_cv_c_wall_winline'+set}'`\" = set"; then 4997 5087 echo $ac_n "(cached) $ac_c" 1>&6 … … 4999 5089 CFLAGS="-wall -winline ${save_CFLAGS}" 5000 5090 cat > conftest.$ac_ext <<EOF 5001 #line 50 02 "configure"5091 #line 5092 "configure" 5002 5092 #include "confdefs.h" 5003 5093 … … 5006 5096 ; return 0; } 5007 5097 EOF 5008 if { (eval echo configure:50 09: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then5098 if { (eval echo configure:5099: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 5009 5099 rm -rf conftest* 5010 5100 ac_cv_c_wall_winline=yes … … 5025 5115 5026 5116 echo $ac_n "checking if \$CC accepts -pipe""... $ac_c" 1>&6 5027 echo "configure:5 028: checking if \$CC accepts -pipe" >&55117 echo "configure:5118: checking if \$CC accepts -pipe" >&5 5028 5118 if eval "test \"`echo '$''{'ac_cv_c_pipe'+set}'`\" = set"; then 5029 5119 echo $ac_n "(cached) $ac_c" 1>&6 … … 5031 5121 CFLAGS="${save_CFLAGS} -pipe" 5032 5122 cat > conftest.$ac_ext <<EOF 5033 #line 5 034 "configure"5123 #line 5124 "configure" 5034 5124 #include "confdefs.h" 5035 5125 … … 5038 5128 ; return 0; }
