# HG changeset patch # User diego # Date 1174844330 0 # Node ID 6279120e9465777db055e4223595c2b1ae509f65 # Parent 0e5a839bbef8353302cfca6ab70fed8930c9dd57 Fall back on plain awk during the awk test. It should be safe to assume that some sort of awk is installed on the system. diff -r 0e5a839bbef8 -r 6279120e9465 configure --- a/configure Sun Mar 25 14:50:02 2007 +0000 +++ b/configure Sun Mar 25 17:38:50 2007 +0000 @@ -2509,11 +2509,11 @@ fi # checking for a working awk, I'm using mawk first, because it's fastest - atmos -_awk= +_awk=awk if test "$_vidix_internal" = yes ; then _awk_verc_fail=yes echocheck "awk" -for _awk in mawk gawk nawk awk; do +for _awk in mawk gawk nawk; do if ( $_awk 'BEGIN{testme();}function testme(){print"";}' ) >> "$TMPLOG" 2>&1; then _awk_verc_fail=no break