Changeset 22b05cefc618ed1601e1c42908179a307dcab743
- Timestamp:
- 04/03/02 01:27:07
(6 years ago)
- Author:
- Gildas Bazin <gbazin@videolan.org>
- git-committer:
- Gildas Bazin <gbazin@videolan.org> 1017790027 +0000
- git-parent:
[ad14a89d0fbcca30225e6d33c6f40c35e7eb45e4]
- git-author:
- Gildas Bazin <gbazin@videolan.org> 1017790027 +0000
- Message:
* Got rid of the DVD_DEVICE macro. We now use the dvd_device config option.
( this creates a small memory leak as we don't free the string obtained
from config_GetPszVariable, but I think we can live with it for now )
* the SSE plugins are disable on the mingw32 build as they don't work.
( because memalign is not implemented on win32, and malloc only aligns
on an 8 bytes boundary )
* fixed small mistake in INSTALL.win32
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r4313827 |
r22b05ce |
|
| 77 | 77 | make distclean ; \ |
|---|
| 78 | 78 | ./configure --host=i586-mingw32msvc --target=i586-mingw32msvc \ |
|---|
| | 79 | --build=i386-linux \ |
|---|
| 79 | 80 | --with-gtk-config-path=/usr/local/gtk-win32/bin \ |
|---|
| 80 | 81 | --with-sdl-config-path=/usr/local/SDL-1.2.3-win32/i386-mingw32msvc/bin \ |
|---|
| … | … | |
| 87 | 88 | PATH=/usr/local/cross-tools/bin:$PATH \ |
|---|
| 88 | 89 | ./configure --host=i586-mingw32msvc --target=i586-mingw32msvc \ |
|---|
| | 90 | --build=i386-linux \ |
|---|
| 89 | 91 | --with-gtk-config-path=/usr/local/gtk-win32/bin \ |
|---|
| 90 | 92 | --with-sdl-config-path=/usr/local/SDL-1.2.3-win32/i386-mingw32msvc/bin \ |
|---|
| r75824aa |
r22b05ce |
|
| 5653 | 5653 | MMXEXT_MODULES="memcpymmxext idctmmxext motionmmxext" |
|---|
| 5654 | 5654 | THREEDNOW_MODULES="memcpy3dn imdct3dn downmix3dn" |
|---|
| | 5655 | if test x$SYS != xmingw32; then |
|---|
| 5655 | 5656 | SSE_MODULES="imdctsse downmixsse" |
|---|
| | 5657 | fi |
|---|
| 5656 | 5658 | ALTIVEC_MODULES="idctaltivec motionaltivec memcpyaltivec" |
|---|
| 5657 | 5659 | |
|---|
| 5658 | 5660 | echo $ac_n "checking if \$CC groks MMX inline assembly""... $ac_c" 1>&6 |
|---|
| 5659 | | echo "configure:5660: checking if \$CC groks MMX inline assembly" >&5 |
|---|
| | 5661 | echo "configure:5662: checking if \$CC groks MMX inline assembly" >&5 |
|---|
| 5660 | 5662 | if eval "test \"`echo '$''{'ac_cv_mmx_inline'+set}'`\" = set"; then |
|---|
| 5661 | 5663 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 5662 | 5664 | else |
|---|
| 5663 | 5665 | cat > conftest.$ac_ext <<EOF |
|---|
| 5664 | | #line 5665 "configure" |
|---|
| | 5666 | #line 5667 "configure" |
|---|
| 5665 | 5667 | #include "confdefs.h" |
|---|
| 5666 | 5668 | |
|---|
| … | … | |
| 5669 | 5671 | ; return 0; } |
|---|
| 5670 | 5672 | EOF |
|---|
| 5671 | | if { (eval echo configure:5672: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
|---|
| | 5673 | if { (eval echo configure:5674: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
|---|
| 5672 | 5674 | rm -rf conftest* |
|---|
| 5673 | 5675 | ac_cv_mmx_inline=yes |
|---|
| … | … | |
| 5687 | 5689 | |
|---|
| 5688 | 5690 | echo $ac_n "checking if \$CC groks MMX EXT inline assembly""... $ac_c" 1>&6 |
|---|
| 5689 | | echo "configure:5690: checking if \$CC groks MMX EXT inline assembly" >&5 |
|---|
| | 5691 | echo "configure:5692: checking if \$CC groks MMX EXT inline assembly" >&5 |
|---|
| 5690 | 5692 | if eval "test \"`echo '$''{'ac_cv_mmxext_inline'+set}'`\" = set"; then |
|---|
| 5691 | 5693 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 5692 | 5694 | else |
|---|
| 5693 | 5695 | cat > conftest.$ac_ext <<EOF |
|---|
| 5694 | | #line 5695 "configure" |
|---|
| | 5696 | #line 5697 "configure" |
|---|
| 5695 | 5697 | #include "confdefs.h" |
|---|
| 5696 | 5698 | |
|---|
| … | … | |
| 5699 | 5701 | ; return 0; } |
|---|
| 5700 | 5702 | EOF |
|---|
| 5701 | | if { (eval echo configure:5702: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
|---|
| | 5703 | if { (eval echo configure:5704: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
|---|
| 5702 | 5704 | rm -rf conftest* |
|---|
| 5703 | 5705 | ac_cv_mmxext_inline=yes |
|---|
| … | … | |
| 5717 | 5719 | |
|---|
| 5718 | 5720 | echo $ac_n "checking if \$CC groks 3D Now! inline assembly""... $ac_c" 1>&6 |
|---|
| 5719 | | echo "configure:5720: checking if \$CC groks 3D Now! inline assembly" >&5 |
|---|
| | 5721 | echo "configure:5722: checking if \$CC groks 3D Now! inline assembly" >&5 |
|---|
| 5720 | 5722 | if eval "test \"`echo '$''{'ac_cv_3dnow_inline'+set}'`\" = set"; then |
|---|
| 5721 | 5723 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 5722 | 5724 | else |
|---|
| 5723 | 5725 | cat > conftest.$ac_ext <<EOF |
|---|
| 5724 | | #line 5725 "configure" |
|---|
| | 5726 | #line 5727 "configure" |
|---|
| 5725 | 5727 | #include "confdefs.h" |
|---|
| 5726 | 5728 | |
|---|
| … | … | |
| 5729 | 5731 | ; return 0; } |
|---|
| 5730 | 5732 | EOF |
|---|
| 5731 | | if { (eval echo configure:5732: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
|---|
| | 5733 | if { (eval echo configure:5734: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
|---|
| 5732 | 5734 | rm -rf conftest* |
|---|
| 5733 | 5735 | ac_cv_3dnow_inline=yes |
|---|
| … | … | |
| 5751 | 5753 | |
|---|
| 5752 | 5754 | echo $ac_n "checking if \$CC groks SSE inline assembly""... $ac_c" 1>&6 |
|---|
| 5753 | | echo "configure:5754: checking if \$CC groks SSE inline assembly" >&5 |
|---|
| | 5755 | echo "configure:5756: checking if \$CC groks SSE inline assembly" >&5 |
|---|
| 5754 | 5756 | if eval "test \"`echo '$''{'ac_cv_sse_inline'+set}'`\" = set"; then |
|---|
| 5755 | 5757 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 5756 | 5758 | else |
|---|
| 5757 | 5759 | cat > conftest.$ac_ext <<EOF |
|---|
| 5758 | | #line 5759 "configure" |
|---|
| | 5760 | #line 5761 "configure" |
|---|
| 5759 | 5761 | #include "confdefs.h" |
|---|
| 5760 | 5762 | |
|---|
| … | … | |
| 5763 | 5765 | ; return 0; } |
|---|
| 5764 | 5766 | EOF |
|---|
| 5765 | | if { (eval echo configure:5766: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
|---|
| | 5767 | if { (eval echo configure:5768: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
|---|
| 5766 | 5768 | rm -rf conftest* |
|---|
| 5767 | 5769 | ac_cv_sse_inline=yes |
|---|
| … | … | |
| 5788 | 5790 | if test x$SYS != xmingw32; then |
|---|
| 5789 | 5791 | echo $ac_n "checking if \$CC groks Altivec inline assembly""... $ac_c" 1>&6 |
|---|
| 5790 | | echo "configure:5791: checking if \$CC groks Altivec inline assembly" >&5 |
|---|
| | 5792 | echo "configure:5793: checking if \$CC groks Altivec inline assembly" >&5 |
|---|
| 5791 | 5793 | if eval "test \"`echo '$''{'ac_cv_altivec_inline'+set}'`\" = set"; then |
|---|
| 5792 | 5794 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 5793 | 5795 | else |
|---|
| 5794 | 5796 | cat > conftest.$ac_ext <<EOF |
|---|
| 5795 | | #line 5796 "configure" |
|---|
| | 5797 | #line 5798 "configure" |
|---|
| 5796 | 5798 | #include "confdefs.h" |
|---|
| 5797 | 5799 | |
|---|
| … | … | |
| 5800 | 5802 | ; return 0; } |
|---|
| 5801 | 5803 | EOF |
|---|
| 5802 | | if { (eval echo configure:5803: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
|---|
| | 5804 | if { (eval echo configure:5805: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
|---|
| 5803 | 5805 | rm -rf conftest* |
|---|
| 5804 | 5806 | ac_cv_altivec_inline=yes |
|---|
| … | … | |
| 5810 | 5812 | CFLAGS="$CFLAGS -Wa,-m7400" |
|---|
| 5811 | 5813 | cat > conftest.$ac_ext <<EOF |
|---|
| 5812 | | #line 5813 "configure" |
|---|
| | 5814 | #line 5815 "configure" |
|---|
| 5813 | 5815 | #include "confdefs.h" |
|---|
| 5814 | 5816 | |
|---|
| … | … | |
| 5817 | 5819 | ; return 0; } |
|---|
| 5818 | 5820 | EOF |
|---|
| 5819 | | if { (eval echo configure:5820: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
|---|
| | 5821 | if { (eval echo configure:5822: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
|---|
| 5820 | 5822 | rm -rf conftest* |
|---|
| 5821 | 5823 | ac_cv_altivec_inline="-Wa,-m7400" |
|---|
| … | … | |
| 5848 | 5850 | |
|---|
| 5849 | 5851 | echo $ac_n "checking if \$CC groks Altivec C extensions""... $ac_c" 1>&6 |
|---|
| 5850 | | echo "configure:5851: checking if \$CC groks Altivec C extensions" >&5 |
|---|
| | 5852 | echo "configure:5853: checking if \$CC groks Altivec C extensions" >&5 |
|---|
| 5851 | 5853 | if eval "test \"`echo '$''{'ac_cv_c_altivec'+set}'`\" = set"; then |
|---|
| 5852 | 5854 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| … | … | |
| 5856 | 5858 | # Darwin test |
|---|
| 5857 | 5859 | cat > conftest.$ac_ext <<EOF |
|---|
| 5858 | | #line 5859 "configure" |
|---|
| | 5860 | #line 5861 "configure" |
|---|
| 5859 | 5861 | #include "confdefs.h" |
|---|
| 5860 | 5862 | |
|---|
| … | … | |
| 5863 | 5865 | ; return 0; } |
|---|
| 5864 | 5866 | EOF |
|---|
| 5865 | | if { (eval echo configure:5866: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
|---|
| | 5867 | if { (eval echo configure:5868: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
|---|
| 5866 | 5868 | rm -rf conftest* |
|---|
| 5867 | 5869 | ac_cv_c_altivec=-faltivec |
|---|
| … | … | |
| 5874 | 5876 | CFLAGS="$save_CFLAGS $CFLAGS_IDCTALTIVEC -fvec" |
|---|
| 5875 | 5877 | cat > conftest.$ac_ext <<EOF |
|---|
| 5876 | | #line 5877 "configure" |
|---|
| | 5878 | #line 5879 "configure" |
|---|
| 5877 | 5879 | #include "confdefs.h" |
|---|
| 5878 | 5880 | |
|---|
| … | … | |
| 5881 | 5883 | ; return 0; } |
|---|
| 5882 | 5884 | EOF |
|---|
| 5883 | | if { (eval echo configure:5884: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
|---|
| | 5885 | if { (eval echo configure:5886: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
|---|
| 5884 | 5886 | rm -rf conftest* |
|---|
| 5885 | 5887 | ac_cv_c_altivec="-fvec" |
|---|
| … | … | |
| 5911 | 5913 | |
|---|
| 5912 | 5914 | echo $ac_n "checking if linker needs -framework vecLib""... $ac_c" 1>&6 |
|---|
| 5913 | | echo "configure:5914: checking if linker needs -framework vecLib" >&5 |
|---|
| | 5915 | echo "configure:5916: checking if linker needs -framework vecLib" >&5 |
|---|
| 5914 | 5916 | if eval "test \"`echo '$''{'ac_cv_ld_altivec'+set}'`\" = set"; then |
|---|
| 5915 | 5917 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| … | … | |
| 5918 | 5920 | LDFLAGS="$LDFLAGS -framework vecLib" |
|---|
| 5919 | 5921 | cat > conftest.$ac_ext <<EOF |
|---|
| 5920 | | #line 5921 "configure" |
|---|
| | 5922 | #line 5923 "configure" |
|---|
| 5921 | 5923 | #include "confdefs.h" |
|---|
| 5922 | 5924 | |
|---|
| … | … | |
| 5925 | 5927 | ; return 0; } |
|---|
| 5926 | 5928 | EOF |
|---|
| 5927 | | if { (eval echo configure:5928: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| | 5929 | if { (eval echo configure:5930: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| 5928 | 5930 | rm -rf conftest* |
|---|
| 5929 | 5931 | ac_cv_ld_altivec=yes |
|---|
| … | … | |
| 5947 | 5949 | fi # end if mingw32 |
|---|
| 5948 | 5950 | |
|---|
| 5949 | | case x$SYS in |
|---|
| 5950 | | xmingw32) |
|---|
| 5951 | | DVD_DEVICE="E:" |
|---|
| 5952 | | VCD_DEVICE="E:" |
|---|
| 5953 | | ;; |
|---|
| 5954 | | *) |
|---|
| 5955 | | DVD_DEVICE="/dev/dvd" |
|---|
| 5956 | | VCD_DEVICE="/dev/cdrom" |
|---|
| 5957 | | ;; |
|---|
| 5958 | | esac |
|---|
| 5959 | | |
|---|
| 5960 | | cat >> confdefs.h <<EOF |
|---|
| 5961 | | #define DVD_DEVICE "$DVD_DEVICE" |
|---|
| 5962 | | EOF |
|---|
| 5963 | | |
|---|
| 5964 | | cat >> confdefs.h <<EOF |
|---|
| 5965 | | #define VCD_DEVICE "$VCD_DEVICE" |
|---|
| 5966 | | EOF |
|---|
| 5967 | | |
|---|
| 5968 | | |
|---|
| 5969 | 5951 | |
|---|
| 5970 | 5952 | |
|---|
| … | … | |
| 5975 | 5957 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 5976 | 5958 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 5977 | | echo "configure:5978: checking for $ac_hdr" >&5 |
|---|
| | 5959 | echo "configure:5960: checking for $ac_hdr" >&5 |
|---|
| 5978 | 5960 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 5979 | 5961 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 5980 | 5962 | else |
|---|
| 5981 | 5963 | cat > conftest.$ac_ext <<EOF |
|---|
| 5982 | | #line 5983 "configure" |
|---|
| | 5964 | #line 5965 "configure" |
|---|
| 5983 | 5965 | #include "confdefs.h" |
|---|
| 5984 | 5966 | #include <$ac_hdr> |
|---|
| 5985 | 5967 | EOF |
|---|
| 5986 | 5968 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 5987 | | { (eval echo configure:5988: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 5969 | { (eval echo configure:5970: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 5988 | 5970 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 5989 | 5971 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 6018 | 6000 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 6019 | 6001 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 6020 | | echo "configure:6021: checking for $ac_hdr" >&5 |
|---|
| | 6002 | echo "configure:6003: checking for $ac_hdr" >&5 |
|---|
| 6021 | 6003 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 6022 | 6004 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 6023 | 6005 | else |
|---|
| 6024 | 6006 | cat > conftest.$ac_ext <<EOF |
|---|
| 6025 | | #line 6026 "configure" |
|---|
| | 6007 | #line 6008 "configure" |
|---|
| 6026 | 6008 | #include "confdefs.h" |
|---|
| 6027 | 6009 | #include <$ac_hdr> |
|---|
| 6028 | 6010 | EOF |
|---|
| 6029 | 6011 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 6030 | | { (eval echo configure:6031: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 6012 | { (eval echo configure:6013: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 6031 | 6013 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 6032 | 6014 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 6054 | 6036 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 6055 | 6037 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 6056 | | echo "configure:6057: checking for $ac_hdr" >&5 |
|---|
| | 6038 | echo "configure:6039: checking for $ac_hdr" >&5 |
|---|
| 6057 | 6039 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 6058 | 6040 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 6059 | 6041 | else |
|---|
| 6060 | 6042 | cat > conftest.$ac_ext <<EOF |
|---|
| 6061 | | #line 6062 "configure" |
|---|
| | 6043 | #line 6044 "configure" |
|---|
| 6062 | 6044 | #include "confdefs.h" |
|---|
| 6063 | 6045 | #include <$ac_hdr> |
|---|
| 6064 | 6046 | EOF |
|---|
| 6065 | 6047 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 6066 | | { (eval echo configure:6067: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 6048 | { (eval echo configure:6049: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 6067 | 6049 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 6068 | 6050 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 6094 | 6076 | OPENBSD_DVD_STRUCT=0 |
|---|
| 6095 | 6077 | cat > conftest.$ac_ext <<EOF |
|---|
| 6096 | | #line 6097 "configure" |
|---|
| | 6078 | #line 6079 "configure" |
|---|
| 6097 | 6079 | #include "confdefs.h" |
|---|
| 6098 | 6080 | #include <sys/cdio.h> |
|---|
| … | … | |
| 6107 | 6089 | |
|---|
| 6108 | 6090 | cat > conftest.$ac_ext <<EOF |
|---|
| 6109 | | #line 6110 "configure" |
|---|
| | 6091 | #line 6092 "configure" |
|---|
| 6110 | 6092 | #include "confdefs.h" |
|---|
| 6111 | 6093 | #include <sys/cdio.h> |
|---|
| … | … | |
| 6127 | 6109 | |
|---|
| 6128 | 6110 | cat > conftest.$ac_ext <<EOF |
|---|
| 6129 | | #line 6130 "configure" |
|---|
| | 6111 | #line 6112 "configure" |
|---|
| 6130 | 6112 | #include "confdefs.h" |
|---|
| 6131 | 6113 | #include <sys/dvdio.h> |
|---|
| … | … | |
| 6140 | 6122 | |
|---|
| 6141 | 6123 | cat > conftest.$ac_ext <<EOF |
|---|
| 6142 | | #line 6143 "configure" |
|---|
| | 6124 | #line 6125 "configure" |
|---|
| 6143 | 6125 | #include "confdefs.h" |
|---|
| 6144 | 6126 | #include <sys/dvdio.h> |
|---|
| … | … | |
| 6160 | 6142 | |
|---|
| 6161 | 6143 | cat > conftest.$ac_ext <<EOF |
|---|
| 6162 | | #line 6163 "configure" |
|---|
| | 6144 | #line 6145 "configure" |
|---|
| 6163 | 6145 | #include "confdefs.h" |
|---|
| 6164 | 6146 | #include <linux/cdrom.h> |
|---|
| … | … | |
| 6179 | 6161 | NEED_BSDI_LIBDVD=0 |
|---|
| 6180 | 6162 | cat > conftest.$ac_ext <<EOF |
|---|
| 6181 | | #line 6182 "configure" |
|---|
| | 6163 | #line 6164 "configure" |
|---|
| 6182 | 6164 | #include "confdefs.h" |
|---|
| 6183 | 6165 | #include <dvd.h> |
|---|
| … | … | |
| 6201 | 6183 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 6202 | 6184 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 6203 | | echo "configure:6204: checking for $ac_hdr" >&5 |
|---|
| | 6185 | echo "configure:6186: checking for $ac_hdr" >&5 |
|---|
| 6204 | 6186 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 6205 | 6187 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 6206 | 6188 | else |
|---|
| 6207 | 6189 | cat > conftest.$ac_ext <<EOF |
|---|
| 6208 | | #line 6209 "configure" |
|---|
| | 6190 | #line 6191 "configure" |
|---|
| 6209 | 6191 | #include "confdefs.h" |
|---|
| 6210 | 6192 | #include <$ac_hdr> |
|---|
| 6211 | 6193 | EOF |
|---|
| 6212 | 6194 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 6213 | | { (eval echo configure:6214: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 6195 | { (eval echo configure:6196: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 6214 | 6196 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 6215 | 6197 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 6251 | 6233 | ac_safe=`echo "sys/scsi/scsi_types.h" | sed 'y%./+-%__p_%'` |
|---|
| 6252 | 6234 | echo $ac_n "checking for sys/scsi/scsi_types.h""... $ac_c" 1>&6 |
|---|
| 6253 | | echo "configure:6254: checking for sys/scsi/scsi_types.h" >&5 |
|---|
| | 6235 | echo "configure:6236: checking for sys/scsi/scsi_types.h" >&5 |
|---|
| 6254 | 6236 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 6255 | 6237 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 6256 | 6238 | else |
|---|
| 6257 | 6239 | cat > conftest.$ac_ext <<EOF |
|---|
| 6258 | | #line 6259 "configure" |
|---|
| | 6240 | #line 6241 "configure" |
|---|
| 6259 | 6241 | #include "confdefs.h" |
|---|
| 6260 | 6242 | #include <sys/scsi/scsi_types.h> |
|---|
| 6261 | 6243 | EOF |
|---|
| 6262 | 6244 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 6263 | | { (eval echo configure:6264: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 6245 | { (eval echo configure:6246: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 6264 | 6246 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 6265 | 6247 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 6280 | 6262 | ac_safe=`echo "sys/scsi/impl/uscsi.h" | sed 'y%./+-%__p_%'` |
|---|
| 6281 | 6263 | echo $ac_n "checking for sys/scsi/impl/uscsi.h""... $ac_c" 1>&6 |
|---|
| 6282 | | echo "configure:6283: checking for sys/scsi/impl/uscsi.h" >&5 |
|---|
| | 6264 | echo "configure:6265: checking for sys/scsi/impl/uscsi.h" >&5 |
|---|
| 6283 | 6265 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 6284 | 6266 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 6285 | 6267 | else |
|---|
| 6286 | 6268 | cat > conftest.$ac_ext <<EOF |
|---|
| 6287 | | #line 6288 "configure" |
|---|
| | 6269 | #line 6270 "configure" |
|---|
| 6288 | 6270 | #include "confdefs.h" |
|---|
| 6289 | 6271 | #include <sys/scsi/impl/uscsi.h> |
|---|
| 6290 | 6272 | EOF |
|---|
| 6291 | 6273 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 6292 | | { (eval echo configure:6293: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 6274 | { (eval echo configure:6275: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 6293 | 6275 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 6294 | 6276 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 6323 | 6305 | ac_safe=`echo "sys/scsi.h" | sed 'y%./+-%__p_%'` |
|---|
| 6324 | 6306 | echo $ac_n "checking for sys/scsi.h""... $ac_c" 1>&6 |
|---|
| 6325 | | echo "configure:6326: checking for sys/scsi.h" >&5 |
|---|
| | 6307 | echo "configure:6308: checking for sys/scsi.h" >&5 |
|---|
| 6326 | 6308 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 6327 | 6309 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 6328 | 6310 | else |
|---|
| 6329 | 6311 | cat > conftest.$ac_ext <<EOF |
|---|
| 6330 | | #line 6331 "configure" |
|---|
| | 6312 | #line 6313 "configure" |
|---|
| 6331 | 6313 | #include "confdefs.h" |
|---|
| 6332 | 6314 | #include <sys/scsi.h> |
|---|
| 6333 | 6315 | EOF |
|---|
| 6334 | 6316 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 6335 | | { (eval echo configure:6336: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 6317 | { (eval echo configure:6318: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 6336 | 6318 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 6337 | 6319 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 6351 | 6333 | |
|---|
| 6352 | 6334 | cat > conftest.$ac_ext <<EOF |
|---|
| 6353 | | #line 6354 "configure" |
|---|
| | 6335 | #line 6336 "configure" |
|---|
| 6354 | 6336 | #include "confdefs.h" |
|---|
| 6355 | 6337 | #include <sys/scsi.h> |
|---|
| … | … | |
| 6613 | 6595 | then |
|---|
| 6614 | 6596 | cat > conftest.$ac_ext <<EOF |
|---|
| 6615 | | #line 6616 "configure" |
|---|
| | 6597 | #line 6598 "configure" |
|---|
| 6616 | 6598 | #include "confdefs.h" |
|---|
| 6617 | 6599 | #include <linux/cdrom.h> |
|---|
| … | … | |
| 6654 | 6636 | |
|---|
| 6655 | 6637 | echo $ac_n "checking for inet_pton""... $ac_c" 1>&6 |
|---|
| 6656 | | echo "configure:6657: checking for inet_pton" >&5 |
|---|
| | 6638 | echo "configure:6639: checking for inet_pton" >&5 |
|---|
| 6657 | 6639 | if eval "test \"`echo '$''{'ac_cv_func_inet_pton'+set}'`\" = set"; then |
|---|
| 6658 | 6640 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 6659 | 6641 | else |
|---|
| 6660 | 6642 | cat > conftest.$ac_ext <<EOF |
|---|
| 6661 | | #line 6662 "configure" |
|---|
| | 6643 | #line 6644 "configure" |
|---|
| 6662 | 6644 | #include "confdefs.h" |
|---|
| 6663 | 6645 | /* System header to define __stub macros and hopefully few prototypes, |
|---|
| … | … | |
| 6682 | 6664 | ; return 0; } |
|---|
| 6683 | 6665 | EOF |
|---|
| 6684 | | if { (eval echo configure:6685: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| | 6666 | if { (eval echo configure:6667: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| 6685 | 6667 | rm -rf conftest* |
|---|
| 6686 | 6668 | eval "ac_cv_func_inet_pton=yes" |
|---|
| … | … | |
| 6738 | 6720 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 6739 | 6721 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 6740 | | echo "configure:6741: checking for $ac_hdr" >&5 |
|---|
| | 6722 | echo "configure:6723: checking for $ac_hdr" >&5 |
|---|
| 6741 | 6723 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 6742 | 6724 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 6743 | 6725 | else |
|---|
| 6744 | 6726 | cat > conftest.$ac_ext <<EOF |
|---|
| 6745 | | #line 6746 "configure" |
|---|
| | 6727 | #line 6728 "configure" |
|---|
| 6746 | 6728 | #include "confdefs.h" |
|---|
| 6747 | 6729 | #include <$ac_hdr> |
|---|
| 6748 | 6730 | EOF |
|---|
| 6749 | 6731 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 6750 | | { (eval echo configure:6751: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 6732 | { (eval echo configure:6733: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 6751 | 6733 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 6752 | 6734 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 6778 | 6760 | |
|---|
| 6779 | 6761 | echo $ac_n "checking for mad_bit_init in -lmad""... $ac_c" 1>&6 |
|---|
| 6780 | | echo "configure:6781: checking for mad_bit_init in -lmad" >&5 |
|---|
| | 6762 | echo "configure:6763: checking for mad_bit_init in -lmad" >&5 |
|---|
| 6781 | 6763 | ac_lib_var=`echo mad'_'mad_bit_init | sed 'y%./+-%__p_%'` |
|---|
| 6782 | 6764 | if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then |
|---|
| … | … | |
| 6786 | 6768 | LIBS="-lmad $LIBS" |
|---|
| 6787 | 6769 | cat > conftest.$ac_ext <<EOF |
|---|
| 6788 | | #line 6789 "configure" |
|---|
| | 6770 | #line 6771 "configure" |
|---|
| 6789 | 6771 | #include "confdefs.h" |
|---|
| 6790 | 6772 | /* Override any gcc2 internal prototype to avoid an error. */ |
|---|
| … | … | |
| 6797 | 6779 | ; return 0; } |
|---|
| 6798 | 6780 | EOF |
|---|
| 6799 | | if { (eval echo configure:6800: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| | 6781 | if { (eval echo configure:6782: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| 6800 | 6782 | rm -rf conftest* |
|---|
| 6801 | 6783 | eval "ac_cv_lib_$ac_lib_var=yes" |
|---|
| … | … | |
| 6849 | 6831 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 6850 | 6832 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 6851 | | echo "configure:6852: checking for $ac_hdr" >&5 |
|---|
| | 6833 | echo "configure:6834: checking for $ac_hdr" >&5 |
|---|
| 6852 | 6834 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 6853 | 6835 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 6854 | 6836 | else |
|---|
| 6855 | 6837 | cat > conftest.$ac_ext <<EOF |
|---|
| 6856 | | #line 6857 "configure" |
|---|
| | 6838 | #line 6839 "configure" |
|---|
| 6857 | 6839 | #include "confdefs.h" |
|---|
| 6858 | 6840 | #include <$ac_hdr> |
|---|
| 6859 | 6841 | EOF |
|---|
| 6860 | 6842 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 6861 | | { (eval echo configure:6862: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 6843 | { (eval echo configure:6844: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 6862 | 6844 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 6863 | 6845 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 6918 | 6900 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 6919 | 6901 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 6920 | | echo "configure:6921: checking for $ac_hdr" >&5 |
|---|
| | 6902 | echo "configure:6903: checking for $ac_hdr" >&5 |
|---|
| 6921 | 6903 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 6922 | 6904 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 6923 | 6905 | else |
|---|
| 6924 | 6906 | cat > conftest.$ac_ext <<EOF |
|---|
| 6925 | | #line 6926 "configure" |
|---|
| | 6907 | #line 6908 "configure" |
|---|
| 6926 | 6908 | #include "confdefs.h" |
|---|
| 6927 | 6909 | #include <$ac_hdr> |
|---|
| 6928 | 6910 | EOF |
|---|
| 6929 | 6911 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 6930 | | { (eval echo configure:6931: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 6912 | { (eval echo configure:6913: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 6931 | 6913 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 6932 | 6914 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 6981 | 6963 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 6982 | 6964 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 6983 | | echo "configure:6984: checking for $ac_hdr" >&5 |
|---|
| | 6965 | echo "configure:6966: checking for $ac_hdr" >&5 |
|---|
| 6984 | 6966 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 6985 | 6967 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 6986 | 6968 | else |
|---|
| 6987 | 6969 | cat > conftest.$ac_ext <<EOF |
|---|
| 6988 | | #line 6989 "configure" |
|---|
| | 6970 | #line 6971 "configure" |
|---|
| 6989 | 6971 | #include "confdefs.h" |
|---|
| 6990 | 6972 | #include <$ac_hdr> |
|---|
| 6991 | 6973 | EOF |
|---|
| 6992 | 6974 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 6993 | | { (eval echo configure:6994: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 6975 | { (eval echo configure:6976: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 6994 | 6976 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 6995 | 6977 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 7015 | 6997 | CFLAGS="$CFLAGS -L$x_libraries -lX11 -lXext" |
|---|
| 7016 | 6998 | echo $ac_n "checking for XvSetPortAttribute in -lXv_pic""... $ac_c" 1>&6 |
|---|
| 7017 | | echo "configure:7018: checking for XvSetPortAttribute in -lXv_pic" >&5 |
|---|
| | 6999 | echo "configure:7000: checking for XvSetPortAttribute in -lXv_pic" >&5 |
|---|
| 7018 | 7000 | ac_lib_var=`echo Xv_pic'_'XvSetPortAttribute | sed 'y%./+-%__p_%'` |
|---|
| 7019 | 7001 | if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then |
|---|
| … | … | |
| 7023 | 7005 | LIBS="-lXv_pic $LIBS" |
|---|
| 7024 | 7006 | cat > conftest.$ac_ext <<EOF |
|---|
| 7025 | | #line 7026 "configure" |
|---|
| | 7007 | #line 7008 "configure" |
|---|
| 7026 | 7008 | #include "confdefs.h" |
|---|
| 7027 | 7009 | /* Override any gcc2 internal prototype to avoid an error. */ |
|---|
| … | … | |
| 7034 | 7016 | ; return 0; } |
|---|
| 7035 | 7017 | EOF |
|---|
| 7036 | | if { (eval echo configure:7037: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| | 7018 | if { (eval echo configure:7019: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| 7037 | 7019 | rm -rf conftest* |
|---|
| 7038 | 7020 | eval "ac_cv_lib_$ac_lib_var=yes" |
|---|
| … | … | |
| 7092 | 7074 | set dummy sdl12-config; ac_word=$2 |
|---|
| 7093 | 7075 | echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 |
|---|
| 7094 | | echo "configure:7095: checking for $ac_word" >&5 |
|---|
| | 7076 | echo "configure:7077: checking for $ac_word" >&5 |
|---|
| 7095 | 7077 | if eval "test \"`echo '$''{'ac_cv_path_SDL12_CONFIG'+set}'`\" = set"; then |
|---|
| 7096 | 7078 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| … | … | |
| 7132 | 7114 | set dummy sdl11-config; ac_word=$2 |
|---|
| 7133 | 7115 | echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 |
|---|
| 7134 | | echo "configure:7135: checking for $ac_word" >&5 |
|---|
| | 7116 | echo "configure:7117: checking for $ac_word" >&5 |
|---|
| 7135 | 7117 | if eval "test \"`echo '$''{'ac_cv_path_SDL11_CONFIG'+set}'`\" = set"; then |
|---|
| 7136 | 7118 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| … | … | |
| 7173 | 7155 | set dummy sdl-config; ac_word=$2 |
|---|
| 7174 | 7156 | echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 |
|---|
| 7175 | | echo "configure:7176: checking for $ac_word" >&5 |
|---|
| | 7157 | echo "configure:7158: checking for $ac_word" >&5 |
|---|
| 7176 | 7158 | if eval "test \"`echo '$''{'ac_cv_path_SDL_CONFIG'+set}'`\" = set"; then |
|---|
| 7177 | 7159 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| … | … | |
| 7219 | 7201 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 7220 | 7202 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 7221 | | echo "configure:7222: checking for $ac_hdr" >&5 |
|---|
| | 7203 | echo "configure:7204: checking for $ac_hdr" >&5 |
|---|
| 7222 | 7204 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 7223 | 7205 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 7224 | 7206 | else |
|---|
| 7225 | 7207 | cat > conftest.$ac_ext <<EOF |
|---|
| 7226 | | #line 7227 "configure" |
|---|
| | 7208 | #line 7209 "configure" |
|---|
| 7227 | 7209 | #include "confdefs.h" |
|---|
| 7228 | 7210 | #include <$ac_hdr> |
|---|
| 7229 | 7211 | EOF |
|---|
| 7230 | 7212 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 7231 | | { (eval echo configure:7232: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 7213 | { (eval echo configure:7214: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 7232 | 7214 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 7233 | 7215 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 7299 | 7281 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 7300 | 7282 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 7301 | | echo "configure:7302: checking for $ac_hdr" >&5 |
|---|
| | 7283 | echo "configure:7284: checking for $ac_hdr" >&5 |
|---|
| 7302 | 7284 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 7303 | 7285 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 7304 | 7286 | else |
|---|
| 7305 | 7287 | cat > conftest.$ac_ext <<EOF |
|---|
| 7306 | | #line 7307 "configure" |
|---|
| | 7288 | #line 7289 "configure" |
|---|
| 7307 | 7289 | #include "confdefs.h" |
|---|
| 7308 | 7290 | #include <$ac_hdr> |
|---|
| 7309 | 7291 | EOF |
|---|
| 7310 | 7292 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 7311 | | { (eval echo configure:7312: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 7293 | { (eval echo configure:7294: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 7312 | 7294 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 7313 | 7295 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 7338 | 7320 | else |
|---|
| 7339 | 7321 | echo $ac_n "checking for directX headers in ${withval}""... $ac_c" 1>&6 |
|---|
| 7340 | | echo "configure:7341: checking for directX headers in ${withval}" >&5 |
|---|
| | 7322 | echo "configure:7323: checking for directX headers in ${withval}" >&5 |
|---|
| 7341 | 7323 | if test -f ${withval}/ddraw.h |
|---|
| 7342 | 7324 | then |
|---|
| … | … | |
| 7365 | 7347 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 7366 | 7348 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 7367 | | echo "configure:7368: checking for $ac_hdr" >&5 |
|---|
| | 7349 | echo "configure:7350: checking for $ac_hdr" >&5 |
|---|
| 7368 | 7350 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 7369 | 7351 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 7370 | 7352 | else |
|---|
| 7371 | 7353 | cat > conftest.$ac_ext <<EOF |
|---|
| 7372 | | #line 7373 "configure" |
|---|
| | 7354 | #line 7355 "configure" |
|---|
| 7373 | 7355 | #include "confdefs.h" |
|---|
| 7374 | 7356 | #include <$ac_hdr> |
|---|
| 7375 | 7357 | EOF |
|---|
| 7376 | 7358 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 7377 | | { (eval echo configure:7378: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 7359 | { (eval echo configure:7360: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 7378 | 7360 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 7379 | 7361 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 7470 | 7452 | ac_safe=`echo "aalib.h" | sed 'y%./+-%__p_%'` |
|---|
| 7471 | 7453 | echo $ac_n "checking for aalib.h""... $ac_c" 1>&6 |
|---|
| 7472 | | echo "configure:7473: checking for aalib.h" >&5 |
|---|
| | 7454 | echo "configure:7455: checking for aalib.h" >&5 |
|---|
| 7473 | 7455 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 7474 | 7456 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 7475 | 7457 | else |
|---|
| 7476 | 7458 | cat > conftest.$ac_ext <<EOF |
|---|
| 7477 | | #line 7478 "configure" |
|---|
| | 7459 | #line 7460 "configure" |
|---|
| 7478 | 7460 | #include "confdefs.h" |
|---|
| 7479 | 7461 | #include <aalib.h> |
|---|
| 7480 | 7462 | EOF |
|---|
| 7481 | 7463 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 7482 | | { (eval echo configure:7483: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 7464 | { (eval echo configure:7465: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 7483 | 7465 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 7484 | 7466 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 7531 | 7513 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 7532 | 7514 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 7533 | | echo "configure:7534: checking for $ac_hdr" >&5 |
|---|
| | 7515 | echo "configure:7516: checking for $ac_hdr" >&5 |
|---|
| 7534 | 7516 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 7535 | 7517 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 7536 | 7518 | else |
|---|
| 7537 | 7519 | cat > conftest.$ac_ext <<EOF |
|---|
| 7538 | | #line 7539 "configure" |
|---|
| | 7520 | #line 7521 "configure" |
|---|
| 7539 | 7521 | #include "confdefs.h" |
|---|
| 7540 | 7522 | #include <$ac_hdr> |
|---|
| 7541 | 7523 | EOF |
|---|
| 7542 | 7524 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 7543 | | { (eval echo configure:7544: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 7525 | { (eval echo configure:7526: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 7544 | 7526 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 7545 | 7527 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 7564 | 7546 | PLUGINS="${PLUGINS} dsp" |
|---|
| 7565 | 7547 | echo $ac_n "checking for main in -lossaudio""... $ac_c" 1>&6 |
|---|
| 7566 | | echo "configure:7567: checking for main in -lossaudio" >&5 |
|---|
| | 7548 | echo "configure:7549: checking for main in -lossaudio" >&5 |
|---|
| 7567 | 7549 | ac_lib_var=`echo ossaudio'_'main | sed 'y%./+-%__p_%'` |
|---|
| 7568 | 7550 | if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then |
|---|
| … | … | |
| 7572 | 7554 | LIBS="-lossaudio $LIBS" |
|---|
| 7573 | 7555 | cat > conftest.$ac_ext <<EOF |
|---|
| 7574 | | #line 7575 "configure" |
|---|
| | 7556 | #line 7557 "configure" |
|---|
| 7575 | 7557 | #include "confdefs.h" |
|---|
| 7576 | 7558 | |
|---|
| … | … | |
| 7579 | 7561 | ; return 0; } |
|---|
| 7580 | 7562 | EOF |
|---|
| 7581 | | if { (eval echo configure:7582: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| | 7563 | if { (eval echo configure:7564: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| 7582 | 7564 | rm -rf conftest* |
|---|
| 7583 | 7565 | eval "ac_cv_lib_$ac_lib_var=yes" |
|---|
| … | … | |
| 7615 | 7597 | set dummy esd-config; ac_word=$2 |
|---|
| 7616 | 7598 | echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 |
|---|
| 7617 | | echo "configure:7618: checking for $ac_word" >&5 |
|---|
| | 7599 | echo "configure:7600: checking for $ac_word" >&5 |
|---|
| 7618 | 7600 | if eval "test \"`echo '$''{'ac_cv_path_ESD_CONFIG'+set}'`\" = set"; then |
|---|
| 7619 | 7601 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| … | … | |
| 7666 | 7648 | set dummy artsc-config; ac_word=$2 |
|---|
| 7667 | 7649 | echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 |
|---|
| 7668 | | echo "configure:7669: checking for $ac_word" >&5 |
|---|
| | 7650 | echo "configure:7651: checking for $ac_word" >&5 |
|---|
| 7669 | 7651 | if eval "test \"`echo '$''{'ac_cv_path_ARTS_CONFIG'+set}'`\" = set"; then |
|---|
| 7670 | 7652 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| … | … | |
| 7716 | 7698 | ac_safe=`echo "alsa/asoundlib.h" | sed 'y%./+-%__p_%'` |
|---|
| 7717 | 7699 | echo $ac_n "checking for alsa/asoundlib.h""... $ac_c" 1>&6 |
|---|
| 7718 | | echo "configure:7719: checking for alsa/asoundlib.h" >&5 |
|---|
| | 7700 | echo "configure:7701: checking for alsa/asoundlib.h" >&5 |
|---|
| 7719 | 7701 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 7720 | 7702 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 7721 | 7703 | else |
|---|
| 7722 | 7704 | cat > conftest.$ac_ext <<EOF |
|---|
| 7723 | | #line 7724 "configure" |
|---|
| | 7705 | #line 7706 "configure" |
|---|
| 7724 | 7706 | #include "confdefs.h" |
|---|
| 7725 | 7707 | #include <alsa/asoundlib.h> |
|---|
| 7726 | 7708 | EOF |
|---|
| 7727 | 7709 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 7728 | | { (eval echo configure:7729: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 7710 | { (eval echo configure:7711: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 7729 | 7711 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 7730 | 7712 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 7743 | 7725 | echo "$ac_t""yes" 1>&6 |
|---|
| 7744 | 7726 | echo $ac_n "checking for main in -lasound""... $ac_c" 1>&6 |
|---|
| 7745 | | echo "configure:7746: checking for main in -lasound" >&5 |
|---|
| | 7727 | echo "configure:7728: checking for main in -lasound" >&5 |
|---|
| 7746 | 7728 | ac_lib_var=`echo asound'_'main | sed 'y%./+-%__p_%'` |
|---|
| 7747 | 7729 | if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then |
|---|
| … | … | |
| 7751 | 7733 | LIBS="-lasound $LIBS" |
|---|
| 7752 | 7734 | cat > conftest.$ac_ext <<EOF |
|---|
| 7753 | | #line 7754 "configure" |
|---|
| | 7735 | #line 7736 "configure" |
|---|
| 7754 | 7736 | #include "confdefs.h" |
|---|
| 7755 | 7737 | |
|---|
| … | … | |
| 7758 | 7740 | ; return 0; } |
|---|
| 7759 | 7741 | EOF |
|---|
| 7760 | | if { (eval echo configure:7761: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| | 7742 | if { (eval echo configure:7743: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| 7761 | 7743 | rm -rf conftest* |
|---|
| 7762 | 7744 | eval "ac_cv_lib_$ac_lib_var=yes" |
|---|
| … | … | |
| 7835 | 7817 | set dummy gtk12-config; ac_word=$2 |
|---|
| 7836 | 7818 | echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 |
|---|
| 7837 | | echo "configure:7838: checking for $ac_word" >&5 |
|---|
| | 7819 | echo "configure:7820: checking for $ac_word" >&5 |
|---|
| 7838 | 7820 | if eval "test \"`echo '$''{'ac_cv_path_GTK12_CONFIG'+set}'`\" = set"; then |
|---|
| 7839 | 7821 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| … | … | |
| 7874 | 7856 | set dummy gtk-config; ac_word=$2 |
|---|
| 7875 | 7857 | echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 |
|---|
| 7876 | | echo "configure:7877: checking for $ac_word" >&5 |
|---|
| | 7858 | echo "configure:7859: checking for $ac_word" >&5 |
|---|
| 7877 | 7859 | if eval "test \"`echo '$''{'ac_cv_path_GTK_CONFIG'+set}'`\" = set"; then |
|---|
| 7878 | 7860 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| … | … | |
| 7924 | 7906 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 7925 | 7907 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 7926 | | echo "configure:7927: checking for $ac_hdr" >&5 |
|---|
| | 7908 | echo "configure:7909: checking for $ac_hdr" >&5 |
|---|
| 7927 | 7909 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 7928 | 7910 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 7929 | 7911 | else |
|---|
| 7930 | 7912 | cat > conftest.$ac_ext <<EOF |
|---|
| 7931 | | #line 7932 "configure" |
|---|
| | 7913 | #line 7914 "configure" |
|---|
| 7932 | 7914 | #include "confdefs.h" |
|---|
| 7933 | 7915 | #include <$ac_hdr> |
|---|
| 7934 | 7916 | EOF |
|---|
| 7935 | 7917 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 7936 | | { (eval echo configure:7937: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 7918 | { (eval echo configure:7919: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 7937 | 7919 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 7938 | 7920 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 7980 | 7962 | set dummy gnome-config; ac_word=$2 |
|---|
| 7981 | 7963 | echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 |
|---|
| 7982 | | echo "configure:7983: checking for $ac_word" >&5 |
|---|
| | 7964 | echo "configure:7965: checking for $ac_word" >&5 |
|---|
| 7983 | 7965 | if eval "test \"`echo '$''{'ac_cv_path_GNOME_CONFIG'+set}'`\" = set"; then |
|---|
| 7984 | 7966 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| … | … | |
| 8025 | 8007 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 8026 | 8008 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 8027 | | echo "configure:8028: checking for $ac_hdr" >&5 |
|---|
| | 8009 | echo "configure:8010: checking for $ac_hdr" >&5 |
|---|
| 8028 | 8010 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 8029 | 8011 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 8030 | 8012 | else |
|---|
| 8031 | 8013 | cat > conftest.$ac_ext <<EOF |
|---|
| 8032 | | #line 8033 "configure" |
|---|
| | 8014 | #line 8015 "configure" |
|---|
| 8033 | 8015 | #include "confdefs.h" |
|---|
| 8034 | 8016 | #include <$ac_hdr> |
|---|
| 8035 | 8017 | EOF |
|---|
| 8036 | 8018 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 8037 | | { (eval echo configure:8038: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 8019 | { (eval echo configure:8020: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 8038 | 8020 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 8039 | 8021 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 8125 | 8107 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 8126 | 8108 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 8127 | | echo "configure:8128: checking for $ac_hdr" >&5 |
|---|
| | 8109 | echo "configure:8110: checking for $ac_hdr" >&5 |
|---|
| 8128 | 8110 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 8129 | 8111 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 8130 | 8112 | else |
|---|
| 8131 | 8113 | cat > conftest.$ac_ext <<EOF |
|---|
| 8132 | | #line 8133 "configure" |
|---|
| | 8114 | #line 8115 "configure" |
|---|
| 8133 | 8115 | #include "confdefs.h" |
|---|
| 8134 | 8116 | #include <$ac_hdr> |
|---|
| 8135 | 8117 | EOF |
|---|
| 8136 | 8118 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 8137 | | { (eval echo configure:8138: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 8119 | { (eval echo configure:8120: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 8138 | 8120 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 8139 | 8121 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 8180 | 8162 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` |
|---|
| 8181 | 8163 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 |
|---|
| 8182 | | echo "configure:8183: checking for $ac_hdr" >&5 |
|---|
| | 8164 | echo "configure:8165: checking for $ac_hdr" >&5 |
|---|
| 8183 | 8165 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 8184 | 8166 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 8185 | 8167 | else |
|---|
| 8186 | 8168 | cat > conftest.$ac_ext <<EOF |
|---|
| 8187 | | #line 8188 "configure" |
|---|
| | 8169 | #line 8170 "configure" |
|---|
| 8188 | 8170 | #include "confdefs.h" |
|---|
| 8189 | 8171 | #include <$ac_hdr> |
|---|
| 8190 | 8172 | EOF |
|---|
| 8191 | 8173 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 8192 | | { (eval echo configure:8193: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 8174 | { (eval echo configure:8175: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 8193 | 8175 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 8194 | 8176 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 8251 | 8233 | ac_safe=`echo "lirc/lirc_client.h" | sed 'y%./+-%__p_%'` |
|---|
| 8252 | 8234 | echo $ac_n "checking for lirc/lirc_client.h""... $ac_c" 1>&6 |
|---|
| 8253 | | echo "configure:8254: checking for lirc/lirc_client.h" >&5 |
|---|
| | 8235 | echo "configure:8236: checking for lirc/lirc_client.h" >&5 |
|---|
| 8254 | 8236 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
|---|
| 8255 | 8237 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| 8256 | 8238 | else |
|---|
| 8257 | 8239 | cat > conftest.$ac_ext <<EOF |
|---|
| 8258 | | #line 8259 "configure" |
|---|
| | 8240 | #line 8241 "configure" |
|---|
| 8259 | 8241 | #include "confdefs.h" |
|---|
| 8260 | 8242 | #include <lirc/lirc_client.h> |
|---|
| 8261 | 8243 | EOF |
|---|
| 8262 | 8244 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" |
|---|
| 8263 | | { (eval echo configure:8264: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| | 8245 | { (eval echo configure:8246: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
|---|
| 8264 | 8246 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
|---|
| 8265 | 8247 | if test -z "$ac_err"; then |
|---|
| … | … | |
| 8278 | 8260 | echo "$ac_t""yes" 1>&6 |
|---|
| 8279 | 8261 | echo $ac_n "checking for lirc_init in -llirc_client""... $ac_c" 1>&6 |
|---|
| 8280 | | echo "configure:8281: checking for lirc_init in -llirc_client" >&5 |
|---|
| | 8262 | echo "configure:8263: checking for lirc_init in -llirc_client" >&5 |
|---|
| 8281 | 8263 | ac_lib_var=`echo lirc_client'_'lirc_init | sed 'y%./+-%__p_%'` |
|---|
| 8282 | 8264 | if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then |
|---|
| … | … | |
| 8286 | 8268 | LIBS="-llirc_client $LIBS" |
|---|
| 8287 | 8269 | cat > conftest.$ac_ext <<EOF |
|---|
| 8288 | | #line 8289 "configure" |
|---|
| | 8270 | #line 8271 "configure" |
|---|
| 8289 | 8271 | #include "confdefs.h" |
|---|
| 8290 | 8272 | /* Override any gcc2 internal prototype to avoid an error. */ |
|---|
| … | … | |
| 8297 | 8279 | ; return 0; } |
|---|
| 8298 | 8280 | EOF |
|---|
| 8299 | | if { (eval echo configure:8300: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| | 8281 | if { (eval echo configure:8282: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| 8300 | 8282 | rm -rf conftest* |
|---|
| 8301 | 8283 | eval "ac_cv_lib_$ac_lib_var=yes" |
|---|
| … | … | |
| 8354 | 8336 | *) |
|---|
| 8355 | 8337 | echo $ac_n "checking whether the byte order is big-endian""... $ac_c" 1>&6 |
|---|
| 8356 | | echo "configure:8357: checking whether the byte order is big-endian" >&5 |
|---|
| | 8338 | echo "configure:8339: checking whether the byte order is big-endian" >&5 |
|---|
| 8357 | 8339 | if eval "test \"`echo '$''{'ac_cv_c_bigendian'+set}'`\" = set"; then |
|---|
| 8358 | 8340 | echo $ac_n "(cached) $ac_c" 1>&6 |
|---|
| … | … | |
| 8439 | 8421 | if test x$enableval = xyes; then |
|---|
| 8440 | 8422 | echo $ac_n "checking for pth_init in -lpth""... $ac_c" 1>&6 |
|---|
| 8441 | | echo "configure:8442: checking for pth_init in -lpth" >&5 |
|---|
| | 8423 | echo "configure:8424: checking for pth_init in -lpth" >&5 |
|---|
| 8442 | 8424 | ac_lib_var=`echo pth'_'pth_init | sed 'y%./+-%__p_%'` |
|---|
| 8443 | 8425 | if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then |
|---|
| … | … | |
| 8447 | 8429 | LIBS="-lpth $LIBS" |
|---|
| 8448 | 8430 | cat > conftest.$ac_ext <<EOF |
|---|
| 8449 | | #line 8450 "configure" |
|---|
| | 8431 | #line 8432 "configure" |
|---|
| 8450 | 8432 | #include "confdefs.h" |
|---|
| 8451 | 8433 | /* Override any gcc2 internal prototype to avoid an error. */ |
|---|
| … | … | |
| 8458 | 8440 | ; return 0; } |
|---|
| 8459 | 8441 | EOF |
|---|
| 8460 | | if { (eval echo configure:8461: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| | 8442 | if { (eval echo configure:8443: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
|---|
| 8461 | 8443 | rm -rf conftest* |
|---|
| 8462 | 8444 | eval "ac_cv_lib_$ac_lib_var=yes" |
|---|
| … | … | |
| 8486 | 8468 | |
|---|
| 8487 | 8469 | cat > conftest.$ac_ext <<EOF |
|---|
| 8488 | | #line 8489 "configure" |
|---|
| | 8470 | #line 8471 "configure" |
|---|
| 8489 | 8471 | #include "confdefs.h" |
|---|
| 8490 | 8472 | #include <pth.h> |
|---|
| … | … | |
| 8512 | 8494 | if test x$enableval = xyes; then |
|---|
| 8513 | 8495 | echo $ac_n "checking for st_init in -lst""... $ac_c" 1>&6 |
|---|
| 8514 | | echo "configure:8515: checking for st_init in -lst" >&5 |
|---|
| | 8496 | echo "configure:8497: checking for st_init in -lst" >&5 |
|---|
| 8515 | 8497 | ac_lib_var=`echo st'_'st_init | sed 'y%./+-%__p_%'` |
|---|
| 8516 | 8498 | if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then |
|---|
| … | … | |
| 8520 | 8502 | LIBS="-lst $LIBS" |
|---|
| 8521 | 8503 | cat > conftest.$ac_ext <<EOF |
|---|
| 8522 | | #line 8523 "configure" |
|---|
| | 8504 | #line 8505 "configure" |
|---|
| 8523 | 8505 | #include "confdefs.h" |
|---|
| 8524 | 8506 | /* Override any gcc2 internal prototype to avoid an error. */ |
|---|
| … | … | |
| 8531 | 8513 | ; return 0; } |
|---|
| 8532 | 8514 | EOF |
|---|