[Mplayer-cvslog] CVS: main configure,1.370,1.371
Atmosfear
atmos4 at mplayer.dev.hu
Tue Jan 15 15:49:38 CET 2002
Update of /cvsroot/mplayer/main
In directory mplayer:/var/tmp.root/cvs-serv11414
Modified Files:
configure
Log Message:
*awk detection
Index: configure
===================================================================
RCS file: /cvsroot/mplayer/main/configure,v
retrieving revision 1.370
retrieving revision 1.371
diff -u -r1.370 -r1.371
--- configure 15 Jan 2002 12:35:16 -0000 1.370
+++ configure 15 Jan 2002 14:49:35 -0000 1.371
@@ -1007,26 +1007,23 @@
fi
fi
-#checking for gawk
+# checking for a working awk, I'm using mawk first, because it's fastest - atmos
+_awk=
if test "$_vidix" = yes ; then
-_gawk_ver=`echo '' | awk -W version 2>&1 | sed -n 's/^.*wk \([^A-Za-z ]*[0-9.]*\).*$/\1/p'`
- case $_gawk_ver in
- '')
- _gawk_ver="v. ?.??, bad"
- _gawk_verc_fail=yes
- ;;
- *)
- _gawk_ver="$_gawk_ver, ok"
- ;;
- esac
-echo Checking for awk ... $_gawk_ver
-if test "$_gawk_verc_fail" ; then
-echo "Awk was not found or has wrong version."
-echo "If you have no such one, then the GNU implementation can be downloaded from:"
+_awk_works=no
+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
+ break
+ fi
+done
+test "$_awk_works" = no && _awk=no
+echo Checking for awk ... $_awk
+if test "$_awk_works" = no; 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/"
-echo "Also check - maybe you already have gawk, mawk or nawk."
-echo "If test is successful then make awk symlink. Example: ln -sf gawk awk"
-echo "Or rerun configure with --disable-vidix option."
+echo "If you don't need vidix, you can use configure --disable-vidix instead."
exit
fi
fi
@@ -2774,6 +2771,7 @@
CONFDIR = $_confdir
AR = ar
CC = $_cc
+AWK = $_awk
# OPTFLAGS = -O4 $_profile $_debug $_march $_mcpu -pipe -fomit-frame-pointer -ffast-math
OPTFLAGS = $CFLAGS
EXTRA_INC = $_inc_extra $_inc_gtk
More information about the MPlayer-cvslog
mailing list