[Mplayer-cvslog] CVS: main configure,1.372,1.373
Atmosfear
atmos4 at mplayer.dev.hu
Tue Jan 15 23:30:59 CET 2002
Update of /cvsroot/mplayer/main
In directory mplayer:/var/tmp.root/cvs-serv22287
Modified Files:
configure
Log Message:
nicer awk check (logging) etc.
Index: configure
===================================================================
RCS file: /cvsroot/mplayer/main/configure,v
retrieving revision 1.372
retrieving revision 1.373
diff -u -r1.372 -r1.373
--- configure 15 Jan 2002 17:03:18 -0000 1.372
+++ configure 15 Jan 2002 22:30:56 -0000 1.373
@@ -1010,16 +1010,17 @@
# checking for a working awk, I'm using mawk first, because it's fastest - atmos
_awk=
if test "$_vidix" = yes ; then
-_awk_works=no
+_awk_verc_fail=yes
+echocheck "awk"
for _awk in mawk gawk nawk awk; do
- if echo 'BEGIN{testme();}function testme(){print"test";}'|$_awk -f/dev/stdin 2>&1 >/dev/null; then
- _awk_works=yes
+ if ( echo 'BEGIN{testme();}function testme(){print"";}'|$_awk -f/dev/stdin ) >> "$TMPLOG" 2>&1; then
+ _awk_verc_fail=no
break
fi
done
-test "$_awk_works" = no && _awk=no
-echo Checking for awk ... $_awk
-if test "$_awk_works" = no; then
+test "$_awk_verc_fail" = yes && _awk=no
+echores "$_awk"
+if test "$_awk_verc_fail" = yes; then
echo "VIDIX needs Awk, but there was no working implementation found!"
echo "Try the GNU implementation, which can be downloaded from:"
echo "ftp://ftp.gnu.org/gnu/gawk/"
More information about the MPlayer-cvslog
mailing list