comparison configure @ 5808:c746dada521c

disable vidix for non-x86 by default
author arpi
date Wed, 24 Apr 2002 02:02:50 +0000
parents d4bc84e7c0ad
children 737920323eb8
comparison
equal deleted inserted replaced
5807:d4bc84e7c0ad 5808:c746dada521c
137 --enable-mp1e enable libmp1e support 137 --enable-mp1e enable libmp1e support
138 (use this option if it does not compile) [disable] 138 (use this option if it does not compile) [disable]
139 --disable-libdv disable libdv 0.9.5 support [autodetect] 139 --disable-libdv disable libdv 0.9.5 support [autodetect]
140 --disable-streaming disable network streaming support 140 --disable-streaming disable network streaming support
141 (support for: http/mms/rtp) [enable] 141 (support for: http/mms/rtp) [enable]
142 --disable-vidix disable VIDIX stuff [enable] 142 --disable-vidix disable VIDIX stuff [enable on x86]
143 --disable-new-input disable new input system [enable] 143 --disable-new-input disable new input system [enable]
144 --enable-joystick enable joystick support in new input [disable] 144 --enable-joystick enable joystick support in new input [disable]
145 --enable-i18n GNU internationalisation [disable] 145 --enable-i18n GNU internationalisation [disable]
146 --disable-runtime-cpudetection disable runtime CPU detection [enable] 146 --disable-runtime-cpudetection disable runtime CPU detection [enable]
147 --disable-dvdnav Disable dvdnav support [autodetect] 147 --disable-dvdnav Disable dvdnav support [autodetect]
808 _select=yes 808 _select=yes
809 _tv=yes 809 _tv=yes
810 _tv_v4l=auto 810 _tv_v4l=auto
811 _tv_bsdbt848=auto 811 _tv_bsdbt848=auto
812 _streaming=yes 812 _streaming=yes
813 _vidix=yes 813 _vidix=auto
814 _new_input=yes 814 _new_input=yes
815 _joystick=no 815 _joystick=no
816 _xvid=auto 816 _xvid=auto
817 _divx4linux=auto 817 _divx4linux=auto
818 _opendivx=no 818 _opendivx=no
1165 else 1165 else
1166 echores "$kernel_version, ok" 1166 echores "$kernel_version, ok"
1167 fi 1167 fi
1168 fi 1168 fi
1169 1169
1170 if test "$_vidix" = auto ; then
1171 _vidix=no
1172 # should check for x86 systems supporting vidix (does cygwin or qnx have vidix?)
1173 x86 && _vidix=yes
1174 fi
1175
1170 # checking for a working awk, I'm using mawk first, because it's fastest - atmos 1176 # checking for a working awk, I'm using mawk first, because it's fastest - atmos
1171 _awk= 1177 _awk=
1172 if test "$_vidix" = yes ; then 1178 if test "$_vidix" = yes ; then
1173 _awk_verc_fail=yes 1179 _awk_verc_fail=yes
1174 echocheck "awk" 1180 echocheck "awk"
1183 if test "$_awk_verc_fail" = yes; then 1189 if test "$_awk_verc_fail" = yes; then
1184 echo "VIDIX needs Awk, but there was no working implementation found!" 1190 echo "VIDIX needs Awk, but there was no working implementation found!"
1185 echo "Try the GNU implementation, which can be downloaded from:" 1191 echo "Try the GNU implementation, which can be downloaded from:"
1186 echo "ftp://ftp.gnu.org/gnu/gawk/" 1192 echo "ftp://ftp.gnu.org/gnu/gawk/"
1187 echo "If you don't need vidix, you can use configure --disable-vidix instead." 1193 echo "If you don't need vidix, you can use configure --disable-vidix instead."
1188 exit 1194 die "no awk"
1189 fi 1195 fi
1190 fi 1196 fi
1191 1197
1192 1198
1193 ###################### 1199 ######################